/* ============================================
   lp-export.css — Export Agency LP
   ============================================ */
/* Custom CSS Variables (design tokens) mapped to global variables */
:root {
  --slate:     var(--navy,    #0a1628);
  --slate2:    var(--navy2,   #112040);
  --teal:      var(--navy2,   #112040);
  --teal-lt:   var(--gold-lt, #e8b86d);
  --amber:     var(--orange,  #e8620a); 
  --amber-lt:  var(--gold-lt, #e8b86d); 
  --cream:     var(--offwhite,#f5f7fa);
  --white:     #ffffff;
  --ink:       var(--navy,    #0a1628);
  --muted:     var(--muted,   #8a96a8);
  --rule:      #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: var(--shadow,  0 20px 60px rgba(10,22,40,0.18));
}

/* Global resets */
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── HEADER ── */
/* Header right-aligned actions container */
.header-right { display: flex; align-items: center; gap: 20px; }

/* Header phone number link with green availability indicator */
.header-phone {
  color: rgba(255,255,255,0.8); font-size: 0.88rem;
  font-weight: 500; text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--amber-lt); }
.header-phone::before {
  content: '';
  display: inline-block; width: 7px; height: 7px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 1.8s infinite;
}

/* Header primary CTA button for quick contact */
.header-cta-btn {
  background: var(--navy2, #112040); color: var(--gold-lt, #e8b86d);
  padding: 9px 22px; border-radius: 6px; border: none;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.85rem; cursor: pointer; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.header-cta-btn:hover { background: var(--gold-lt, #e8b86d); transform: translateY(-1px); }

/* ── HERO ── */
/* Hero section with dark background, gradient overlay, and export-themed hero image */
.hero {
  background: var(--slate);
  background-image:
    linear-gradient(105deg, rgba(28,43,58,0.97) 45%, rgba(28,43,58,0.75) 100%),
    url('../assets/images/export-bg-hero.webp');
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  padding: 72px 5% 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; 
  gap: 48px;
  border-bottom: 3px solid var(--gold, #c8963e);
}

/* Hero left content column (headline, description, bullets) */
.hero-left { flex: 1; min-width: 300px; padding: 8px 0 0 100px; }

/* Hero eyebrow tag (small uppercase label) with divider line */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal-lt); margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--gold-lt, #e8b86d);
}

/* Hero main headline with responsive font sizing and italicized accent text */
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff; line-height: 1.1;
  font-weight: 700; margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic; color: var(--gold-lt, #e8b86d);
}

/* Hero subtitle/description text */
.hero-sub {
  color: rgba(255,255,255,0.68); font-size: 1rem;
  line-height: 1.75; margin-bottom: 32px; max-width: 460px;
}

/* Hero bullet points with custom checkmark icons */
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 0.93rem;
}
.hero-bullets li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(200,150,62,0.12);
  border: 1.5px solid var(--gold, #c8963e); border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c8963e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* ── FORM ── */
/* Hero lead capture form container */
.hero-form-wrap {
  flex: 0 0 350px;
  margin: 0 150px 0 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196,135,60,0.2);
  overflow: hidden;
}

/* Form header bar with accent underline */
.form-header {
  background: var(--navy2, #112040);
  padding: 18px 26px 16px;
  position: relative;
}
.form-header::after {
  content: '';
  position: absolute; bottom: -6px; left: 26px;
  width: 48px; height: 3px;
  background: var(--amber);
}
.form-header h3 {
  font-family: 'Sora', sans-serif;
  color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 3px;
}
.form-header p {
  color: rgba(255,255,255,0.7); font-size: 0.8rem;
  display: flex; align-items: center; gap: 6px;
}
.form-header p::before { content: '⚡'; font-size: 0.85em; }

/* Form body with input fields */
.form-body { padding: 22px 26px 26px; }
.form-row { margin-bottom: 12px; }

/* Form field labels (uppercase) */
.form-row label {
  display: block; font-size: 0.72rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 5px;
}

/* Form input fields with focus states */
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--rule); border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem; color: var(--slate); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold, #c8963e);
  box-shadow: 0 0 0 3px rgba(26,122,110,0.1);
  background: #fff;
}

.form-row textarea { resize: vertical; min-height: 68px; }

/* Form submit button */
.form-submit {
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff; border: none; border-radius: 8px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(232,98,10,0.35);
}
.form-submit:hover {
  background: var(--orange-h); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232,98,10,0.40);
}

/* Privacy assurance text with lock icon */
.form-assurance {
  text-align: center; margin-top: 10px; font-size: 0.75rem; color: #a0aec0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.form-assurance::before { content: '🔒'; font-size: 0.8em; }

/* ── STATS BAR ── */
/* Horizontal statistics/trust bar with company metrics */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 120px; padding: 20px 16px;
  text-align: center; border-right: 1px solid var(--rule);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 2px; background: var(--navy2, #112040);
}

/* Statistic number display */
.stat-num {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1.7rem; color: var(--slate); display: block;
}
.stat-num span { color: var(--amber); }

/* Statistic label text */
.stat-label { font-size: 0.76rem; color: var(--muted); margin-top: 3px; letter-spacing: 0.02em; }

/* ── SECTION HELPERS ── */
/* Section eyebrow tag with divider line */
.sec-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold, #c8963e); margin-bottom: 14px;
}
.sec-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 2px; background: var(--navy2, #112040);
  flex-shrink: 0;
}

/* Section main title with responsive font sizing */
.sec-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; color: var(--slate); margin-bottom: 14px;
  line-height: 1.15;
}

/* Section subtitle/description text */
.sec-sub {
  color: var(--muted); font-size: 0.97rem;
  max-width: 560px; line-height: 1.75;
}

/* ── SERVICES ── */
/* Services section container with cream background */
.services-section {
  padding: 80px 5%; background: var(--cream);
}
.services-head { margin-bottom: 52px; }

/* 2-column service card grid with border-based separation */
.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 8px; overflow: hidden;
}

/* Individual service card with hover effects */
.service-card {
  background: var(--white); padding: 32px 28px;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: #fafaf8; }
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--navy2, #112040);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleY(1); }

/* Service number indicator (fades to accent color on hover) */
.service-num {
  font-family: 'Sora', sans-serif; font-size: 2rem;
  font-weight: 700; color: var(--rule); display: block;
  margin-bottom: 12px; line-height: 1;
  transition: color 0.2s;
}
.service-card:hover .service-num { color: var(--amber-lt); }

.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--slate); margin-bottom: 10px;
}
.service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS (steps) ── */
/* Process section with dark background */
.process-section {
  padding: 80px 5%;
  background: var(--slate);
  position: relative;
}
.process-section .sec-eyebrow { color: var(--teal-lt); }
.process-section .sec-eyebrow::before { background: var(--gold-lt, #e8b86d); }
.process-section .sec-title { color: #fff; }
.process-section .sec-sub { color: rgba(255,255,255,0.55); margin-bottom: 52px; }

/* 4-column process steps with connecting line */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 26px; left: 14%;  right: 14%;
  height: 1px;
  background: linear-gradient(to right,
    transparent, rgba(200,150,62,0.4) 15%,
    rgba(200,150,62,0.4) 85%, transparent);
}
.process-step { padding: 0 16px; text-align: center; }

/* Step circle indicator with hover effects */
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--gold, #c8963e);
  background: rgba(200,150,62,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--teal-lt); margin-bottom: 20px; position: relative; z-index: 1;
  transition: background 0.2s, border-color 0.2s;
}
.process-step:hover .step-circle {
  background: rgba(200,150,62,0.2); border-color: var(--gold-lt, #e8b86d);
}

.process-step h4 {
  font-family: 'Sora', sans-serif; font-size: 0.95rem;
  font-weight: 600; color: #fff; margin-bottom: 8px;
}
.process-step p { font-size: 0.82rem; color: rgba(255,255,255,0.48); line-height: 1.65; }

/* ── WHO WE SERVE ── */
/* Audience/Who We Serve section */
.audience-section { padding: 80px 5%; background: var(--white); }
.audience-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 48px;
}

/* Audience card with top border accent and hover lift */
.audience-card {
  padding: 28px 24px;
  border: 1px solid var(--rule); border-radius: 6px;
  border-top: 3px solid var(--gold, #c8963e);
  background: var(--cream);
  transition: box-shadow 0.25s, transform 0.25s, border-top-color 0.2s;
}
.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-top-color: var(--orange, #e8620a);
}

.aud-icon { font-size: 1.8rem; margin-bottom: 14px; }
.audience-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--slate); margin-bottom: 8px;
}
.audience-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
/* Testimonials section with customer reviews */
.testimonials {
  padding: 80px 5%; background: var(--cream);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 48px;
}

/* Testimonial card with left border accent */
.testi-card {
  background: var(--white); border-radius: 6px; padding: 28px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold, #c8963e);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testi-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-family: 'Sora', sans-serif; font-style: italic;
  font-size: 0.95rem; color: var(--slate); line-height: 1.7; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--slate); display: flex; align-items: center; justify-content: center;
  color: var(--amber-lt); font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.85rem; color: var(--slate); }
.testi-co   { font-size: 0.75rem; color: var(--muted); }

/* ── FAQ ── */
/* FAQ section with accordion-style expandable items */
.faq-section { padding: 80px 5%; background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner .sec-title { text-align: left; }
.faq-inner .sec-sub   { margin-bottom: 44px; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 20px 0; }

/* FAQ question (clickable) */
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 1rem; color: var(--slate);
  user-select: none; gap: 16px;
}

/* FAQ plus/minus toggle icon */
.faq-q .icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 3px;
  background: var(--cream); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.25s, background 0.2s, color 0.2s;
  color: var(--gold, #c8963e);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--navy2, #112040); color: var(--gold-lt, #e8b86d); }

/* FAQ answer (collapsed by default) */
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.9rem; color: var(--muted); line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.25s;
  padding-left: 4px;
  border-left: 2px solid transparent;
}
.faq-item.open .faq-a {
  max-height: 260px; padding-top: 14px;
  border-left-color: var(--gold, #c8963e);
  padding-left: 16px;
}

/* ── CTA BAND ── */
/* Final call-to-action band before footer */
.cta-band {
  padding: 80px 5%;
  background: var(--navy2, #112040);
  position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff; margin-bottom: 14px; font-weight: 700;
}
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Primary CTA button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 36px; border-radius: 8px; border: none;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.97rem;
  cursor: pointer; letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(232,98,10,0.4);
  transition: background 0.2s, transform 0.15s; text-decoration: none;
}
.btn-primary:hover  { background: var(--orange-h); transform: translateY(-2px); }
/* Secondary/ghost button */
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.9);
  padding: 13px 28px; border-radius: 4px;
  border: 1.5px solid rgba(200,150,62,0.45);
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.92rem;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; text-decoration: none; color: var(--gold-lt, #e8b86d);
}
.btn-secondary:hover { border-color: var(--gold-lt, #e8b86d); background: rgba(200,150,62,0.08); }

/* ── FOOTER ── */
/* Footer copyright and links */
.site-footer-meta {
  background: #060e1c; color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer-meta a { color: rgba(255,255,255,0.45); text-decoration: none; }
.site-footer-meta a:hover { color: var(--amber-lt); }

/* ── RESPONSIVE ── */
/* Desktop XL - adjust hero padding and form positioning */
@media (max-width: 1200px) {
  .hero-left {
    padding: 8px 0 0 0;
  }
  .hero-form-wrap {
    margin: 0;
  }
}

/* Tablet - 2-column grids for testimonials/audience, 2x2 process steps */
@media (max-width: 960px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

/* Tablet portrait - stack hero columns vertically, 1-column service grid */
@media (max-width: 820px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 52px 6% 60px;
  }
  .hero-left {
    padding: 0;
    max-width: 100%;
    text-align: left;
  }
  .hero-form-wrap {
    flex: 1 0 auto;
    width: 100%;
    max-width: 480px;
    margin: 0;
    align-self: center;
  }
  .service-grid { grid-template-columns: 1fr; }
  .stats-bar .stat-item { min-width: 110px; padding: 16px 10px; }
}

/* Large mobile - 1-column grids for testimonials/audience */
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* Small mobile - compact layout, hide header CTA */
@media (max-width: 480px) {
  .hero { padding: 40px 4% 48px; }
  .hero h1 { font-size: 2rem; }
  .hero-form-wrap { max-width: 100%; }
  .header-cta-btn { display: none; }
  .header-phone { font-size: 0; }
  .header-phone::after {
    content: 'WhatsApp';
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,150,62,0.10) 0%, transparent 70%),
      linear-gradient(135deg, #0d2f4e 0%, #163d61 100%);
    padding: 36px 5% 40px;
    gap: 24px;
    min-height: auto;
  }

  .hero .hero-form-wrap { display: none; }

  .hide-on-mobile { display: none !important; }

  .hero h1     { font-size: 1.65rem; margin-bottom: 12px; }
  .hero-sub    { font-size: 0.92rem; margin-bottom: 16px; }
  .aeo-badge   { margin-bottom: 14px; padding: 5px 10px; font-size: 0.7rem; }
  .hero-bullets li { font-size: 0.88rem; }

  .cta-band { display: none; }

  #mobile-form-section {
    background: linear-gradient(135deg, #0d2f4e 0%, #1a3560 100%);
    padding: 40px 5% 48px;
  }
  #mobile-form-section .hero-form-wrap {
    display: block;
    max-width: 480px;
    margin: 0 auto;
    flex: none;
  }
}

@media (min-width: 769px) {
  #mobile-form-section { display: none; }
}