/* Coded by Azryno Web Design Agency. Do not edit, remove, download, or repurpose without permission. */
/* ==========================================================================
   Midcity Marketing — Modern Minimal Blue Theme
   ========================================================================== */

:root {
  --color-primary: #0b3d7a;
  --color-primary-light: #1565c0;
  --color-primary-dark: #062a54;
  --color-accent: #2196f3;
  --color-accent-light: #64b5f6;
  --color-bg: #f7f9fc;
  --color-bg-alt: #eef2f7;
  --color-surface: #ffffff;
  --color-white: #ffffff;
  --color-text: #1a2b3c;
  --color-text-muted: #5c6f82;
  --color-border: rgba(11, 61, 122, 0.08);
  --color-border-strong: rgba(11, 61, 122, 0.15);

  --font-display: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --container-max: 1140px;
  --hero-front-scale: 1.125;
  --header-height: 76px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(11, 61, 122, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 61, 122, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 61, 122, 0.12);
  --transition: 0.2s ease;
}

/* Reset & Base */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

/* Typography */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; }

p + p { margin-top: var(--space-sm); }

/* Layout */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section { padding-block: var(--space-xl); }

.section--dark {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.9);
}

.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-white); }

.section--alt { background-color: var(--color-bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-top: var(--space-sm);
}

.section--dark .section-header p { color: rgba(255, 255, 255, 0.65); }

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

/* Skip Link */

.skip-link {
  position: absolute; top: -100%; left: var(--space-sm); z-index: 1000;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent); color: var(--color-white);
  font-weight: 600; border-radius: var(--radius-sm);
}
.skip-link:focus { top: var(--space-sm); }

/* Header */

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height);
}

.site-logo { display: flex; align-items: center; }

.site-logo img { height: 44px; width: auto; }

/* Navigation */

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; z-index: 110;
}

.nav-toggle__bar {
  display: block; width: 22px; height: 2px;
  background: var(--color-primary);
  position: relative; transition: background var(--transition);
}

.nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--color-primary);
  transition: transform var(--transition), top var(--transition);
}

.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { top: 0; transform: rotate(-45deg); }

.site-nav {
  position: fixed; inset: 0;
  background: var(--color-primary-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 105;
}

.site-nav.is-open { transform: translateX(0); }

.site-nav a {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-xs) var(--space-sm);
  transition: color var(--transition);
}

.site-nav a:hover, .site-nav a.is-active { color: var(--color-accent-light); }
.site-nav a:focus-visible { outline: 2px solid var(--color-accent-light); outline-offset: 4px; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .site-nav {
    position: static; flex-direction: row;
    background: none; transform: none; gap: 2rem;
  }

  .site-nav a {
    font-family: var(--font-body);
    font-size: 0.875rem; font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
  }

  .site-nav a::after {
    content: ""; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
  }

  .site-nav a:hover, .site-nav a.is-active { color: var(--color-primary); }
  .site-nav a:hover::after, .site-nav a.is-active::after { width: 100%; }
}

/* Hero */

.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  color: var(--color-white); overflow: hidden;
}

.hero--short { min-height: 52vh; }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(6, 42, 84, 0.92) 0%,
    rgba(11, 61, 122, 0.75) 50%,
    rgba(21, 101, 192, 0.55) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 680px; padding-block: var(--space-2xl);
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-sm);
}

.hero h1 { color: var(--color-white); margin-bottom: var(--space-md); }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* Buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0.7rem 1.5rem;
  font-size: 0.875rem; font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
}

.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--dark:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
}

/* Stats Bar */

.stats-bar {
  background: var(--color-primary);
  padding-block: var(--space-lg);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1.1;
}

.stat-item__label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-xs);
}

@media (min-width: 768px) {
  .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Intro */

.intro-grid {
  display: grid; gap: var(--space-lg); align-items: center;
}

@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

.intro-grid__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro-grid__image img {
  width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 4 / 3;
}

.intro-grid__text p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* Values */

.values-list {
  display: grid; gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .values-list { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-sm); }

.value-card__icon {
  width: 40px; height: 40px;
  margin-inline: auto; margin-bottom: var(--space-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(33, 150, 243, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 1rem;
}

.values-section .section-header h2 {
  color: #fff;
}

.values-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.values-list--vision {
  margin-top: 0;
}

/* Dark section: keep card text readable on light surfaces */
.section--dark .value-card h4 {
  color: var(--color-text);
}

.section--dark .value-card p {
  color: var(--color-text-muted);
}

.section--dark .value-card__icon {
  background: rgba(33, 150, 243, 0.1);
  color: var(--color-accent);
}

/* Product Cards */

.product-grid { display: grid; gap: var(--space-md); }

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .product-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-card__image { aspect-ratio: 16 / 10; overflow: hidden; }

.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img { transform: scale(1.04); }

.product-card__body { padding: var(--space-md); }
.product-card__body h3 { margin-bottom: var(--space-xs); }

.product-card__body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.product-badges { display: flex; flex-wrap: wrap; gap: 0.375rem; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(33, 150, 243, 0.08);
  color: var(--color-primary);
  border-radius: 100px;
}

.badge--accent {
  background: rgba(33, 150, 243, 0.12);
  color: var(--color-primary-light);
}

/* Product Detail */

.product-detail {
  display: grid; gap: var(--space-lg); align-items: center;
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.product-detail:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .product-detail { grid-template-columns: 1fr 1.2fr; gap: var(--space-xl); }
  .product-detail--reverse .product-detail__image { order: 2; }
  .product-detail--reverse .product-detail__content { order: 1; }
}

.product-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-detail__image img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}

.product-detail__content h3 { margin-bottom: var(--space-sm); }

.product-detail__content p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* CTA Band */

.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding-block: var(--space-xl);
  text-align: center;
}

.cta-band h2 { color: var(--color-white); margin-bottom: var(--space-sm); }

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

/* Leadership */

.leadership-grid { display: grid; gap: var(--space-md); }

@media (min-width: 768px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

.leader-card {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
}

.leader-card__initials {
  width: 64px; height: 64px;
  margin-inline: auto; margin-bottom: var(--space-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  color: var(--color-accent-light);
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  border-radius: 50%;
}

.leader-card h4 { margin-bottom: 0.25rem; }

.leader-card__role {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.leader-card p { font-size: 0.9375rem; color: var(--color-text-muted); }

/* Contact */

.contact-grid { display: grid; gap: var(--space-lg); }

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.contact-info__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

@media (min-width: 900px) {
  .contact-grid--form {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-md); }

.contact-info__item { display: flex; gap: var(--space-sm); align-items: flex-start; }

.contact-info__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  color: var(--color-accent-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.contact-info__item h4 { margin-bottom: 0.25rem; }

.contact-info__item p, .contact-info__item a {
  font-size: 0.9375rem; color: var(--color-text-muted);
}

.contact-info__item a:hover { color: var(--color-accent); }

.contact-form {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: var(--space-md); }

.form-group label {
  display: block;
  font-size: 0.8125rem; font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.form-group label .required { color: #e53935; }

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.12);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid { border-color: #e53935; }

.form-row {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c6f82' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.12);
}

.form-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: var(--space-md) 0 var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.form-section-title:first-child { margin-top: 0; }

.checkbox-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .checkbox-grid { grid-template-columns: repeat(3, 1fr); }
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.375rem 0;
}

.checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--color-primary);
  cursor: pointer;
}

.contact-form__header { margin-bottom: var(--space-md); }
.contact-form__header h3 { margin-bottom: 0.375rem; }
.contact-form__header p { font-size: 0.875rem; color: var(--color-text-muted); }

.form-hint {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.form-hint a { color: var(--color-accent); }
.form-hint a:hover { text-decoration: underline; }

.form-error {
  font-size: 0.8125rem; color: #e53935;
  margin-top: 0.25rem; display: none;
}

.form-error.is-visible { display: block; }

.form-success {
  padding: var(--space-sm);
  background: rgba(33, 150, 243, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  display: none;
}

.form-success.is-visible { display: block; }

.map-embed {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe { width: 100%; height: 320px; border: 0; }

@media (min-width: 768px) {
  .map-embed iframe { height: 400px; }
}

/* Footer — see improved footer section below */

/* Animations — see reveal section below */

/* Page Header */

.page-header {
  background: var(--color-primary);
  padding-block: var(--space-xl);
  text-align: center;
}

.page-header h1 { color: var(--color-white); }

.page-header p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-inline: auto;
  margin-top: var(--space-sm);
}

/* Utilities */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ==========================================================================
   Liquid Glass + Full-Screen Video Hero (Home)
   ========================================================================== */

.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  animation: hero-bg-zoom 10s ease-out forwards;
  will-change: transform;
}

@keyframes hero-bg-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video__bg {
    animation: none;
    transform: none;
  }

  .hero-video__front-img {
    animation: none;
    transform: translateY(0) scale(var(--hero-front-scale));
  }
}

.hero-video__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6, 26, 54, 0.85) 0%,
    rgba(6, 26, 54, 0.35) 45%,
    rgba(6, 26, 54, 0.2) 100%
  );
  pointer-events: none;
}

.hero-video__front {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-video__front-img {
  display: block;
  width: min(100vw, 1280px);
  max-height: 98vh;
  height: auto;
  object-fit: contain;
  object-position: top center;
  transform-origin: top center;
  transform: translateY(-100%) scale(var(--hero-front-scale));
  animation:
    hero-front-drop 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    hero-front-cycle 11s ease-in-out 2.5s infinite;
  will-change: transform;
}

@keyframes hero-front-drop {
  from { transform: translateY(-100%) scale(var(--hero-front-scale)); }
  to { transform: translateY(0) scale(var(--hero-front-scale)); }
}

@keyframes hero-front-cycle {
  0%,
  45.45% {
    transform: translateY(0) scale(var(--hero-front-scale));
  }

  72.73% {
    transform: translateY(-100%) scale(var(--hero-front-scale));
  }

  100% {
    transform: translateY(0) scale(var(--hero-front-scale));
  }
}

@media (max-width: 767px) {
  :root {
    --hero-front-scale: 1.32;
  }

  .hero-video__front-img {
    width: min(100vw, 1280px);
    max-height: 100vh;
  }

  .hero-video__content {
    padding: 0 1rem 1.75rem;
  }

  .hero-video__content h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .hero-video__desc {
    font-size: 0.9375rem;
    max-width: 28rem;
  }
}

@media (min-width: 768px) {
  .hero-video__front-img {
    width: min(94vw, 1380px);
    max-height: 100vh;
  }
}

/* Navbar — unified glass nav (all pages) */

#nav-mount { position: relative; z-index: 202; }

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 202;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 0.875rem 1.25rem;
  background: rgba(6, 26, 54, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 640px) {
  .glass-nav { padding: 1rem 2rem; }
}

.glass-nav__logo {
  grid-column: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.glass-nav__links {
  grid-column: 2;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  flex-wrap: nowrap;
  overflow: visible;
}

@media (min-width: 768px) {
  .glass-nav__links { display: flex; }
}

.glass-nav__toggle {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .glass-nav__toggle { display: none; }
}

@media (max-width: 767px) {
  .glass-nav {
    grid-template-columns: 1fr auto;
  }

  .glass-nav__links { display: none !important; }
}

.glass-nav.is-scrolled {
  background: rgba(6, 26, 54, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
  .glass-nav.is-scrolled { padding-top: 0.75rem; padding-bottom: 0.75rem; }
}

.glass-nav__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.glass-nav__link {
  position: relative;
  z-index: 1;
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 1024px) {
  .glass-nav__link {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}

.glass-nav__link:hover { color: #fff; }

.glass-nav__link.is-active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.glass-nav__dropdown {
  position: relative;
}

.glass-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.glass-nav__dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.glass-nav__dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.glass-nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 11rem;
  max-height: 70vh;
  overflow-y: auto;
  padding: 0.375rem;
  border-radius: 0.75rem;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  background: rgba(6, 26, 54, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-nav__dropdown-label {
  padding: 0.35rem 0.75rem 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.glass-nav__dropdown-divider {
  height: 1px;
  margin: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
}

.glass-nav__dropdown-link--viewall {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.glass-nav__dropdown-panel[hidden] {
  display: none;
}

.glass-nav__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.glass-nav__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.glass-nav__dropdown-link.is-active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .glass-nav__link {
    padding: 0.375rem 0.5rem;
    font-size: 0.8125rem;
  }
}

.glass-nav__toggle .icon-close { display: none; }
.glass-nav__toggle[aria-expanded="true"] .icon-menu { display: none; }
.glass-nav__toggle[aria-expanded="true"] .icon-close { display: block; }

.glass-mobile-menu__group {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

.glass-mobile-menu__group summary {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  list-style: none;
}

.glass-mobile-menu__group summary::-webkit-details-marker { display: none; }

.glass-mobile-menu__group-body {
  padding: 0 0.5rem 0.5rem;
}

.glass-mobile-menu__group-body .glass-mobile-menu__link {
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Legacy aliases */
.hero-navbar, .hero-navbar__logo, .hero-navbar__pill, .hero-navbar__link,
.hero-navbar__ctas, .hero-navbar__toggle { /* mapped via glass-nav */ }

.glass-mobile-menu,
.hero-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 201;
  border-radius: 0;
  padding: 5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: none;
  overflow: hidden;
  background: rgba(6, 26, 54, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-mobile-menu nav,
.hero-mobile-menu nav {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.glass-mobile-menu[hidden],
.hero-mobile-menu[hidden] { display: none; }

@media (min-width: 768px) {
  .glass-mobile-menu, .hero-mobile-menu { display: none !important; }
}

.glass-mobile-menu__link,
.hero-mobile-menu__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.glass-mobile-menu__link:hover,
.hero-mobile-menu__link:hover { color: #fff; }

.glass-mobile-menu__link.is-active,
.hero-mobile-menu__link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.glass-mobile-menu__link--sub {
  padding-left: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
}

.glass-mobile-menu__ctas,
.hero-mobile-menu__ctas {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero buttons */

.page-hero--compact { min-height: 42vh; }

.hero-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.hero-btn--glass {
  padding: 0.625rem 1rem;
  color: #fff;
}

.hero-btn--glass:hover { background: rgba(255, 255, 255, 0.05); }

.hero-btn--solid {
  padding: 0.625rem 1rem;
  background: #fff;
  color: #0a1a2e;
}

.hero-btn--solid:hover { background: rgba(255, 255, 255, 0.9); }

.hero-btn--lg {
  font-size: clamp(0.875rem, 2vw, 1rem);
  padding: 0.75rem 1.75rem;
}

@media (min-width: 640px) {
  .hero-btn--lg { padding: 0.75rem 1.75rem; }
}

.hero-btn--block { flex: 1; text-align: center; }

/* Mobile menu — see glass-mobile-menu above */

/* Hero content — bottom-left */

.hero-video__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  max-width: 42rem;
  padding: 0 1.5rem 2.5rem;
}

@media (min-width: 640px) {
  .hero-video__content { padding: 0 3rem 4rem; }
}

.hero-video__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.hero-video__content h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-video__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.hero-video__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.page-home .site-header { display: none; }

/* ==========================================================================
   Page Hero (inner pages)
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 26, 54, 0.9) 0%, rgba(6, 26, 54, 0.4) 60%, rgba(6, 26, 54, 0.25) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 7rem 1.5rem 3rem;
}

@media (min-width: 640px) {
  .page-hero__content { padding: 8rem 2rem 4rem; }
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 0.75rem;
}

.page-hero__content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.page-hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 32rem;
  line-height: 1.6;
}

/* ==========================================================================
   Values Bento Section
   ========================================================================== */

.values-section {
  position: relative;
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.values-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.values-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 26, 54, 0.94) 0%, rgba(11, 61, 122, 0.88) 100%);
}

.values-section .container {
  position: relative;
  z-index: 1;
}

.values-bento {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .values-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }
}

.values-bento__head {
  color: #fff;
}

@media (min-width: 768px) {
  .values-bento__head { grid-column: 1 / 6; grid-row: 1 / 3; align-self: center; }
}

.values-bento__head h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.values-bento__head p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.value-tile {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .value-tile:nth-child(2) { grid-column: 6 / 9; }
  .value-tile:nth-child(3) { grid-column: 9 / 13; }
  .value-tile:nth-child(4) { grid-column: 6 / 10; }
  .value-tile:nth-child(5) { grid-column: 10 / 13; }
}

.value-tile__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 150, 243, 0.2);
  color: var(--color-accent-light);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.value-tile h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value-tile p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ==========================================================================
   Bento Product Grid
   ========================================================================== */

.bento-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }

  .bento-grid .product-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.product-card--horizontal {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-card--horizontal {
    flex-direction: row;
  }

  .product-card--horizontal .product-card__image {
    flex: 0 0 45%;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

/* ==========================================================================
   Split Section (asymmetric layout)
   ========================================================================== */

.split-section {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
  }

  .split-section--reverse .split-section__visual { order: 2; }
  .split-section--reverse .split-section__copy { order: 1; }
}

.split-section__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-section__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-section__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ==========================================================================
   Stats with icons
   ========================================================================== */

.stats-bar--enhanced {
  position: relative;
  overflow: hidden;
}

.stats-bar--enhanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/intro-network.webp") center / cover no-repeat;
  opacity: 0.15;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-item__icon {
  width: 36px;
  height: 36px;
  margin-inline: auto;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
  opacity: 0.8;
}

/* ==========================================================================
   Section with background
   ========================================================================== */

.section--bg {
  position: relative;
  overflow: hidden;
}

.section--bg .section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}

.section--bg .container { position: relative; z-index: 1; }

/* ==========================================================================
   Reveal Animations
   ========================================================================== */

.reveal, .reveal-left, .reveal-right, .reveal-scale, .fade-in {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.94); }

.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible,
.reveal-scale.is-visible, .fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Improved Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.6);
  padding-block: 0;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-exports.webp") center / cover no-repeat;
  opacity: 0.08;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-top {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 1.2fr 2fr;
    gap: var(--space-2xl);
  }
}

.footer-brand__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: var(--space-sm);
}

.footer-brand__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
  background: rgba(33, 150, 243, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-links-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--color-accent-light); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--color-accent-light);
  opacity: 0.8;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-credit {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.5;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .footer-credit { text-align: right; }
}

.footer-credit a {
  color: var(--color-accent-light);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-credit a:hover { color: #fff; }

/* ==========================================================================
   Product Showcase — equal catalog grid
   ========================================================================== */

.product-showcase {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .product-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .product-showcase { grid-template-columns: repeat(3, 1fr); }
}

.product-showcase__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-showcase__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-showcase__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-showcase__card:hover .product-showcase__img img {
  transform: scale(1.06);
}

.product-showcase__num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 61, 122, 0.85);
  color: var(--color-accent-light);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.product-showcase__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-showcase__body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.product-showcase__body p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.75rem;
}

/* ── New page components ── */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--color-primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: 0.45; }

.specs-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

.spec-card {
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.spec-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.spec-card p { margin: 0; font-size: 0.9375rem; }

.process-flow {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process-flow { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  position: relative;
  padding: 1.5rem 1.25rem;
  text-align: center;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
}

.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item__body {
  padding: 0 1.25rem 1.125rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.partner-benefits {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .partner-benefits { grid-template-columns: repeat(3, 1fr); }
}

.partner-card { padding: 1.75rem; height: 100%; }
.partner-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }

.partner-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.onboarding-steps {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.onboarding-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.onboarding-step__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 50%;
}

.markets-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
}

.market-card { padding: 1.5rem; height: 100%; }
.market-card h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; }

.market-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.careers-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
}

.career-card {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.career-card h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; }
.career-card .badge { margin-bottom: 0.75rem; }

.career-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.compliance-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
}

.compliance-card { padding: 1.75rem; height: 100%; }
.compliance-card svg { color: var(--color-primary); margin-bottom: 1rem; }
.compliance-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }

.compliance-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.glass-mobile-menu__section {
  padding: 0.5rem 0 0.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.product-detail__actions { margin-top: 1rem; }

.product-detail__actions a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.product-detail__actions a:hover { text-decoration: underline; }

/* ==========================================================================
   Site loader
   Coded by Azryno Web Design Agency — do not remove without permission
   ========================================================================== */

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(160deg, #062a54 0%, #0b3d7a 50%, #1565c0 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__logo {
  width: min(200px, 55vw);
  height: auto;
  animation: loader-pulse 1.6s ease-in-out infinite;
}

.site-loader__bar {
  width: min(160px, 40vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.site-loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: var(--color-accent-light);
  animation: loader-slide 1.2s ease-in-out infinite;
}

.site-loader__text {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* ==========================================================================
   Mobile performance — smaller rendered images
   ========================================================================== */

@media (max-width: 767px) {
  .page-hero {
    min-height: 48vh;
  }

  .page-hero--compact {
    min-height: 34vh;
  }

  .page-hero__content {
    padding: 6.5rem 1.25rem 2.25rem;
  }

  .page-hero__content h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .intro-grid__image {
    max-height: 220px;
  }

  .intro-grid__image img {
    aspect-ratio: 16 / 10;
  }

  .product-showcase__img {
    height: 150px;
  }

  .product-detail__image img,
  .product-detail article img {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
  }

  .stats-bar__grid {
    gap: 1rem;
  }

  .section {
    padding-block: var(--space-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader__logo,
  .site-loader__bar span {
    animation: none;
  }
}



