/* ============================================================
   CEI — Cargo Express International
   Glassboard Dark Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface2: #263347;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-glow: rgba(16,185,129,0.2);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(16,185,129,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 4px 24px rgba(16,185,129,0.15);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #34d399; }

img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.nav-logo-badge {
  background: var(--accent);
  color: #0f172a;
  font-weight: 800;
  font-size: 1.1rem;
  padding: .25rem .6rem;
  border-radius: 6px;
  letter-spacing: .5px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}

.nav-logo-est {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: 8px;
  transition: all .2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface);
}

.nav-links a.nav-cta {
  background: var(--accent);
  color: #0f172a;
  font-weight: 600;
  margin-left: .5rem;
}

.nav-links a.nav-cta:hover {
  background: #34d399;
  color: #0f172a;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 750px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0f172a;
}

.btn-primary:hover {
  background: #34d399;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(16,185,129,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ── GRID LAYOUTS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ── GLASS CARDS ── */
.card {
  background: rgba(30,41,59,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: all .3s;
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.card-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── STATS ── */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(30,41,59,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent);
  opacity: .2;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── CERTIFICATIONS ── */
.cert-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
}

.cert-item svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── FTZ BENEFITS ── */
.benefit-card {
  background: rgba(16,185,129,0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
}

.benefit-card:hover {
  background: rgba(16,185,129,0.1);
  transform: translateY(-3px);
}

.benefit-number {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.benefit-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── COMPARISON TABLE ── */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comparison-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-col.ftz {
  border: 2px solid var(--accent);
  background: rgba(16,185,129,0.05);
}

.comparison-col.bonded {
  border: 1px solid var(--border);
  background: var(--surface);
}

.comparison-header {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.comparison-col.ftz .comparison-header { background: rgba(16,185,129,0.15); color: var(--accent); }
.comparison-col.bonded .comparison-header { background: rgba(255,255,255,0.04); color: var(--muted); }

.comparison-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 2rem;
  border-top: 1px solid var(--border);
  font-size: .9rem;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-check { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.comparison-row .check-yes { color: var(--accent); }
.comparison-row .check-no { color: #f87171; }
.comparison-row .check-partial { color: #fbbf24; }

.comparison-row-text { color: var(--text); line-height: 1.5; }
.comparison-row-text span { display: block; font-size: .8rem; color: var(--muted); margin-top: .2rem; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item:hover { border-color: var(--border-accent); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.faq-question svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 1.5rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-list { display: flex; flex-direction: column; gap: .75rem; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all .2s;
}

.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.team-avatar {
  width: 56px; height: 56px;
  background: var(--accent-glow);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.team-name { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.team-title { font-size: .78rem; color: var(--muted); }

/* ── FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

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

label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .5px;
  text-transform: uppercase;
}

input, select, textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

select option { background: var(--surface); }

textarea { resize: vertical; min-height: 120px; }

/* ── CONTACT INFO CARDS ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-card-icon {
  width: 40px; height: 40px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-card-icon svg { width: 20px; height: 20px; }

.contact-card-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: .2rem;
}

.contact-card-value {
  font-size: .95rem;
  font-weight: 600;
}

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: var(--surface);
  border: 1px dashed var(--border-accent);
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); opacity: .4; }
.map-placeholder p { font-size: .9rem; }

/* ── MISSION BOX ── */
.mission-box {
  background: rgba(16,185,129,0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.mission-box blockquote {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.verse-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.verse-icon { font-size: 1.5rem; }

.verse-text {
  font-style: italic;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
}

.verse-ref {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
  font-size: .8rem;
  margin-top: .4rem;
  display: block;
}

/* ── MEMBERSHIP BADGES ── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .5rem 1.25rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all .2s;
}

.badge:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}

.badge svg { width: 16px; height: 16px; color: var(--accent); }

/* ── SERVICE AREA ── */
.service-area-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.service-county {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
}

.county-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.county-arrow {
  color: var(--border-accent);
  font-size: 1.2rem;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(15,23,42,0) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: var(--muted);
  font-size: .875rem;
  transition: color .2s;
}

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

.footer-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: .75rem;
  line-height: 1.5;
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: .15rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-text {
  font-size: .8rem;
  color: var(--muted);
}

.footer-verse {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
  text-align: right;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all .2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
}

/* ── TRUCK SPECS ── */
.truck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.truck-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: all .2s;
}

.truck-card:hover { border-color: var(--border-accent); }

.truck-card-icon { font-size: 2rem; margin-bottom: .5rem; }
.truck-card-name { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.truck-card-detail { font-size: .78rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(15,23,42,0.97); padding: 1rem; flex-direction: column; gap: .25rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-verse { text-align: left; }
  .comparison-wrapper { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  section { padding: 3rem 1.25rem; }
  .cert-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-logo-text { display: none; }
}

/* ═══ HERO PAGE (inner pages) ════════════════════════════════ */
.hero-page {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ═══ CERT STRIP ═════════════════════════════════════════════ */
.cert-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(16,185,129,0.07);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.cert-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent);
}

/* ═══ BENEFIT ITEMS ══════════════════════════════════════════ */
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.benefit-item:hover {
  border-color: var(--border-accent);
  background: rgba(16,185,129,0.04);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
}
.benefit-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.benefit-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══ INFO STRIP ═════════════════════════════════════════════ */
.info-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 8px 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  flex: 1;
  min-width: 200px;
  border-right: 1px solid var(--border);
}
.info-item:last-child { border-right: none; }
.info-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  flex-shrink: 0;
}
.info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}
.info-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══ PROCESS STEPS ══════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--border-accent), var(--border), var(--border-accent));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 28px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.process-step:hover { border-color: var(--border-accent); }
.step-number {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═══ COMPARE ROWS (ftz-vs-bonded) ═══════════════════════════ */
.compare-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.compare-row:last-child { border-bottom: none; }
.compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1.5px solid;
}
.compare-yes .compare-icon {
  background: rgba(16,185,129,0.15);
  color: var(--accent);
  border-color: var(--border-accent);
}
.compare-no .compare-icon {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border-color: rgba(239,68,68,0.3);
}
.compare-limited .compare-icon {
  background: rgba(251,191,36,0.1);
  color: #fbbf24;
  border-color: rgba(251,191,36,0.3);
}
.compare-feature {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.compare-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══ CONTACT FORM ═══════════════════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(16,185,129,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ═══ FOOTER MEMBERSHIPS ══════════════════════════════════════ */
.footer-memberships {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(16,185,129,0.08);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-badge:hover { color: var(--accent); }

/* ═══ FOOTER VERSE ═══════════════════════════════════════════ */
.footer-verse {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ═══ RESPONSIVE ADDITIONS ════════════════════════════════════ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .hero-page { padding: 120px 0 60px; }
}
@media (max-width: 768px) {
  .cert-strip { gap: 8px; }
  .info-strip { flex-direction: column; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 16px; }
  .info-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .benefit-item { flex-direction: column; }
  .compare-row { flex-direction: row; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 400px"],
  [style*="grid-template-columns: 1fr 400px"] {
    grid-template-columns: 1fr !important;
  }
}
