/* ================================================================
   china.eccargo.ae — Design System & Component Styles
   EC Cargo × China → UAE Logistics Landing Page
   ================================================================ */

/* ----------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  /* EC Cargo Brand Colors */
  --ec-red: #C41E3A;
  --ec-red-dark: #9E1830;
  --ec-red-light: #E8354F;
  --ec-red-glow: rgba(196, 30, 58, 0.12);

  /* Restrained Gold Accents */
  --gold: #C5A255;
  --gold-light: #D4B76A;
  --gold-dark: #A68A3E;
  --gold-glow: rgba(197, 162, 85, 0.12);

  /* Premium Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --light-gray: #EFECE6;
  --mid-gray: #C5BDB2;
  --text-dark: #1A1817;
  --text-gray: #66605B;
  --charcoal: #171724;
  --charcoal-light: #252538;
  --dark-bg: #0E0E18;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;

  /* Fluid Font Sizes */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.3vw, 0.95rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --text-md: clamp(1.05rem, 0.95rem + 0.5vw, 1.2rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.35rem, 1.2rem + 0.75vw, 1.65rem);
  --text-2xl: clamp(1.65rem, 1.35rem + 1.5vw, 2.25rem);
  --text-3xl: clamp(2rem, 1.6rem + 2vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.8rem + 2.5vw, 3.5rem);
  --text-5xl: clamp(2.75rem, 2.2rem + 3.5vw, 4.5rem);
  --text-6xl: clamp(3.25rem, 2.5rem + 5vw, 5.5rem);

  /* Fluid Spacing */
  --space-xs: clamp(0.2rem, 0.15rem + 0.15vw, 0.4rem);
  --space-sm: clamp(0.35rem, 0.3rem + 0.3vw, 0.55rem);
  --space-md: clamp(0.55rem, 0.45rem + 0.45vw, 0.85rem);
  --space-lg: clamp(0.75rem, 0.6rem + 0.6vw, 1.2rem);
  --space-xl: clamp(1.1rem, 0.9rem + 0.9vw, 1.7rem);
  --space-2xl: clamp(1.4rem, 1.1rem + 1.2vw, 2.2rem);
  --space-3xl: clamp(1.8rem, 1.4rem + 1.6vw, 3.0rem);
  --space-4xl: clamp(2.2rem, 1.8rem + 2vw, 3.8rem);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(26, 24, 23, 0.04);
  --shadow-md: 0 6px 18px rgba(26, 24, 23, 0.06);
  --shadow-lg: 0 16px 36px rgba(26, 24, 23, 0.08);
  --shadow-xl: 0 24px 64px rgba(26, 24, 23, 0.12);
  --shadow-red: 0 8px 30px rgba(196, 30, 58, 0.16);
  --shadow-gold: 0 8px 30px rgba(197, 162, 85, 0.12);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 300ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);

  /* Z-index layers */
  --z-base: 1;
  --z-sticky: 100;
  --z-dropdown: 200;
  --z-overlay: 500;
  --z-whatsapp: 900;
  --z-modal: 1000;

  /* Layout Widths */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 72px;
}

/* ----------------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ----------------------------------------------------------------
   2. UTILITY CLASSES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.container--wide {
  max-width: var(--container-wide);
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-spacing-top { margin-top: var(--space-xl); }
.section-spacing-top-lg { margin-top: var(--space-2xl); }
.section-spacing-bottom { margin-bottom: var(--space-md); }
.secondary-text { color: var(--text-gray); }

/* SVG Icons Styles */
.svg-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
  transition: transform var(--transition-base), stroke var(--transition-fast);
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY & PACING
   ---------------------------------------------------------------- */
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ec-red);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--ec-red);
  flex-shrink: 0;
}

.section-label--center {
  justify-content: center;
}

.section-label--gold {
  color: var(--gold);
}
.section-label--gold::before {
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.section-title--white {
  color: var(--white);
}

.section-title em {
  color: var(--ec-red);
  font-style: normal;
}

.section-title .gold {
  color: var(--gold);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--text-gray);
  max-width: 680px;
  line-height: 1.6;
}

.section-subtitle--center {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--ec-red);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--ec-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background: var(--ec-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.25);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--mid-gray);
}

.btn--secondary:hover {
  border-color: var(--ec-red);
  color: var(--ec-red);
  background: rgba(196, 30, 58, 0.02);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--ec-red);
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

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

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: var(--text-xs);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   5. HEADER & MOBILE NAVIGATION
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-sticky);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header--transparent {
  background: transparent;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}


.header__logo img {
  height: 34px;
  width: auto;
  transition: filter var(--transition-base), transform var(--transition-fast);
}

.header__logo:hover img {
  transform: scale(1.03);
}

.header--transparent .header__logo img {
  filter: brightness(0) invert(1);
}

.header--scrolled .header__logo img {
  filter: none;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.header__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.header--scrolled .header__nav-link {
  color: var(--text-dark);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ec-red);
  transition: width var(--transition-base);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__nav-link:hover {
  color: var(--white);
}

.header--scrolled .header__nav-link:hover {
  color: var(--ec-red);
}

.header__cta {
  display: none;
}

/* Hamburger menu button */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  z-index: calc(var(--z-sticky) + 10);
  background: none;
  border: none;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition-base), opacity var(--transition-base);
  border-radius: 2px;
}

.header--scrolled .header__hamburger span {
  background: var(--text-dark);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay & Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: var(--z-overlay);
  transition: right var(--transition-base);
  padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(26,24,23,0.08);
  display: flex;
  flex-direction: column;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,14,24,0.4);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav__overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__link {
  display: block;
  padding: 1rem 0;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--ec-red);
}

.mobile-nav__cta {
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-nav__cta .btn {
  width: 100%;
}

@media (min-width: 1024px) {
  .header__nav { display: block; }
  .header__cta { display: block; }
  .header__hamburger { display: none; }
}

/* ----------------------------------------------------------------
   6. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 70vh;
  min-height: 70dvh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(23, 23, 36, 0.45) 0%, rgba(14, 14, 24, 0.6) 100%), url('images/1.webp') no-repeat center center / cover;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 15% 45%, var(--ec-red) 0%, transparent 60%),
    radial-gradient(circle at 85% 25%, var(--gold) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--space-xl) clamp(1rem, 3vw, 2.5rem);
}

.hero__content {
  z-index: 2;
  text-align: left;
  margin-right: auto;
  margin-left: 0;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(19, 19, 30, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: var(--radius-full);
  color: var(--ec-red-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ec-red-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero__h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ec-red-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--space-sm);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  justify-content: flex-start;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 600px;
  justify-content: flex-start;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.hero__trust-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(19, 19, 30, 0.8);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold-light);
}

.hero__trust-icon svg {
  width: 14px;
  height: 14px;
}

/* ----------------------------------------------------------------
   7. CHALLENGE & PROBLEM SECTION
   ---------------------------------------------------------------- */
.buying-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.buying-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.buying__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.buying__concerns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.buying__concern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,24,23,0.03);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.buying__concern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.buying__concern-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ec-red-glow);
  color: var(--ec-red);
}

.buying__concern-icon svg {
  width: 12px;
  height: 12px;
}

.buying__concern-text {
  font-size: var(--text-sm);
  font-weight: 500;
}

.buying__solution {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(23, 23, 36, 0.92) 0%, rgba(14, 14, 24, 0.82) 100%), url('images/2.webp') no-repeat center center / cover;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--ec-red);
  box-shadow: var(--shadow-lg);
  position: relative;
  color: var(--white);
}

.buying__solution p {
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.85);
}

.buying__solution strong {
  color: var(--white);
}

@media (min-width: 580px) {
  .buying__concerns { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .buying__grid { grid-template-columns: 1.1fr 0.9fr; }
  .buying__solution { margin-top: var(--space-xl); }
}

/* ----------------------------------------------------------------
   8. JOURNEY TIMELINE
   ---------------------------------------------------------------- */
.journey-section {
  background: var(--white);
}

.journey__timeline {
  position: relative;
  margin: var(--space-lg) auto;
  max-width: 1000px;
}

/* Vertical timeline mobile */
.journey__step-line {
  position: absolute;
  left: 17px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: var(--light-gray);
  z-index: 1;
}

.journey__step-line-fill {
  width: 100%;
  height: 0;
  background: var(--ec-red);
  transition: height var(--transition-slow);
}

.journey__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.journey__step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0.35;
  transition: opacity var(--transition-slow);
}

.journey__step.active {
  opacity: 1;
}

.journey__step-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  border: 3px solid var(--white);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.journey__step.active .journey__step-marker {
  background: var(--ec-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.journey__step-content {
  background: var(--off-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,24,23,0.03);
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: all var(--transition-base);
}

.journey__step.active .journey__step-content {
  background: var(--white);
  border-color: var(--ec-red-glow);
  box-shadow: var(--shadow-md);
}

.journey__step-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Journey details panel styling */
.journey__details-container {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  background: var(--off-white);
  border: 1px solid rgba(26, 24, 23, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.journey__details-container.switching {
  opacity: 0.15;
  transform: translateY(4px);
}

.journey__details-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .journey__details-card {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.journey__details-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journey__step-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ec-red-light);
  letter-spacing: 0.05em;
  background: rgba(196, 30, 58, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.journey__details-left h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.journey__details-left p {
  font-size: var(--text-base);
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.journey__checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
  width: 100%;
}

.journey__checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  color: var(--charcoal);
  font-weight: 500;
}

.journey__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.journey__details-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey__graphic-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(26,24,23,0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.journey__graphic-wrapper svg {
  width: 90px;
  height: 90px;
  display: block;
}

/* Animations for step graphics */
@keyframes spin-gear {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.jg-spin-gear {
  transform-origin: center;
  animation: spin-gear 6s linear infinite;
}

@keyframes truck-move {
  0% { transform: translateX(-15px); }
  50% { transform: translateX(10px); }
  100% { transform: translateX(-15px); }
}
.jg-truck-move {
  animation: truck-move 3s ease-in-out infinite;
}

@keyframes stamp-scale {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}
.jg-stamp-scale {
  transform-origin: center;
  animation: stamp-scale 2s ease-in-out infinite;
}

@keyframes plane-fly {
  0% { transform: translate(-10px, 10px); }
  50% { transform: translate(10px, -10px); }
  100% { transform: translate(-10px, 10px); }
}
.jg-plane-fly {
  animation: plane-fly 4s ease-in-out infinite;
}

@keyframes ship-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-1.5deg); }
}
.jg-ship-float {
  transform-origin: center;
  animation: ship-float 3.5s ease-in-out infinite;
}

@keyframes crane-lower {
  0%, 100% { transform: translateY(-5px); }
  50% { transform: translateY(8px); }
}
.jg-crane-lower {
  animation: crane-lower 3s ease-in-out infinite;
}

@keyframes shield-pulse {
  0%, 100% { transform: scale(0.95); fill: rgba(196, 30, 58, 0.05); }
  50% { transform: scale(1.05); fill: rgba(196, 30, 58, 0.15); }
}
.jg-shield-pulse {
  transform-origin: center;
  animation: shield-pulse 2s ease-in-out infinite;
}

/* Controls */
.journey__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(26,24,23,0.06);
  padding-top: var(--space-md);
}

.journey__ctrl-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(26,24,23,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.journey__ctrl-btn:hover {
  background: var(--ec-red);
  color: var(--white);
  border-color: var(--ec-red);
  transform: translateY(-2px);
}

.journey__ctrl-btn svg {
  width: 16px;
  height: 16px;
}

.journey__ctrl-btn--play {
  width: 44px;
  height: 44px;
}

.journey__tagline {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.journey__tagline h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--gold-light);
}

.journey__tagline p {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
}

@media (min-width: 1024px) {
  .journey__step-line {
    left: 0;
    right: 0;
    top: 17px;
    width: 100%;
    height: 2px;
    bottom: auto;
  }
  .journey__step-line-fill {
    height: 100%;
    width: 0;
    transition: width var(--transition-slow);
  }
  .journey__steps {
    flex-direction: row;
    gap: 0;
  }
  .journey__step {
    flex: 1;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .journey__step-content {
    padding: 0.85rem;
  }
}

/* ----------------------------------------------------------------
   9. SERVICES SECTION (Priority Styling & FCL/LCL Comparison)
   ---------------------------------------------------------------- */
.services-section {
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,24,23,0.04);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--mid-gray);
  transition: background var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  background: var(--ec-red);
}

/* Priority Service Cards Elevation */
.service-card--priority {
  border-color: var(--ec-red-glow);
  box-shadow: var(--shadow-md);
}

.service-card--priority::after {
  background: var(--ec-red);
  height: 4px;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--light-gray);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--ec-red-glow);
  color: var(--ec-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
}

.service-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.service-card__subtitle {
  font-size: var(--text-sm);
  color: var(--text-gray);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

/* FCL vs LCL nested comparison block inside Sea Freight */
.service-card__tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  background: var(--off-white);
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.service-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card__list {
  margin-bottom: var(--space-lg);
}

.service-card__list li {
  font-size: var(--text-xs);
  color: var(--text-gray);
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ec-red);
  flex-shrink: 0;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

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

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .services__grid .service-card:nth-child(6) { grid-column: span 1; }
}

/* ----------------------------------------------------------------
   10. WHY EC CARGO
   ---------------------------------------------------------------- */
.why-section {
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.why-card {
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,24,23,0.03);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--ec-red-glow);
}

.why-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--ec-red-glow);
  color: var(--ec-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.why-card__icon svg {
  width: 16px;
  height: 16px;
}

.why-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--text-gray);
  line-height: 1.5;
}

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

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

/* ----------------------------------------------------------------
   11. ONE-PARTNER COMPARISON
   ---------------------------------------------------------------- */
.comparison-section {
  background: var(--off-white);
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.comparison__card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.comparison__card--without {
  background: var(--white);
  border: 1px solid rgba(26,24,23,0.05);
  box-shadow: var(--shadow-sm);
}

.comparison__card--with {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(197, 162, 85, 0.1);
}

.comparison__card-title {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison__card--with .comparison__card-title {
  color: var(--gold);
}

.comparison__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-md);
}

.comparison__flow-item {
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.comparison__card--without .comparison__flow-item {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  margin-bottom: 3px;
}

.comparison__card--with .comparison__flow-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 3px;
}

.comparison__flow-arrow {
  text-align: center;
  color: var(--text-gray);
  font-size: var(--text-sm);
  line-height: 1;
  padding: 0.15rem 0;
}

.comparison__card--with .comparison__flow-arrow {
  color: var(--gold);
}

.comparison__card--with .comparison__flow-item--highlight {
  background: var(--ec-red);
  border-color: var(--ec-red);
  font-size: var(--text-base);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-red);
}

.comparison__label {
  font-size: var(--text-xs);
  color: var(--text-gray);
  font-style: italic;
}

.comparison__card--with .comparison__label {
  color: rgba(255,255,255,0.5);
}

.comparison__result {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.comparison__result h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
}

.comparison__result span {
  color: var(--gold);
}

@media (min-width: 768px) {
  .comparison__grid { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------------
   12. CHINA LOCATIONS SECTION
   ---------------------------------------------------------------- */
.locations-section {
  background: var(--white);
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.location-card {
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,24,23,0.03);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ec-red-glow);
}

.location-card__pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ec-red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-red);
  margin-bottom: var(--space-sm);
}

.location-card__pin svg {
  width: 14px;
  height: 14px;
}

.location-card__name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.location-card__desc {
  font-size: var(--text-sm);
  color: var(--text-gray);
  line-height: 1.5;
}

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

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

/* ----------------------------------------------------------------
   13. WHO WE HELP SECTION
   ---------------------------------------------------------------- */
.who-section {
  background: var(--off-white);
}

.who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.who-card {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,24,23,0.04);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.who-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ec-red-glow);
}

.who-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--ec-red-glow);
  color: var(--ec-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.who-card__icon svg {
  width: 18px;
  height: 18px;
}

.who-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.who-card__desc {
  font-size: var(--text-sm);
  color: var(--text-gray);
  line-height: 1.5;
}

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

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

/* ----------------------------------------------------------------
   14. CARGO TYPES SECTION
   ---------------------------------------------------------------- */
.cargo-section {
  background: var(--white);
}

.cargo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.cargo-card {
  padding: var(--space-md);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,24,23,0.03);
  text-align: center;
  transition: all var(--transition-base);
}

.cargo-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ec-red-glow);
}

.cargo-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-red);
  margin-bottom: var(--space-xs);
}

.cargo-card__icon svg {
  width: 20px;
  height: 20px;
}

.cargo-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
}

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

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

/* ----------------------------------------------------------------
   15. HOW IT WORKS (PROCESS) SECTION
   ---------------------------------------------------------------- */
.process-section {
  background: var(--off-white);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.process__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  opacity: 0.45;
  transition: opacity var(--transition-slow);
}

.process__step.active {
  opacity: 1;
}

.process__step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--text-gray);
  transition: all var(--transition-slow);
}

.process__step.active .process__step-number {
  background: var(--ec-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.process__step-content h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.process__step-content p {
  font-size: var(--text-sm);
  color: var(--text-gray);
  line-height: 1.6;
}

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

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

/* ----------------------------------------------------------------
   16. COST SECTION
   ---------------------------------------------------------------- */
.cost-section {
  background: var(--white);
}

.cost__factors {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  margin: var(--space-xl) 0;
}

.cost__factor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
}

.cost__factor::before {
  content: '•';
  color: var(--ec-red);
  font-weight: 900;
  font-size: 1.2em;
}

.cost__note {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--charcoal), var(--dark-bg));
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
}

.cost__note p {
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  color: rgba(255,255,255,0.75);
}

.cost__note strong {
  color: var(--gold);
}

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

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

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

/* ----------------------------------------------------------------
   17. FREIGHT COMPARISON SECTION
   ---------------------------------------------------------------- */
.freight-section {
  background: var(--off-white);
}

.freight__table-wrapper {
  margin-top: var(--space-2xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.freight__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 480px;
}

.freight__table th, .freight__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.freight__table th {
  background: var(--charcoal);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.freight__table td {
  font-size: var(--text-sm);
  color: var(--text-dark);
}

.freight__table tr:last-child td {
  border-bottom: none;
}

.freight__table tr:hover td {
  background: var(--off-white);
}

.freight__badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.freight__badge--air {
  background: rgba(196, 30, 58, 0.08);
  color: var(--ec-red);
}

.freight__badge--sea {
  background: rgba(30, 100, 196, 0.08);
  color: #1E64C4;
}

.freight__badge--fcl {
  background: rgba(197, 162, 85, 0.12);
  color: var(--gold-dark);
}

.freight__badge--lcl {
  background: rgba(100, 180, 100, 0.12);
  color: #3a8a3a;
}

/* ----------------------------------------------------------------
   18. TRUST / STATISTICS SECTION
   ---------------------------------------------------------------- */
.trust-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 60%, #170d12 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.trust-card {
  padding: var(--space-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background var(--transition-base), transform var(--transition-base);
}

.trust-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.trust-card__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.trust-card__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.trust__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.trust__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-sm);
}

.trust__feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(196, 30, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-red-light);
}

.trust__feature-icon svg {
  width: 16px;
  height: 16px;
}

.trust__feature-text h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust__feature-text p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.trust__content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  align-items: center;
}

.trust__left {
  display: flex;
  flex-direction: column;
}

.trust__grid {
  margin-top: 0;
}

.trust__features {
  margin-top: var(--space-lg);
}

.trust__image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  background: var(--dark-bg);
  aspect-ratio: 4 / 3;
}

.trust__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.trust__image-container:hover .trust__image {
  transform: scale(1.04);
}

.trust__image-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(19, 19, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 162, 85, 0.3);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.trust__image-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold);
}

@media (min-width: 580px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .trust__content-wrapper {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-2xl);
  }
}

/* ----------------------------------------------------------------
   19. FAQ SECTION
   ---------------------------------------------------------------- */
.faq-section {
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin: var(--space-2xl) auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--light-gray);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1.25rem 0;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--ec-red);
}

.faq__question:focus-visible {
  outline: 2px solid var(--ec-red);
  outline-offset: 2px;
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--text-gray);
}

.faq__icon svg {
  width: 12px;
  height: 12px;
}

.faq__item[data-open="true"] .faq__icon {
  background: var(--ec-red);
  color: var(--white);
}

.faq__item[data-open="true"] .faq__icon svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq__answer-inner {
  padding-bottom: 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-gray);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   20. QUOTE FORM SECTION (Harden UI validation alerts)
   ---------------------------------------------------------------- */
.quote-section {
  background: var(--off-white);
}

.quote__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.quote__contacts-info {
  margin-top: var(--space-lg);
}

.quote__contact-link {
  font-size: var(--text-md);
  font-weight: 600;
  margin-top: var(--space-xs);
}

.quote__form-wrapper {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(26,24,23,0.03);
}

.form-wrapper-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-align: center;
}

.quote__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-label .required {
  color: var(--ec-red);
}

.form-input, .form-select {
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--ec-red);
  box-shadow: 0 0 0 3px var(--ec-red-glow);
}

.form-input::placeholder {
  color: var(--mid-gray);
}

.form-input.error, .form-select.error {
  border-color: var(--ec-red);
}

.form-error {
  font-size: 11px;
  color: var(--ec-red);
  display: none;
  font-weight: 600;
}

.form-group.has-error .form-error {
  display: block;
}

/* Custom styling for select dropdown */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2366605B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.25rem;
}

.quote__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.form-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: var(--space-xs) 0;
}

.quote__form-submit {
  margin-top: var(--space-xs);
}

.quote__form-submit .btn {
  width: 100%;
}

.quote__form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--text-gray);
}

/* Highlight class when validation fails and user scroll is triggered */
@keyframes pulse-highlight-anim {
  0%, 100% { border-color: var(--mid-gray); box-shadow: none; }
  50% { border-color: var(--ec-red); box-shadow: 0 0 0 4px var(--ec-red-glow); }
}

.pulse-highlight {
  animation: pulse-highlight-anim 1.2s ease-in-out;
}

/* Inline submit status component */
.form-success, .form-error-msg {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.form-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}

.form-error-msg {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
}

.form-success h3, .form-error-msg h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
}

.form-success p, .form-error-msg p {
  font-size: var(--text-sm);
}

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

@media (min-width: 1024px) {
  .quote__inner { grid-template-columns: 1fr 1.1fr; }
  .quote__form-wrapper { padding: var(--space-xl); }
}

/* ----------------------------------------------------------------
   21. FINAL CTA SECTION
   ---------------------------------------------------------------- */
.final-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 60%, #15080e 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.canvas-fullsize {
  width: 100%;
  height: 100%;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.final-cta__title em {
  font-style: normal;
  color: var(--ec-red-light);
}

.final-cta__subtitle {
  font-size: var(--text-lg);
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.final-cta__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-xs);
}

.final-cta__tagline {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ----------------------------------------------------------------
   22. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.5);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer__logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.footer__logo-link img {
  height: 34px;
  width: auto;
  display: block;
  filter: none !important;
}

.footer__brand p {
  font-size: var(--text-sm);
  max-width: 380px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer__3d-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: var(--space-lg);
}

#footer-3d-canvas {
  width: 140px;
  height: 140px;
  background: transparent;
  display: block;
}

.footer__3d-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.footer__links h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer__links h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--ec-red);
}

.footer__links ul {
  list-style: none;
  padding-left: 0;
}

.footer__links ul li {
  margin-bottom: 0.65rem;
}

.footer__links ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer__links ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-sm);
}

.footer__contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  transition: background var(--transition-fast);
}

.footer__contact li:hover .footer__contact-icon {
  background: var(--ec-red-glow);
  color: var(--ec-red-light);
}

.footer__contact-icon svg {
  width: 14px;
  height: 14px;
}

.footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--ec-red-light);
}

@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 5rem);
  }
}

/* ----------------------------------------------------------------
   23. ACCESSIBLE STEP MODAL
   ---------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,14,24,0.55);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  max-height: 92dvh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition-base);
  position: relative;
  border: 1px solid rgba(26,24,23,0.04);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-gray);
  z-index: 5;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.modal__close:hover {
  background: var(--light-gray);
  color: var(--text-dark);
}

.modal__header {
  padding: var(--space-xl) var(--space-xl) var(--space-sm);
  text-align: center;
}

.modal__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.modal__subtitle {
  font-size: var(--text-xs);
  color: var(--text-gray);
  line-height: 1.5;
}

.modal__body {
  padding: 0 var(--space-xl) var(--space-xl);
}

.modal__form {
  display: grid;
  gap: var(--space-sm);
}

.modal__step {
  display: none;
}

.modal__step.active {
  display: block;
}

.modal__step2-buttons {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 0.5rem;
  margin-top: var(--space-xs);
}

.modal__footer {
  padding: 0 var(--space-xl) var(--space-lg);
  text-align: center;
  border-top: 1px solid var(--light-gray);
}

.modal__footer-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
}

.modal__progress {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.modal__progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: all var(--transition-base);
}

.modal__progress-dot.active {
  background: var(--ec-red);
  width: 18px;
  border-radius: 3px;
}

/* ----------------------------------------------------------------
   24. WHATSAPP BUTTONS & FLOATS
   ---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: var(--z-whatsapp);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* ----------------------------------------------------------------
   25. MOTION & EFFECTS
   ---------------------------------------------------------------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal { transform: translateY(24px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-scale { transform: scale(0.97); }

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

/* Stagger reveals */
.stagger-children > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 60ms; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 120ms; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 180ms; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 240ms; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 300ms; }
.stagger-children > .reveal:nth-child(7) { transition-delay: 360ms; }
.stagger-children > .reveal:nth-child(8) { transition-delay: 420ms; }
.stagger-children > .reveal:nth-child(9) { transition-delay: 480ms; }
.stagger-children > .reveal:nth-child(10) { transition-delay: 540ms; }

/* ----------------------------------------------------------------
   26. SYSTEM PREFERENCES & PRINTS
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__badge-dot {
    animation: none;
  }
}

/* Compact Landscape adjustments */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 5rem 0 3rem; }
  .modal { max-height: 96vh; }
  .modal__header { padding-top: 1rem; padding-bottom: 0.25rem; }
  .modal__body { padding-bottom: 1rem; }
  .modal__footer { display: none; }
}

@media print {
  .header, .whatsapp-float, .modal-overlay, .mobile-nav {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
}

/* ----------------------------------------------------------------
   27. GLOBAL NETWORK SECTION
   ---------------------------------------------------------------- */
.network-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  color: var(--white);
  overflow: hidden;
}

.network-section .section-title {
  color: var(--white);
}

.network-section .section-title em {
  background: linear-gradient(135deg, var(--ec-red-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.network__canvas-wrapper {
  position: relative;
  background: #0e0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  width: 100%;
  min-height: 480px;
}

@media (min-width: 992px) {
  .network__canvas-wrapper {
    min-height: 800px;
  }
}

.network__overlay-header {
  position: absolute;
  top: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 720px;
  pointer-events: none;
}

.network__overlay-header .section-title {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.network__overlay-header .section-title em {
  background: linear-gradient(135deg, var(--ec-red-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.network__overlay-header .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  max-width: 600px;
  margin: 0 auto;
}

.network__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
