/* ================================================================
   FR-Logistics · MASTER STYLESHEET
   Used by all pages of fr-logistics.net
   Version: 2026.04 · Light theme, green/teal/cyan brand
   ================================================================ */

:root {
  /* Brand colors */
  --brand-green: #10B981;
  --brand-teal: #14B8A6;
  --brand-cyan: #0EA5E9;
  --brand-green-dark: #059669;
  --eco-lime: #7CB928;
  --eco-lime-light: #A3E635;
  --amazon-orange: #FF9900;

  /* Gradient */
  --gradient-brand: linear-gradient(90deg, #10B981 0%, #14B8A6 50%, #0EA5E9 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(14,165,233,0.08) 100%);
  --gradient-eco: linear-gradient(135deg, #7CB928 0%, #A3E635 100%);

  /* Neutrals */
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-muted: #F1F5F9;
  --bg-dark: #0F172A;
  --bg-darker: #020617;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Text */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-on-dark: #F8FAFC;
  --text-on-dark-muted: #94A3B8;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;
  --content-pad: clamp(16px, 4vw, 40px);

  /* Radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 24px rgba(16, 185, 129, 0.25);

  /* Transitions */
  --ease: 200ms cubic-bezier(.4,0,.2,1);
  --ease-slow: 400ms cubic-bezier(.4,0,.2,1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* EcoPack+ theme overlay */
body.theme-ecopack {
  --brand-green: #7CB928;
  --brand-teal: #65A30D;
  --brand-cyan: #84CC16;
  --brand-green-dark: #65A30D;
  --gradient-brand: linear-gradient(90deg, #7CB928 0%, #84CC16 50%, #A3E635 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(124,185,40,0.08) 0%, rgba(163,230,53,0.08) 100%);
  --shadow-glow: 0 8px 24px rgba(124, 185, 40, 0.25);
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
h1 { font-size: clamp(34px, 5.5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: clamp(17px, 2vw, 19px); font-weight: 700; }
p { font-size: clamp(15px, 1.5vw, 17px); color: var(--text-secondary); line-height: 1.65; }
.lead { font-size: clamp(17px, 1.8vw, 20px); line-height: 1.6; color: var(--text-secondary); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 18px;
}
.eyebrow svg { width: 16px; height: 10px; }
.accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--content-pad);
  width: 100%;
}
section { position: relative; }
.section-pad { padding-block: clamp(60px, 8vw, 100px); }
.section-pad-sm { padding-block: clamp(40px, 6vw, 64px); }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section-header .lead { margin-top: 12px; }

.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }

/* ================================================================
   BRAND STRIPE (top gradient bar)
   ================================================================ */
.brand-stripe {
  height: 3px;
  background: var(--gradient-brand);
  position: relative;
  z-index: 101;
}

/* ================================================================
   TOP BAR
   ================================================================ */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a {
  color: var(--text-on-dark-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.top-bar a:hover { color: var(--white); }
.spn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255,153,0,0.12);
  border: 1px solid rgba(255,153,0,0.3);
  border-radius: var(--radius-full);
  color: var(--amazon-orange);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.spn-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--amazon-orange);
  border-radius: 50%;
}
.lang-switch {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--white) !important;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.lang-switch:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan) !important;
}

@media (max-width: 900px) {
  .top-bar-right .tb-hide-tablet { display: none; }
}
@media (max-width: 640px) {
  .top-bar { font-size: 12px; }
  .top-bar-inner { padding-block: 8px; gap: 10px; }
  .top-bar-left, .top-bar-right { gap: 10px; }
  .tb-hide-mobile { display: none; }
}

/* ================================================================
   MAIN NAV
   ================================================================ */
.main-nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 21px);
  letter-spacing: -0.025em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-brand svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-grow: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--brand-green); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brand-green);
  border-radius: 50%;
}
.nav-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--bg-muted); }
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 100vw);
  height: 100dvh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: 24px;
  transition: right var(--ease-slow);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu ul a {
  display: block;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}
.mobile-menu ul a:hover { background: var(--bg-soft); color: var(--brand-green); }
.mobile-menu ul a.active { background: var(--bg-soft); color: var(--brand-green); }
.mobile-menu .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .nav-cta .btn-primary span.cta-text-long { display: none; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  min-height: 44px;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand-green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}
.btn-primary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}
.btn-primary svg { width: 14px; height: 10px; }
.btn-outline {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--brand-green); background: var(--bg-soft); }
.btn-lg { padding: 16px 28px; font-size: 15px; min-height: 52px; }
.btn-sm { padding: 8px 14px; font-size: 13px; min-height: 36px; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); color: var(--white); }
.btn-on-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.btn-on-dark:hover {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
  color: var(--white);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding-block: clamp(48px, 8vw, 96px) clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 36px; max-width: 640px; }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}
.hero-trust strong { color: var(--text-primary); }
.flag-row-images {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.flag-row-images img {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
  object-fit: cover;
  display: inline-block;
}

/* ================================================================
   STATS GRID
   ================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--ease);
}
.stat-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-card .stat-value.amazon { color: var(--amazon-orange); }
.stat-card .stat-value.teal { color: var(--brand-teal); }
.stat-card .stat-value.cyan { color: var(--brand-cyan); }
.stat-card .stat-value.lime { color: var(--eco-lime); }
.stat-card .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.stat-card-link {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}
.stat-spn .spn-logo-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
}
.stat-spn:hover .spn-logo-img {
  filter: drop-shadow(0 4px 10px rgba(255, 153, 0, 0.25));
}
.stat-spn .stat-label {
  color: var(--amazon-orange);
  font-weight: 700;
}
@media (max-width: 560px) {
  .stat-spn .spn-logo-img { max-height: 44px; }
}

/* Cutoff banner */
.cutoff-banner {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-glow);
}
.cutoff-banner .pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* ================================================================
   TRUSTED BY
   ================================================================ */
.trusted-bar {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
  padding-block: clamp(32px, 4vw, 48px);
}
.trusted-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}
.trusted-logo {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.7;
  transition: all var(--ease);
  letter-spacing: -0.02em;
  text-align: center;
}
.trusted-logo:hover { opacity: 1; color: var(--text-primary); transform: translateY(-2px); }
.trusted-logo .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card .corner-chev {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 14px;
  opacity: 0.35;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: clamp(19px, 2vw, 22px);
  margin-bottom: 10px;
}
.service-card .svc-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}
.chev-bullet {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  margin-top: 6px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 12px; height: 8px; }

/* ================================================================
   LATAM SECTION
   ================================================================ */
.latam-section {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.latam-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.latam-section h2 { color: var(--white); }
.latam-section .lead { color: rgba(248, 250, 252, 0.75); }
.latam-section .eyebrow { color: var(--brand-cyan); }
.latam-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .latam-inner { grid-template-columns: 1fr; gap: 40px; } }

.latam-countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 400px) { .latam-countries { grid-template-columns: repeat(2, 1fr); } }

.country-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  transition: all var(--ease);
  cursor: default;
}
.country-chip:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
}
.country-chip .flag-img {
  width: 32px;
  height: 24px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  margin: 0 auto 6px;
  display: block;
}
.country-chip .name {
  font-size: 12px;
  color: rgba(248, 250, 252, 0.8);
  font-weight: 600;
}
.latam-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}
.latam-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(248, 250, 252, 0.9);
}
.latam-features svg { width: 14px; height: 10px; margin-top: 6px; flex-shrink: 0; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-teaser {
  background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(14,165,233,0.06) 100%);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.pricing-teaser h2 { margin-bottom: 12px; }
.pricing-teaser .lead { margin: 0 auto 28px; max-width: 560px; }
.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 32px;
}
@media (max-width: 640px) { .pricing-highlights { grid-template-columns: 1fr; } }

.price-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
}
.price-highlight .from {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-highlight .value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 4px;
}
.price-highlight .label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Full pricing table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td.price-col {
  text-align: right;
  font-weight: 700;
  color: var(--brand-green);
  font-family: var(--font-display);
  font-size: 17px;
  white-space: nowrap;
}
.pricing-table tr:hover td { background: var(--bg-soft); }

.pricing-calculator {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.calc-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.calc-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
}
.calc-row label span { color: var(--brand-green); font-family: var(--font-display); }
.calc-row input[type="range"] { width: 100%; accent-color: var(--brand-green); }
.calc-row select {
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}
.calc-addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}
@media (max-width: 480px) { .calc-addons { grid-template-columns: 1fr; } }
.calc-addons label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--ease);
  font-size: 13px;
  font-weight: 500;
}
.calc-addons label:hover { border-color: var(--brand-teal); background: var(--bg-soft); }
.calc-addons input[type="checkbox"] { accent-color: var(--brand-green); }
.calc-total {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 20px;
}
.calc-total .label {
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.calc-total .value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.calc-total .fine {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

/* ================================================================
   INTEGRATIONS
   ================================================================ */
.integrations-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .integrations-groups { grid-template-columns: 1fr; } }
.integration-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.integration-group h4 {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}
.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.int-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--ease);
}
.int-chip:hover {
  border-color: var(--brand-teal);
  transform: translateY(-2px);
  background: var(--white);
}
.int-chip .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--ease);
}
.testimonial:hover { border-color: var(--brand-teal); box-shadow: var(--shadow); }
.stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; }
.testimonial p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-primary);
  flex-grow: 1;
  font-style: italic;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}
.author-meta { flex-grow: 1; }
.author-meta .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.author-meta .role {
  font-size: 12px;
  color: var(--text-muted);
}
.reviews-link { text-align: center; margin-top: 32px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--ease);
}
.faq-item[open] { border-color: var(--brand-teal); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 26px;
  color: var(--brand-teal);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item .answer strong { color: var(--text-primary); }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 { color: var(--white); }
.final-cta .eyebrow { color: var(--brand-cyan); }
.final-cta .lead { color: rgba(248, 250, 252, 0.75); max-width: 600px; margin: 12px auto 32px; }
.final-cta .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.final-cta .fine {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(248, 250, 252, 0.5);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-on-dark-muted);
  padding-block: clamp(56px, 8vw, 80px) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 110px;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .footer-col.liam-col { display: none; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .nav-brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  max-width: 340px;
  margin-bottom: 20px;
}
.footer-social-row { display: flex; gap: 10px; }
.footer-social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  transition: all var(--ease);
}
.footer-social-row a:hover {
  background: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
  transform: translateY(-2px);
}
.footer-social-row svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-on-dark-muted);
  font-size: 14px;
}
.footer-col a:hover { color: var(--brand-green); }
.footer-contact li { font-size: 14px; color: var(--text-on-dark-muted); }
.footer-address {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.7);
  margin-top: 8px;
  line-height: 1.5;
}
.liam-col {
  position: relative;
  align-self: center;
  display: flex;
  justify-content: center;
}
.liam-col img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(124, 185, 40, 0.3));
}
.liam-col .speech {
  position: absolute;
  top: -8px;
  right: -4px;
  background: var(--eco-lime);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 8px 8px 0 8px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(148, 163, 184, 0.6);
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a:hover { color: var(--white); }
.footer-bottom .spn-footer {
  color: var(--amazon-orange);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ================================================================
   SOCIAL SIDEBAR
   ================================================================ */
.social-sidebar {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 350ms cubic-bezier(.4,0,.2,1), transform 350ms cubic-bezier(.4,0,.2,1);
  will-change: transform, opacity;
}
.social-sidebar.is-hidden {
  opacity: 0;
  transform: translateY(-50%) translateX(-80px);
  pointer-events: none;
}
.social-sidebar a {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  position: relative;
}
.social-sidebar a:hover {
  transform: translateX(3px) scale(1.06);
  box-shadow: var(--shadow);
}
.social-sidebar a.ig:hover { color: #E4405F; border-color: #E4405F; }
.social-sidebar a.li:hover { color: #0A66C2; border-color: #0A66C2; }
.social-sidebar a.fb:hover { color: #1877F2; border-color: #1877F2; }
.social-sidebar a.yt:hover { color: #FF0000; border-color: #FF0000; }
.social-sidebar a.tk:hover { color: #000; border-color: #000; }
.social-sidebar a.wa:hover { color: #25D366; border-color: #25D366; }
.social-sidebar svg { width: 18px; height: 18px; }
.social-sidebar a::after {
  content: attr(data-label);
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-primary);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.social-sidebar a:hover::after { opacity: 1; }
@media (max-width: 960px) { .social-sidebar { display: none; } }

/* ================================================================
   LIAM WIDGET
   ================================================================ */
.liam-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
}
.liam-widget-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--eco-lime-light), var(--eco-lime));
  border: 4px solid var(--white);
  box-shadow: 0 10px 28px rgba(124, 185, 40, 0.4);
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: transform var(--ease);
  flex-shrink: 0;
}
.liam-widget-btn:hover { transform: scale(1.08) rotate(-3deg); }
.liam-widget-btn img {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.liam-widget-btn .pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--eco-lime);
  opacity: 0.3;
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 640px) {
  .liam-widget { right: 14px; bottom: 14px; }
  .liam-widget-btn { width: 58px; height: 58px; border-width: 3px; }
  .liam-widget-btn img { width: 72px; }
}

/* Hide Tidio default launcher — we use LIAM instead */
#tidio-chat-iframe,
#tidio-chat [data-testid="launcher"],
iframe[title*="launcher" i],
iframe[src*="widget.tidiochat"][style*="position"] {
  display: none !important;
  visibility: hidden !important;
}

/* ================================================================
   FORMS
   ================================================================ */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; gap: 40px; } .about-photo { max-width: 420px; margin: 0 auto; } }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.value-card .value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card .value-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--ease);
  color: var(--text-primary);
}
.contact-channel:hover {
  border-color: var(--brand-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-channel .c-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel .c-icon svg { width: 22px; height: 22px; }
.contact-channel .c-meta .label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-channel .c-meta .value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--bg-muted);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.business-hours {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 20px;
}
.business-hours h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.business-hours li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
}
.business-hours li .day { color: var(--text-primary); font-weight: 600; }
.business-hours li .time { color: var(--text-secondary); }

/* ================================================================
   404 PAGE
   ================================================================ */
.err-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 8vw, 80px) var(--content-pad);
}
.err-404 .inner { max-width: 520px; }
.err-404 .liam-lost {
  width: clamp(140px, 20vw, 200px);
  margin: 0 auto 32px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 20px rgba(124, 185, 40, 0.3));
  animation: floatLost 4s ease-in-out infinite;
}
@keyframes floatLost {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-10px); }
}
.err-404 .code {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 96px);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.err-404 h1 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 12px 0;
}
.err-404 p {
  margin-bottom: 28px;
}

/* ================================================================
   THANK YOU PAGE
   ================================================================ */
.thank-you-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: clamp(40px, 8vw, 80px) var(--content-pad);
}
.thank-you-hero .inner { max-width: 600px; margin: 0 auto; }
.success-check {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-glow);
  animation: popIn 500ms cubic-bezier(.4,0,.2,1);
}
.success-check svg { width: 48px; height: 48px; color: var(--white); }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

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


/* ================================================================
   v2.1 · DESIGN REFINEMENTS (2026-04-23)
   Feedback-driven updates
   ================================================================ */

/* ---- ABOUT PAGE · LinkedIn-style photo + SPN logo ---- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.about-photo-wrap {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}
.about-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15), 0 0 0 6px rgba(20, 184, 166, 0.15);
  display: block;
  margin: 0 auto 18px;
  border: 4px solid white;
  transition: transform 300ms ease;
}
.about-photo:hover { transform: scale(1.03); }
.about-photo-caption {
  text-align: center;
  padding: 0;
}
.about-photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.about-photo-caption span {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .about-photo { width: 180px; height: 180px; }
}

/* ---- ABOUT PAGE · Certifications grid (3 cards) ---- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .cert-grid { grid-template-columns: 1fr; gap: 20px; }
}

.cert-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.cert-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cert-card .cert-logo {
  max-width: 160px !important;
  width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}
.cert-card .cert-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}
.cert-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.cert-card p {
  font-size: 13.5px;
  margin-bottom: 14px;
  color: var(--text-secondary);
}
.cert-card .service-link {
  margin-top: auto;
}

/* ---- LATAM · Country detail cards (polished 3-col grid) ---- */
.country-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .country-grid-detailed { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .country-grid-detailed { grid-template-columns: 1fr; }
}

.country-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.country-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--ease);
}
.country-detail-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.country-detail-card:hover::before { opacity: 1; }

.country-detail-card .flag-detail {
  width: 36px;
  height: 27px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.15);
  object-fit: cover;
  display: block;
}
.country-detail-card h3 {
  font-size: 17px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
}
.country-detail-card p {
  font-size: 13px;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- ECOPACK · Hero visual (centered LIAM, no border) ---- */
.eco-hero-visual {
  margin: 40px auto 0;
  max-width: 340px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.eco-liam-hero {
  width: 240px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(124, 185, 40, 0.3));
  animation: eco-float 4s ease-in-out infinite;
}
@keyframes eco-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.eco-speech-bubble {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px 16px 4px 16px;
  padding: 14px 18px;
  max-width: 260px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
  margin-top: 20px;
}
.eco-speech-bubble strong {
  color: var(--eco-lime);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .eco-hero-visual { flex-direction: column; align-items: center; max-width: 280px; }
  .eco-liam-hero { width: 180px; }
  .eco-speech-bubble { max-width: 100%; margin-top: 0; }
}

/* ---- ECOPACK · Service area (polished cards instead of plain ZIPs) ---- */
.service-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) { .service-areas { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .service-areas { grid-template-columns: repeat(2, 1fr); } }

.area-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: all var(--ease);
  position: relative;
}
.area-chip::before {
  content: '📍';
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  filter: grayscale(0.2);
}
.area-chip:hover {
  border-color: var(--eco-lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 185, 40, 0.15);
}
.area-chip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.area-chip span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  font-family: 'SF Mono', Menlo, monospace;
}

/* ---- ECOPACK · Signup form ---- */
.ecopack-signup {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(124,185,40,0.04), rgba(163,230,53,0.06));
  border: 1px solid rgba(124,185,40,0.2);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
}
.ecopack-signup h3 {
  color: var(--eco-lime);
  font-size: 24px;
  margin-bottom: 8px;
}
.ecopack-signup .lead {
  margin-bottom: 24px;
  font-size: 14.5px;
}
.ecopack-signup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ecopack-signup .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) { .ecopack-signup .form-grid { grid-template-columns: 1fr; } }

.ecopack-signup .form-submit {
  background: var(--eco-lime) !important;
  box-shadow: 0 4px 12px rgba(124, 185, 40, 0.3);
  margin-top: 8px;
}
.ecopack-signup .form-submit:hover {
  background: #6ba121 !important;
  box-shadow: 0 8px 20px rgba(124, 185, 40, 0.4);
}
.ecopack-signup .success-box {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(124, 185, 40, 0.1);
  border-radius: 12px;
  color: var(--eco-lime);
}
.ecopack-signup .success-box.show { display: block; }
.ecopack-signup .success-box .icon {
  font-size: 42px;
  margin-bottom: 10px;
}

/* ---- CONTACT · Branded form redesign ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-channels h2 { margin-bottom: 8px; }
.contact-channels .lead { margin-bottom: 20px; font-size: 14.5px; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--ease);
  text-decoration: none;
  color: inherit;
}
.contact-channel:hover {
  border-color: var(--brand-teal);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.contact-channel .channel-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: var(--gradient-brand-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel .channel-body h3 {
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--text-primary);
}
.contact-channel .channel-body p {
  font-size: 13px;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.4;
}
.contact-channel .channel-body p strong {
  color: var(--brand-green);
}

/* Contact form card - branded, polished */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap .lead {
  font-size: 14.5px;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .contact-form .form-grid { grid-template-columns: 1fr; } }

.contact-form .form-field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.contact-form label .required {
  color: var(--brand-green);
  font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--bg-soft);
  color: var(--text-primary);
  transition: all var(--ease);
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-form .hidden-field { display: none; }

.contact-form .form-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.form-fine {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---- PRICING · Calculator dropdown styling ---- */
.calc-service-select {
  grid-column: 1 / -1;
  margin-bottom: 16px;
  padding: 14px 16px !important;
  border-width: 2px !important;
  font-weight: 600;
}
.calc-service-note {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 6px;
  border-left: 3px solid var(--brand-teal);
}

/* ---- BLOG · Logo render fix (replace broken img with branded link) ---- */
/* The blog uses its own styles; adding a fallback container for the logo */
.blog-brand-fix {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.blog-brand-fix svg { width: 28px; height: 28px; }

/* ---- Top bar: Client Portal link styling ---- */
.top-bar-right .portal-link {
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  color: var(--brand-green) !important;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  transition: all var(--ease);
}
.top-bar-right .portal-link:hover {
  background: var(--brand-green);
  color: white !important;
  border-color: var(--brand-green);
}

/* ---- Process steps shared style (FBA Prep, EcoPack, LATAM) ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--ease);
}
.process-step:hover {
  border-color: var(--brand-teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.process-step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.process-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ---- Thank you page ---- */
.thankyou-card {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.thankyou-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  animation: success-bounce 0.8s ease-out;
}
@keyframes success-bounce {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.thankyou-card h1 { margin-bottom: 12px; }
.thankyou-card .lead { margin-bottom: 32px; }
.thankyou-next-steps h3 {
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.thankyou-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.thankyou-explore {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.thankyou-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
}
.thankyou-links a {
  color: var(--brand-teal);
  font-weight: 600;
}
.thankyou-links a:hover { color: var(--brand-green); }

/* ---- 404 Page ---- */
.notfound-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.notfound-liam {
  width: 180px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  transform: rotate(-8deg);
  animation: wobble 3s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(124, 185, 40, 0.3));
}
@keyframes wobble {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(-4deg); }
}
.notfound-card h1 { margin-bottom: 12px; }
.notfound-card .lead { margin-bottom: 32px; }
.notfound-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.notfound-links {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.notfound-links > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
}
.notfound-links a {
  color: var(--brand-teal);
  font-weight: 600;
}
.notfound-links a:hover { color: var(--brand-green); }

/* ---- About story section ---- */
.about-story {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
.about-story p {
  margin-bottom: 18px;
  font-size: 16px;
}
.about-story p strong {
  color: var(--text-primary);
}

/* ---- Pricing table styles ---- */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: white;
}
.pricing-table thead th {
  background: var(--bg-dark);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-table thead th.price-cell { text-align: right; }
.pricing-table tbody td {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.pricing-table tbody td.price-cell {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-green);
  font-size: 15px;
}
.pricing-table tbody td.price-cell strong {
  font-size: 18px;
  color: var(--brand-green);
}
.pricing-table tr.tier-header td {
  background: var(--bg-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--brand-teal);
  padding: 12px 20px;
}
.pricing-table tbody tr:hover:not(.tier-header) td {
  background: rgba(20, 184, 166, 0.04);
}
.rate-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(20, 184, 166, 0.06);
  border-left: 3px solid var(--brand-teal);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text-primary);
}

/* ---- Contact hours grid ---- */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 32px auto 0;
}
@media (max-width: 700px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-align: center;
}
.hours-card h3 {
  font-size: 14px;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}
.hours-card p {
  font-size: 13.5px;
  margin-bottom: 10px;
}
.hours-card p strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
}
.map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}


/* ================================================================
   v2.3 · FINAL REFINEMENTS (2026-04-23)
   Unified form card style ('Ops Report' aesthetic)
   + fixes for LATAM flags, service areas, calculator
   ================================================================ */

/* ---- OVERRIDE: flag images (was breaking LATAM) ---- */
.country-detail-card img.flag-detail,
.country-detail-card .flag-detail {
  width: 48px !important;
  height: 36px !important;
  max-width: 48px !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15) !important;
  object-fit: cover !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* ---- LATAM · Country grid polished (3-col with proper structure) ---- */
.country-grid-detailed {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}
@media (max-width: 900px) {
  .country-grid-detailed { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .country-grid-detailed { grid-template-columns: 1fr !important; }
}

.country-detail-card {
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 22px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  transition: all var(--ease) !important;
  position: relative !important;
  overflow: hidden !important;
}
.country-detail-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: var(--gradient-brand) !important;
  opacity: 0 !important;
  transition: opacity 200ms ease !important;
}
.country-detail-card:hover {
  border-color: var(--brand-teal) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow) !important;
}
.country-detail-card:hover::before { opacity: 1 !important; }

.country-detail-card .country-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.country-detail-card h3 {
  font-size: 17px !important;
  margin: 0 !important;
  font-family: var(--font-display);
  color: var(--text-primary);
}
.country-detail-card p {
  font-size: 13px !important;
  margin: 0 !important;
  color: var(--text-secondary) !important;
  line-height: 1.55 !important;
}

/* ================================================================
   UNIFIED FORM CARD STYLE · applies to:
   - Contact quote form
   - EcoPack+ signup form
   - Pickup modal (Step 1 - Your Info)
   - Cost calculator wrapper
   ================================================================ */

.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}
.form-card.form-card-eco::before {
  background: linear-gradient(90deg, var(--eco-lime), var(--eco-lime-light));
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.form-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.form-card-icon.eco {
  background: linear-gradient(135deg, rgba(124,185,40,0.15), rgba(163,230,53,0.2));
}
.form-card-title h3 {
  font-size: 20px;
  margin: 0 0 4px;
  font-family: var(--font-display);
  color: var(--text-primary);
}
.form-card-title p {
  font-size: 13.5px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Fields grid */
.ff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ff-grid.single { grid-template-columns: 1fr; }
@media (max-width: 500px) { .ff-grid { grid-template-columns: 1fr; } }

.ff {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.ff-full { grid-column: 1 / -1; }
.ff-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ff-label .req { color: var(--brand-green); font-weight: 800; }

.ff-input,
.ff-select,
.ff-textarea {
  padding: 12px 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  font-size: 14.5px !important;
  font-family: inherit !important;
  background: var(--bg-soft) !important;
  color: var(--text-primary) !important;
  transition: all 180ms ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.ff-input:focus,
.ff-select:focus,
.ff-textarea:focus {
  outline: none !important;
  border-color: var(--brand-teal) !important;
  background: white !important;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1) !important;
}
.ff-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* EcoPack variant: lime focus ring */
.form-card-eco .ff-input:focus,
.form-card-eco .ff-select:focus,
.form-card-eco .ff-textarea:focus {
  border-color: var(--eco-lime) !important;
  box-shadow: 0 0 0 4px rgba(124, 185, 40, 0.15) !important;
}

.ff-submit {
  width: 100%;
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 8px;
  justify-content: center;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--gradient-brand) !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 180ms !important;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25) !important;
}
.ff-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(16, 185, 129, 0.32) !important; }
.form-card-eco .ff-submit {
  background: linear-gradient(135deg, var(--eco-lime), var(--eco-lime-light)) !important;
  box-shadow: 0 6px 16px rgba(124, 185, 40, 0.3) !important;
}

.ff-fine {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.4;
}

.ff-hidden { display: none; }

/* ================================================================
   CONTACT PAGE · override old form styles
   ================================================================ */
.contact-form-wrap,
.contact-form {
  /* use form-card pattern above */
}
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px !important;
  padding: clamp(28px, 4vw, 44px) !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08) !important;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  padding: 12px 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  font-size: 14.5px !important;
  font-family: inherit !important;
  background: var(--bg-soft) !important;
  color: var(--text-primary) !important;
  transition: all 180ms !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none !important;
  border-color: var(--brand-teal) !important;
  background: white !important;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1) !important;
}

/* ================================================================
   ECOPACK+ · Service Area fix (grid cards properly)
   ================================================================ */
.service-areas {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}
@media (max-width: 900px) { .service-areas { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 640px) { .service-areas { grid-template-columns: repeat(2, 1fr) !important; } }

.area-chip {
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 20px 16px !important;
  text-align: center !important;
  transition: all 200ms ease !important;
  position: relative !important;
  display: block !important;
}
.area-chip::before {
  content: '📍' !important;
  display: block !important;
  font-size: 24px !important;
  margin-bottom: 8px !important;
}
.area-chip:hover {
  border-color: var(--eco-lime) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(124, 185, 40, 0.15) !important;
}
.area-chip strong {
  display: block !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: var(--text-primary) !important;
  margin-bottom: 4px !important;
}
.area-chip span {
  display: block !important;
  font-size: 11px !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.04em !important;
  font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace !important;
}

/* ================================================================
   PRICING · Calculator as proper card
   ================================================================ */
.calculator {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 24px;
}
@media (max-width: 560px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-field label {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-muted);
  outline: none;
  cursor: pointer;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-teal);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
  transition: all 150ms;
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-teal);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
}
.calc-field select {
  padding: 11px 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  background: var(--bg-soft) !important;
  color: var(--text-primary) !important;
  cursor: pointer !important;
  transition: all 150ms !important;
}
.calc-field select:focus {
  outline: none !important;
  border-color: var(--brand-teal) !important;
  background: white !important;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1) !important;
}
.calc-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-teal);
  text-align: right;
}

.calc-service-select {
  grid-column: 1 / -1;
  padding: 13px 16px !important;
  border-width: 2px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

.calc-service-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-primary);
  padding: 12px 16px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--brand-teal);
  line-height: 1.5;
  margin-bottom: 8px;
}

.calc-addons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: var(--bg-soft);
  padding: 16px;
  border-radius: 12px;
}
@media (max-width: 560px) { .calc-addons { grid-template-columns: repeat(2, 1fr); } }
.calc-addons > label:first-child {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.calc-checkbox {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  cursor: pointer;
  transition: all 150ms;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.calc-checkbox:hover { border-color: var(--brand-teal); }
.calc-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-teal);
  cursor: pointer;
}
.calc-checkbox:has(input:checked) {
  background: rgba(20, 184, 166, 0.08);
  border-color: var(--brand-teal);
}

.calc-result {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-teal), var(--brand-cyan));
  color: white;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.25);
}
.calc-result-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.95;
  margin-bottom: 8px;
}
.calc-total {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  margin: 4px 0;
  letter-spacing: -0.02em;
}
.calc-fine {
  font-size: 12px;
  opacity: 0.92;
  margin-top: 8px;
}

/* ================================================================
   ABOUT · photo centering + SPN logo centered
   ================================================================ */
.about-photo-wrap {
  max-width: 300px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.about-photo {
  width: 240px !important;
  height: 240px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto 20px !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18), 0 0 0 6px rgba(20, 184, 166, 0.12) !important;
  border: 5px solid white !important;
}

.cert-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 36px 28px !important;
}
.cert-card .cert-logo {
  max-width: 150px !important;
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto 18px !important;
  display: block !important;
}
.cert-card .cert-icon {
  margin: 0 auto 18px !important;
  text-align: center !important;
}
.cert-card h3 { text-align: center !important; }
.cert-card p { text-align: center !important; }
.cert-card .service-link { margin: auto auto 0 !important; }


/* ================================================================
   v2.4 · POST-DEPLOY FIXES (2026-04-23)
   ================================================================ */

/* ---- ECOPACK+ Hero · LIAM bubble proper layout ---- */
.theme-ecopack .hero .hero-inner > div {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: clamp(24px, 4vw, 48px) !important;
  align-items: center !important;
}
@media (max-width: 900px) {
  .theme-ecopack .hero .hero-inner > div {
    grid-template-columns: 1fr !important;
  }
}

.eco-hero-visual {
  position: relative !important;
  max-width: 380px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 20px 0 !important;
}

.eco-liam-hero {
  width: 200px !important;
  height: auto !important;
  flex-shrink: 0 !important;
  display: block !important;
  filter: drop-shadow(0 16px 40px rgba(124, 185, 40, 0.35)) !important;
  animation: eco-float 4s ease-in-out infinite !important;
}

.eco-speech-bubble {
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px 18px 4px 18px !important;
  padding: 16px 20px !important;
  max-width: 200px !important;
  min-width: 180px !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: var(--text-primary) !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12) !important;
  position: relative !important;
  margin-top: 40px !important;
  flex-shrink: 0 !important;
  z-index: 2 !important;
}

.eco-speech-bubble strong {
  color: var(--eco-lime) !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  display: block !important;
  margin-bottom: 6px !important;
  white-space: normal !important;
}

/* Speech bubble tail pointing to LIAM */
.eco-speech-bubble::before {
  content: '' !important;
  position: absolute !important;
  left: -10px !important;
  top: 24px !important;
  width: 0 !important;
  height: 0 !important;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 12px solid white !important;
  filter: drop-shadow(-2px 1px 2px rgba(0,0,0,0.04)) !important;
}

@media (max-width: 640px) {
  .eco-hero-visual {
    flex-direction: column !important;
    max-width: 280px !important;
    gap: 16px !important;
    align-items: center !important;
  }
  .eco-liam-hero { width: 180px !important; }
  .eco-speech-bubble {
    max-width: 100% !important;
    min-width: auto !important;
    margin-top: 0 !important;
    border-radius: 18px 18px 18px 4px !important;
  }
  .eco-speech-bubble::before {
    left: 50% !important;
    top: -10px !important;
    transform: translateX(-50%) !important;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 12px solid white !important;
    border-top: none !important;
  }
}

/* ---- LATAM CROSS-DOCK · Fix text visibility in dark section ---- */
.latam-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
  color: white !important;
}
.latam-section .section-header h2 {
  color: white !important;
}
.latam-section .section-header .lead {
  color: rgba(248, 250, 252, 0.75) !important;
}
.latam-section .eyebrow {
  color: #5EEAD4 !important;  /* bright teal for dark bg */
}

/* Cross-dock process steps on dark background */
.latam-section .process-steps {
  margin-top: 32px;
}
.latam-section .process-step {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(94, 234, 212, 0.18) !important;
  backdrop-filter: blur(6px) !important;
}
.latam-section .process-step:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #5EEAD4 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 28px rgba(94, 234, 212, 0.2) !important;
}
.latam-section .process-step h3 {
  color: white !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}
.latam-section .process-step p {
  color: rgba(248, 250, 252, 0.78) !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}
.latam-section .process-step .step-num {
  background: linear-gradient(135deg, #10B981, #14B8A6) !important;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
  color: white !important;
}


/* ================================================================
   v2.5 · LANGUAGE SWITCHER (2026-04-23)
   EN/ES toggle in top-bar
   ================================================================ */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.lang-switcher .lang-opt {
  color: var(--text-muted);
  text-decoration: none;
  padding: 2px 4px;
  transition: color 150ms;
  cursor: pointer;
}
.lang-switcher a.lang-opt:hover { color: var(--brand-teal); }
.lang-switcher .lang-opt.active {
  color: var(--brand-teal);
  font-weight: 800;
  cursor: default;
}
.lang-switcher .lang-divider {
  color: var(--text-muted);
  opacity: 0.5;
  user-select: none;
}

/* Hide on very small screens */
@media (max-width: 480px) {
  .lang-switcher { display: none; }
}


/* ================================================================
   LANGUAGE SUGGESTION BANNER
   Shown once to ES-browser users on first visit to EN pages
   ================================================================ */
.lang-suggest-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.18);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}
.lang-suggest-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-suggest-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 14px 14px 0 0;
}
.lang-suggest-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-primary);
  flex-wrap: wrap;
}
.lang-suggest-inner > span {
  flex: 1;
  min-width: 180px;
  font-weight: 500;
}
.lang-suggest-btn {
  background: var(--gradient-brand);
  color: white !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms;
  white-space: nowrap;
}
.lang-suggest-btn:hover { transform: translateY(-1px); }
.lang-suggest-close {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: all 150ms;
  flex-shrink: 0;
}
.lang-suggest-close:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
}
@media (max-width: 520px) {
  .lang-suggest-banner { left: 12px; right: 12px; bottom: 12px; }
  .lang-suggest-inner { padding: 12px 14px; font-size: 13px; }
}


/* ================================================================
   v2.6 · Language switcher FLAG IMAGES (2026-04-23)
   Replaces emoji flags (don't render on Windows) with flagcdn SVGs
   ================================================================ */
.lang-switcher .lang-opt {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}
.lang-flag {
  width: 16px !important;
  height: 12px !important;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
  object-fit: cover;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}


/* ================================================================
   v2.7 · REAL LOGO (2026-04-23)
   Replaces the SVG chevron placeholder with the actual logo image
   ================================================================ */

/* Desktop nav + mobile menu header — logo on white background */
.nav-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  transition: opacity 150ms;
}
.nav-brand:hover { opacity: 0.85; }
.nav-brand-icon {
  height: 34px !important;
  width: auto !important;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Footer logo — dark navy background, needs white-safe rendering */
.site-footer .nav-brand-text {
  color: white !important;
}
.site-footer .nav-brand-icon {
  /* Logo already has good contrast against dark bg because of the bright gradient */
  height: 40px !important;
  filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.25));
}

/* Mobile menu header */
.mobile-menu-header .nav-brand-icon {
  height: 32px !important;
}

/* Scale down icon on narrow screens */
@media (max-width: 640px) {
  .nav-brand-icon { height: 30px !important; }
  .nav-brand-text { font-size: 16px; }
}
