/* =============================================
   Digiport FleetOps Landing Page
   Design System + All Styles
   ============================================= */

/* ===========================================
   1. DESIGN TOKENS (CSS Variables)
   =========================================== */
:root {
  /* --- Brand Colors --- */
  --gold: #FFB500;
  --gold-light: #FFC940;
  --gold-dark: #E0A000;
  --dark-grey: #2E3A46;
  --orange: #F0671D;
  --orange-light: #FF8A4C;

  /* --- Extended Palette --- */
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --grey-100: #F1F5F9;
  --grey-200: #E2E8F0;
  --grey-300: #CBD5E1;
  --grey-400: #94A3B8;
  --grey-500: #64748B;
  --grey-600: #475569;
  --deep-navy: #101E33;
  --dark-blue: #132238;
  --dark-blue-light: #1A2E4C;

  /* --- Product Color --- */
  --indigo: #4F6AF5;
  --indigo-light: #7B8FF7;
  --indigo-dark: #3B50D4;

  /* --- Semantic --- */
  --green: #10B981;
  --red: #EF4444;
  --amber: #F59E0B;

  /* --- Text --- */
  --text-white: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dark: #1E293B;
  --text-body: #334155;
  --text-grey: #64748B;

  /* --- Typography (Be Vietnam Pro: Chuẩn font tiếng Việt, không lỗi dấu) --- */
  --font-heading: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* --- Font Sizes --- */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */

  /* --- Spacing --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* --- Border Radius --- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 8px 32px rgba(255, 181, 0, 0.25);
  --shadow-indigo: 0 8px 32px rgba(79, 106, 245, 0.25);

  /* --- Transitions --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;

  /* --- Z-index --- */
  --z-navbar: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
  --z-back-to-top: 800;

  /* --- Container --- */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}


/* ===========================================
   2. CSS RESET + BASE
   =========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}


/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: normal;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: normal;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h4 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h5 {
  font-size: var(--text-lg);
  font-weight: 600;
}

h6 {
  font-size: var(--text-base);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

.text-sm {
  font-size: var(--text-sm);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-muted {
  color: var(--text-grey);
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--text-white);
}

/* Tagline / eyebrow text */
.tagline {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* Price display */
.price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 1.1;
}

.price-unit {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-grey);
}


/* ===========================================
   4. LAYOUT
   =========================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section--dark {
  background: linear-gradient(180deg, #101E33 0%, #152742 100%);
  color: var(--text-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--text-white);
}

.section--dark p,
.section--dark li {
  color: var(--grey-400);
}

.section--dark-blue {
  background: linear-gradient(180deg, #101E33 0%, #152742 100%);
  color: var(--text-white);
}

.section--dark-blue h1,
.section--dark-blue h2,
.section--dark-blue h3,
.section--dark-blue h4,
.section--dark-blue h5,
.section--dark-blue h6 {
  color: var(--text-white);
}

.section--dark-blue p,
.section--dark-blue li {
  color: var(--grey-400);
}

.section--light {
  background-color: var(--white);
}

.section--off-white {
  background-color: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
}

.section-header .tagline {
  margin-bottom: var(--space-4);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-6);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--text-grey);
}

.section--dark .section-header p,
.section--dark-blue .section-header p {
  color: var(--grey-400);
}

/* Grid system */
.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Flex */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }


/* ===========================================
   5. COMPONENTS
   =========================================== */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--deep-navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 181, 0, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 181, 0, 0.05);
}

/* Light variant for light backgrounds */
.btn-secondary--light {
  color: var(--text-dark);
  border-color: var(--grey-300);
}

.btn-secondary--light:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(255, 181, 0, 0.05);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-lg);
}

/* --- Cards (High Contrast, Solid, Premium SaaS Look) --- */
.card {
  background: #FFFFFF;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: 0 4px 20px rgba(15, 25, 35, 0.07), 0 1px 3px rgba(15, 25, 35, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--indigo-light);
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.12);
  transform: translateY(-4px);
}

.glass-card {
  background: #182332;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.glass-card:hover {
  background: #1F2D40;
  border-color: rgba(255, 181, 0, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

/* --- Browser Mockup Frame (macOS-style) --- */
.browser-frame {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.browser-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 181, 0, 0.3);
}

.browser-frame__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-frame__dots {
  display: flex;
  gap: 6px;
}

.browser-frame__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.browser-frame__dot--red { background: #EF4444; }
.browser-frame__dot--yellow { background: #F59E0B; }
.browser-frame__dot--green { background: #10B981; }

.browser-frame__address {
  flex: 1;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 12px;
  color: #CBD5E1;
  font-family: var(--font-body);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-frame__address::before {
  content: '🔒';
  font-size: 10px;
}

.browser-frame__body img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Smartphone Mockup Frame --- */
.phone-mockup {
  background: #0B111A;
  border: 10px solid #1E293B;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out);
}

.phone-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 181, 0, 0.4);
}

.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #1E293B;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Multi-Phone Grid --- */
.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.phone-grid--5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.phone-item {
  text-align: center;
}

.phone-item__mockup {
  max-width: 290px;
  margin: 0 auto var(--space-6);
}

.phone-grid--5 .phone-item__mockup {
  max-width: 215px;
  margin: 0 auto var(--space-4);
}

.phone-grid--5 .phone-mockup {
  border-width: 7px;
  border-radius: 30px;
}

.phone-grid--5 .phone-mockup__notch {
  width: 65px;
  height: 14px;
}

.phone-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--text-white);
}

.phone-item p {
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--grey-400);
}

/* --- Dual Phone Wrapper for Section 04 --- */
.dual-phone-wrapper {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  align-items: flex-start;
  margin-top: var(--space-4);
}

.dual-phone-item {
  flex: 1;
  max-width: 240px;
  text-align: center;
}

.dual-phone-item .phone-mockup {
  border-width: 8px;
  border-radius: 32px;
  margin-bottom: var(--space-3);
}

.dual-phone-item .phone-mockup__notch {
  width: 75px;
  height: 16px;
}

.dual-phone-item__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255, 181, 0, 0.12);
  border: 1px solid rgba(255, 181, 0, 0.25);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: var(--space-2);
}

.dual-phone-item__caption {
  font-size: 12px;
  color: var(--grey-300);
  line-height: 1.4;
}

/* --- Report Showcase in Section 04 --- */
.report-showcase {
  margin-top: var(--space-12);
  background: #182332;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.report-showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.report-showcase__info h4 {
  font-size: var(--text-2xl);
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.report-showcase__info p {
  color: var(--grey-300);
  font-size: var(--text-base);
  margin: 0;
}

/* --- Dispatch Grid (2 columns for Shipment List & Readiness) --- */
.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.dispatch-card {
  display: flex;
  flex-direction: column;
}

.dispatch-card__caption {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}

.dispatch-card__caption h5 {
  font-size: var(--text-base);
  color: var(--text-dark);
  margin-bottom: var(--space-1);
}

.dispatch-card__caption p {
  font-size: var(--text-sm);
  color: var(--text-grey);
  margin: 0;
}

.section--dark-blue .dispatch-card__caption,
.section--dark .dispatch-card__caption {
  background: #18283E;
  border-color: rgba(255, 255, 255, 0.14);
}

.section--dark-blue .dispatch-card__caption h5,
.section--dark .dispatch-card__caption h5 {
  color: var(--text-white);
}

.section--dark-blue .dispatch-card__caption p,
.section--dark .dispatch-card__caption p {
  color: var(--grey-400);
}

/* --- Legal & Compliance 3-Grid --- */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.legal-card {
  display: flex;
  flex-direction: column;
}

.legal-card__caption {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}

.legal-card__caption h5 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.legal-card__caption p {
  font-size: 12px;
  color: var(--text-grey);
  margin: 0;
  line-height: 1.4;
}

/* --- Showcase Split --- */
.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-10);
}

.showcase-split--reverse {
  direction: rtl;
}

.showcase-split--reverse > * {
  direction: ltr;
}

.showcase-split__content h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.showcase-split__content p {
  font-size: var(--text-base);
  color: var(--text-body);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.section--dark .showcase-split__content p,
.section--dark-blue .showcase-split__content p {
  color: var(--grey-300);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* --- Icon container --- */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 181, 0, 0.1), rgba(240, 103, 29, 0.1));
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.section--dark .icon-box,
.section--dark-blue .icon-box {
  background: linear-gradient(135deg, rgba(255, 181, 0, 0.12), rgba(240, 103, 29, 0.08));
}

/* --- Divider --- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--grey-200);
  margin: var(--space-8) 0;
}

.section--dark .divider {
  background: rgba(255, 255, 255, 0.08);
}

/* --- Disclaimer text --- */
.disclaimer {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-grey);
  margin-top: var(--space-6);
}

.section--dark .disclaimer {
  color: var(--grey-500);
}

.text-center {
  text-align: center;
}


/* ===========================================
   6. NAVBAR
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-navbar);
  padding: var(--space-4) 0;
  background: transparent;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(15, 25, 35, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: var(--space-3) 0;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-box {
  background: #FFFFFF;
  padding: 4px;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform var(--duration-fast) var(--ease-out);
  flex-shrink: 0;
}

.navbar__logo:hover .navbar__logo-box {
  transform: scale(1.04);
}

.navbar__logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.navbar__sub {
  font-size: 11px;
  color: #CBD5E1;
  letter-spacing: 0.03em;
  font-weight: 500;
  white-space: nowrap;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-300);
  position: relative;
  padding: var(--space-2) 0;
  white-space: nowrap;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar__link:hover {
  color: var(--text-white);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  /* Visible on desktop */
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ===========================================
   7. HERO
   =========================================== */
.hero {
  padding-top: calc(var(--space-24) + 80px);
  padding-bottom: var(--space-16);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 181, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: var(--text-5xl);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}

.hero__desc {
  font-size: var(--text-lg);
  color: var(--grey-300);
  margin-bottom: var(--space-4);
  max-width: 560px;
}

.hero__sub {
  font-size: var(--text-base);
  color: var(--grey-500);
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* --- Hero Visual & Multi-Device Showcase --- */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__mockup-wrapper {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.hero__phone-float {
  position: absolute;
  right: -20px;
  bottom: -25px;
  width: 170px;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65));
  animation: floatPhone 6s ease-in-out infinite alternate;
}

.hero__phone-float .phone-mockup {
  border-width: 6px;
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.hero__phone-float .phone-mockup__notch {
  width: 50px;
  height: 12px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

@keyframes floatPhone {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}


/* ===========================================
   8. PAIN POINTS
   =========================================== */
.pain-card {
  text-align: center;
}

.pain-card .icon-box {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
  margin: 0 auto var(--space-6);
}

.pain-card h4 {
  margin-bottom: var(--space-3);
}


/* ===========================================
   9. AI OCR — Feature Split
   =========================================== */
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: center;
}

.feature-split__content h2 {
  margin-bottom: var(--space-6);
}

.feature-list {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 181, 0, 0.1);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h5 {
  margin-bottom: var(--space-1);
  color: var(--text-white);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--grey-400);
  margin-bottom: 0;
}

.feature-phone-mockup {
  background: var(--dark-blue);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  max-width: 380px;
  margin: 0 auto;
}

.feature-phone-mockup img {
  border-radius: var(--radius-lg);
  width: 100%;
}


/* ===========================================
   10. TRACKING CARDS
   =========================================== */
.tracking-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.tracking-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.tracking-card h4 {
  margin-bottom: var(--space-3);
}


/* ===========================================
   11. TWO SOURCES
   =========================================== */
.two-sources__card {
  text-align: center;
  padding: var(--space-10);
}

.two-sources__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-6);
}

.two-sources__card h3 {
  margin-bottom: var(--space-4);
}


/* ===========================================
   12. FINANCE
   =========================================== */
.finance-grid {
  grid-template-columns: repeat(3, 1fr);
}

.finance-card .icon-box {
  margin-bottom: var(--space-4);
}

.finance-card h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

/* Make last 2 cards span properly when 5 items in 3-col grid */
.finance-grid .finance-card:nth-child(4) {
  grid-column: 1 / 2;
}

.finance-grid .finance-card:nth-child(5) {
  grid-column: 2 / 3;
}


/* ===========================================
   13. OPERATIONS
   =========================================== */
.ops-card h4 {
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

.ops-card p {
  font-size: var(--text-sm);
}


/* ===========================================
   14. WORKFLOW
   =========================================== */
.workflow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.workflow__step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-4);
}

.workflow__number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
}

.workflow__step h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
}

.workflow__step p {
  font-size: var(--text-sm);
  color: var(--text-grey);
}

.workflow__connector {
  width: 60px;
  height: 2px;
  background: var(--grey-300);
  margin-top: 24px;
  flex-shrink: 0;
}


/* ===========================================
   15. VALUES
   =========================================== */
.values-card {
  text-align: center;
  padding: var(--space-6);
}

.values-card__icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
}

.values-card h5 {
  margin-bottom: var(--space-3);
}

.values-card p {
  font-size: var(--text-sm);
}

.ecosystem {
  margin-top: var(--space-20);
  padding-top: var(--space-14);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ecosystem__link {
  display: inline-block;
  margin-top: var(--space-3);
  color: var(--indigo-light);
  font-weight: 500;
  font-size: var(--text-sm);
}

.ecosystem__link:hover {
  color: var(--gold);
}


/* ===========================================
   16. PRICING
   =========================================== */
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  position: relative;
  overflow: visible !important;
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.05);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #0F1923;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(240, 103, 29, 0.35);
  white-space: nowrap;
  z-index: 5;
  letter-spacing: 0.02em;
}

.pricing-card__header {
  margin-bottom: var(--space-4);
}

.pricing-card__header h4 {
  margin-bottom: var(--space-3);
}

.pricing-card__desc {
  font-size: var(--text-sm);
  color: var(--text-grey);
  margin-bottom: var(--space-6);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-card__features li {
  font-size: var(--text-sm);
  color: var(--text-body);
  padding-left: var(--space-6);
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-notes {
  margin-top: var(--space-16);
  padding: var(--space-8);
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.pricing-notes h5 {
  margin-bottom: var(--space-4);
}

.pricing-notes ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-notes li {
  font-size: var(--text-sm);
  color: var(--text-grey);
  padding-left: var(--space-6);
  position: relative;
}

.pricing-notes li::before {
  content: '•';
  position: absolute;
  left: var(--space-2);
  color: var(--grey-400);
}

.section--dark-blue .pricing-card,
.section--dark .pricing-card {
  background: #18283E;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text-white);
}

.section--dark-blue .pricing-card:hover,
.section--dark .pricing-card:hover {
  background: #1E314B;
  border-color: rgba(255, 181, 0, 0.4);
}

.section--dark-blue .pricing-card .price,
.section--dark .pricing-card .price,
.section--dark-blue .pricing-card h4,
.section--dark .pricing-card h4 {
  color: var(--text-white);
}

.section--dark-blue .pricing-card__desc,
.section--dark .pricing-card__desc {
  color: var(--grey-400);
}

.section--dark-blue .pricing-card__features li,
.section--dark .pricing-card__features li {
  color: var(--grey-300);
}

.section--dark-blue .pricing-card--featured,
.section--dark .pricing-card--featured {
  background: #1D3352;
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(255, 181, 0, 0.25);
}

.section--dark-blue .pricing-card--featured:hover,
.section--dark .pricing-card--featured:hover {
  background: #233C60;
}

.section--dark-blue .pricing-notes,
.section--dark .pricing-notes {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section--dark-blue .pricing-notes h5,
.section--dark .pricing-notes h5 {
  color: var(--text-white);
}

.section--dark-blue .pricing-notes li,
.section--dark .pricing-notes li {
  color: var(--grey-300);
}


/* ===========================================
   17. FAQ
   =========================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--grey-200);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--text-dark);
  transition: color var(--duration-normal) var(--ease-out);
}

.faq-item__question:hover {
  color: var(--gold-dark);
}

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--grey-400);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out), padding var(--duration-slow) var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-6);
}

.faq-item__answer p {
  color: var(--text-grey);
  font-size: var(--text-base);
  line-height: 1.7;
}


/* ===========================================
   18. CONTACT
   =========================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: flex-start;
}

.contact-split__info h2 {
  margin-bottom: var(--space-6);
}

.contact-process {
  margin: var(--space-10) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-process__step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.contact-process__num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 181, 0, 0.15);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.contact-process__step span {
  color: var(--grey-300);
  font-size: var(--text-base);
}

.contact-email {
  margin-bottom: var(--space-4);
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.contact-email span {
  color: var(--grey-400);
  font-size: var(--text-sm);
}

.contact-email a {
  color: var(--gold);
  font-weight: 500;
}

.contact-email a:hover {
  color: var(--gold-light);
}

.contact-split__form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--grey-300);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: var(--text-base);
  transition: all var(--duration-normal) var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-600);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 181, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 181, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--grey-300);
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.checkbox-label:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}


/* ===========================================
   19. FOOTER
   =========================================== */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-16);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--grey-500);
  margin-top: var(--space-2);
}

.footer__col h6 {
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col a {
  font-size: var(--text-sm);
  color: var(--grey-400);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-6) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-sm);
  color: var(--grey-600);
}


/* ===========================================
   20. BACK TO TOP
   =========================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep-navy);
  box-shadow: var(--shadow-gold);
  z-index: var(--z-back-to-top);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 181, 0, 0.35);
}


/* ===========================================
   21. RESPONSIVE
   =========================================== */

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }

  .hero__desc,
  .hero__sub {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__mockup-wrapper {
    max-width: 580px;
    margin: 0 auto;
  }

  .hero__phone-float {
    width: 145px;
    right: -10px;
    bottom: -15px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .feature-split__visual {
    order: -1;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .workflow {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
  }

  .workflow__connector {
    width: 2px;
    height: 32px;
    margin-top: 0;
  }

  .workflow__step {
    padding: var(--space-4);
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-2px);
  }
}

/* --- Status Pills --- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.status-pill--green {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pill--amber {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-pill--red {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-pill--blue {
  background: rgba(79, 106, 245, 0.15);
  color: #7B8FF7;
  border: 1px solid rgba(79, 106, 245, 0.3);
}

/* --- Dual Browser Showcase Stack --- */
.browser-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* --- Feature Highlight Cards --- */
.feature-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 4px 16px rgba(15, 25, 35, 0.05);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-box:hover {
  border-color: var(--indigo-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 25, 35, 0.1);
}

.section--dark .feature-box,
.section--dark-blue .feature-box {
  background: #182332;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section--dark .feature-box:hover,
.section--dark-blue .feature-box:hover {
  background: #1F2D40;
  border-color: var(--gold);
}

.feature-box__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(79, 106, 245, 0.1);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.section--dark .feature-box__icon,
.section--dark-blue .feature-box__icon {
  background: rgba(255, 181, 0, 0.15);
  color: var(--gold);
}

.feature-box__body h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
  font-weight: 700;
}

.feature-box__body p {
  font-size: var(--text-sm);
  color: var(--text-grey);
  line-height: 1.5;
  margin-bottom: 0;
}

.section--dark .feature-box__body p,
.section--dark-blue .feature-box__body p {
  color: var(--grey-400);
}

/* --- Metric Strip --- */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.metric-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
}

.metric-pill__label {
  font-size: var(--text-xs);
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.metric-pill__val {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
}

/* --- Compliance Tag --- */
.compliance-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 106, 245, 0.1);
  border: 1px solid rgba(79, 106, 245, 0.25);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo-light);
  margin-bottom: var(--space-4);
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .showcase-split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .phone-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .hero__phone-float {
    display: none;
  }

  .section {
    padding: var(--space-16) 0;
  }

  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  .price {
    font-size: var(--text-3xl);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .finance-grid {
    grid-template-columns: 1fr;
  }

  .finance-grid .finance-card:nth-child(4),
  .finance-grid .finance-card:nth-child(5) {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--space-16) + 80px);
  }

  .hero__title br {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .two-sources__card {
    padding: var(--space-6);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .section-header {
    margin-bottom: var(--space-10);
  }

  .phone-grid--5 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .dispatch-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .dual-phone-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .dual-phone-item {
    max-width: 260px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__badges {
    flex-direction: column;
    align-items: center;
  }

  .checkbox-group {
    flex-direction: column;
  }

  .phone-grid--5 {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

/* ===========================================
   FAQ ON DARK-BLUE SECTION
   =========================================== */
.section--dark-blue .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section--dark-blue .faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.section--dark-blue .faq-item__question {
  color: #FFFFFF;
}
.section--dark-blue .faq-item__question:hover {
  color: var(--gold);
}
.section--dark-blue .faq-item__chevron {
  color: var(--grey-400);
}
.section--dark-blue .faq-item__answer p {
  color: var(--grey-300);
}

/* ===========================================
   CONTACT ON LIGHT SECTION
   =========================================== */
.section--light .contact-split__info h2 {
  color: var(--text-dark);
}
.section--light .contact-split__info p {
  color: var(--text-grey);
}
.section--light .contact-process__step span {
  color: var(--text-dark);
  font-weight: 500;
}
.section--light .contact-process__num {
  background: rgba(255, 181, 0, 0.15);
  color: var(--gold-dark);
}
.section--light .contact-email span {
  color: var(--text-muted);
}
.section--light .contact-email a {
  color: var(--gold-dark);
  font-weight: 600;
}
.section--light .contact-email a:hover {
  color: var(--gold);
}
.section--light .contact-split__form {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.section--light .form-group label {
  color: var(--text-dark);
}
.section--light .form-group input,
.section--light .form-group textarea {
  background: #F8FAFC;
  border: 1px solid var(--grey-300);
  color: var(--text-dark);
}
.section--light .form-group input::placeholder,
.section--light .form-group textarea::placeholder {
  color: var(--grey-400);
}
.section--light .form-group input:focus,
.section--light .form-group textarea:focus {
  background: #FFFFFF;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 181, 0, 0.15);
}
.section--light .checkbox-label {
  background: #F8FAFC;
  border: 1px solid var(--grey-300);
  color: var(--text-dark);
}
.section--light .checkbox-label:hover {
  border-color: var(--gold);
  background: #FFFDF5;
}


/* Language selection and responsive navigation */
.navbar .container { max-width: 1600px; gap: 24px; }
.navbar__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; position: relative; }
.language-picker { display: flex; align-items: center; gap: 6px; color: var(--text-white); }
.language-picker svg { flex-shrink: 0; }
.language-select {
  font: inherit;
  font-size: 14px;
  color: #FFFFFF;
  background: #172438;
  border: 1px solid #64748B;
  border-radius: 8px;
  min-height: 44px;
  width: 112px;
  padding: 8px;
  cursor: pointer;
  color-scheme: dark;
}
.language-select:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.language-select option { background: #172438; color: #FFFFFF; }
html[lang="zh-CN"] {
  --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', system-ui, sans-serif;
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', system-ui, sans-serif;
}
@media (max-width: 1440px) {
  /* Navbar mobile */
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--deep-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(80px + var(--space-8)) var(--space-8) var(--space-8);
    gap: var(--space-6);
    transition: right var(--duration-slow) var(--ease-out);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

}
@media (max-width: 480px) {
  .navbar .container { padding-left: 16px; padding-right: 16px; gap: 8px; }
  .navbar__actions { gap: 8px; }
  .navbar__logo { gap: 8px; }
  .navbar__brand { font-size: 16px; }
  .navbar__sub, .language-picker svg { display: none; }
  .language-select { width: 104px; }
}
html[lang="zh-CN"] .hero__title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.3;
  text-wrap: balance;
}
