/* ============================================================
   SWIFTSKY LLP — Global Medical Equipment Exports
   Design System v1.0
   Inspired by Apple India motion + Adveerra physics aesthetics
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Playfair+Display:wght@400;700&family=Archivo+Black&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:       #1F4E79;
  --navy-dark:  #163a5a;
  --header-bg:  #16273A;   /* matches the SWIFTSKY logo's dark background */
  --header-h:   100px;     /* header bar height (kept in sync with offsets) */
  --sky:        #5B9BD5;
  --sky-light:  #DCE6F1;
  --green-soft: #E2EFDA;
  --yellow:     #FFF2CC;
  --yellow-dark:#F5C518;
  --red:        #C00000;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --text-dark:  #0D1B2A;
  --text-mid:   #3D5A73;
  --text-light: #7A9AB5;

  --font-body:  'DM Sans', system-ui, sans-serif;
  --font-accent:'Playfair Display', Georgia, serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --shadow-sm:  0 2px 8px rgba(31,78,121,0.08);
  --shadow-md:  0 8px 32px rgba(31,78,121,0.14);
  --shadow-lg:  0 24px 64px rgba(31,78,121,0.20);

  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; color: var(--text-mid); }

.serif { font-family: var(--font-accent); font-style: italic; }
.text-navy   { color: var(--navy); }
.text-sky    { color: var(--sky); }
.text-white  { color: var(--white); }
.text-mid    { color: var(--text-mid); }

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 4rem); }
.section { padding: clamp(4rem, 8vw, 9rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 4rem) 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer; transition: all 0.28s var(--ease-spring);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  box-shadow: 0 4px 12px rgba(31,78,121,0.18);
  animation: btn-pulse 2.6s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 6px 18px rgba(31,78,121,0.26);
  transform: translateY(-2px) scale(1.03);
  animation: none;
}
@keyframes btn-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) { .btn-primary { animation: none; } }

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

/* Arrow icon on btn */
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-spring);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---- HEADER ---- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--sky-light);
  box-shadow: 0 2px 18px rgba(31,78,121,0.08);
  transition: height 0.3s var(--ease-smooth);
}
#header.scrolled { height: 90px; box-shadow: 0 4px 24px rgba(31,78,121,0.14); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 4rem);
}

.logo {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--white); font-weight: 700; font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 84px; height: 84px;
  flex-shrink: 0; display: block;
  filter: drop-shadow(0 4px 9px rgba(31,78,121,0.22));
  transition: filter 0.3s ease;
}
.logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: transform 0.3s var(--ease-spring);
}
.logo:hover .logo-img { transform: scale(1.06) rotate(-2deg); }
.logo:hover .logo-mark { filter: drop-shadow(0 6px 14px rgba(31,78,121,0.3)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; margin-left: -1.2rem; }
.logo-text span { font-family: 'Archivo Black', var(--font-body); font-size: 1.4rem; font-weight: 900; color: var(--navy); letter-spacing: 0.02em; text-transform: uppercase; }

nav.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: var(--navy);
  font-size: 0.9rem; font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--sky);
  transition: left 0.25s var(--ease-spring), right 0.25s var(--ease-spring);
}
.nav-link:hover { color: var(--sky); }
.nav-link:hover::after { left: 0.85rem; right: 0.85rem; }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }

/* WhatsApp btn */
.btn-whatsapp {
  display: none;
  align-items: center; gap: 0.5rem;
  background: #25D366; color: white;
  border-radius: var(--radius-xl); padding: 0.5rem 1rem;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.25s var(--ease-spring);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: transparent; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-spring);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .nav-link {
  color: rgba(255,255,255,0.92);
  font-size: 1.25rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-drawer .nav-link:hover { color: var(--yellow-dark); }
.mobile-drawer .nav-link::after { display: none; }
.mobile-drawer .mobile-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #2a6096 45%, var(--sky) 100%);
  display: flex; align-items: center;
  padding-top: var(--header-h);
  position: relative; overflow: hidden;
}

/* Physics particle canvas */
#hero-canvas {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
}

/* Geometric floating shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  animation: float-shape linear infinite;
}
.shape-1 { width: 600px; height: 600px; background: var(--sky); top: -200px; right: -100px; animation-duration: 18s; }
.shape-2 { width: 300px; height: 300px; background: var(--yellow); bottom: -50px; left: 10%; animation-duration: 14s; animation-direction: reverse; }
.shape-3 { width: 180px; height: 180px; background: white; top: 30%; left: 60%; animation-duration: 10s; }

@keyframes float-shape {
  0%   { transform: translate(0,0) rotate(0deg); }
  33%  { transform: translate(20px,-30px) rotate(120deg); }
  66%  { transform: translate(-20px,20px) rotate(240deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

/* Animated logistics scene (truck → port → ship) behind the hero */
.hero-logistics {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  pointer-events: none; opacity: 0.13; line-height: 0;
}
.hero-logistics svg { width: 100%; height: auto; display: block; }
.hero-truck { animation: hero-truck-drive 14s linear infinite; }
.hero-crane-load { animation: hero-crane-bob 4.5s ease-in-out infinite; }
@keyframes hero-truck-drive {
  0%   { transform: translateX(-280px); opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(1040px); opacity: 0; }
}
@keyframes hero-crane-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-22px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-truck, .hero-crane-load { animation: none; }
}

/* ---- Per-page hero scenes (sit behind page-hero content) ---- */
.page-hero .hero-logistics { z-index: 0; }

/* Products — cartons marching on a conveyor */
.pf-boxes { animation: pf-march 6s linear infinite; }
@keyframes pf-march { from { transform: translateX(0); } to { transform: translateX(300px); } }

/* Markets — rotating globe revealing markets with red pins */
.mk-scene { opacity: 0.55; }
.mk-meridian { transform-box: fill-box; transform-origin: center; animation: mk-rot 4s linear infinite; }
@keyframes mk-rot { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(0.05); } }
.mk-pin { opacity: 0; transform-box: fill-box; transform-origin: 50% 100%; animation: mk-pin-pop 6s ease-in-out infinite; }
@keyframes mk-pin-pop {
  0% { opacity: 0; transform: translateY(8px) scale(0.5); }
  12% { opacity: 1; transform: translateY(0) scale(1); }
  70% { opacity: 1; transform: translateY(0) scale(1); }
  86%, 100% { opacity: 0; transform: translateY(8px) scale(0.5); }
}

/* Quality — checkmark drawing itself */
.ql-check { stroke-dasharray: 220; stroke-dashoffset: 220; animation: ql-draw 4.5s ease-in-out infinite; }
@keyframes ql-draw { 0% { stroke-dashoffset: 220; } 45% { stroke-dashoffset: 0; } 80% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -220; } }

/* Pricing — balance scale */
.pr-beam { transform-box: view-box; transform-origin: 800px 70px; animation: pr-balance 5s ease-in-out infinite; }
@keyframes pr-balance { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

/* Resources — page gently floating */
.rs-page { transform-box: view-box; transform-origin: 835px 100px; animation: rs-float 5s ease-in-out infinite; }
@keyframes rs-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }

/* Contact — paper plane flying along a path */
.ct-plane { offset-path: path("M80 160 Q500 40 1000 120 T1520 60"); offset-rotate: auto; animation: ct-fly 8.5s ease-in-out infinite; }
@keyframes ct-fly { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .pf-boxes, .mk-meridian, .mk-pin, .ql-check, .pr-beam, .rs-page, .ct-plane { animation: none; }
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.18);
  animation: fade-up 0.8s var(--ease-out) 0.1s both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s var(--ease-out) 0.25s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--yellow), #ffc800);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline; font-family: var(--font-accent); font-style: italic;
}

.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem; max-width: 580px;
  animation: fade-up 0.8s var(--ease-out) 0.4s both;
}

.hero-btns {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out) 0.55s both;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out) 0.7s both;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.65); font-size: 0.875rem;
}
.hero-meta-item svg { width: 16px; height: 16px; opacity: 0.7; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: fade-up 1s var(--ease-out) 1.2s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5) translateY(12px); opacity: 1; }
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--sky-light);
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(91,155,213,0.2);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.75rem 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.04em; font-family: var(--font-body);
}
.trust-item svg { width: 14px; height: 14px; color: var(--sky); }
.trust-divider { color: var(--sky); opacity: 0.4; }

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--sky);
}

/* ---- VALUE PROP ---- */
.value-prop {
  background: var(--white);
}
.value-prop-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.value-big-number {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; letter-spacing: -0.04em;
  font-family: var(--font-accent);
}
.value-save { display: flex; flex-direction: column; align-items: center; }
.value-save-art {
  width: 100%; max-width: 380px; height: auto; display: block;
  filter: drop-shadow(0 18px 36px rgba(31,78,121,0.16));
}
.value-fee-tile {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; max-width: 380px;
  background: var(--white);
  border: 1.5px solid var(--sky-light);
  border-left: 5px solid #3da845;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.4rem; margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.value-fee-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
}
.value-fee-tile strong { display: block; font-size: 1.12rem; color: var(--navy); line-height: 1.2; }
.value-fee-tile span { font-size: 0.85rem; color: var(--text-mid); }
.value-prop-text p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.includes-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin: 1.5rem 0;
}
.includes-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text-mid);
}
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--green-soft);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.zero-markup-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: white; padding: 1rem 1.5rem;
  border-radius: var(--radius-md); margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}
.zero-markup-badge strong { font-size: 1.4rem; font-weight: 800; }
.zero-markup-badge span { font-size: 0.85rem; opacity: 0.85; max-width: 200px; line-height: 1.3; }

/* ---- PRODUCTS GRID ---- */
.products-section { background: var(--off-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  cursor: pointer; position: relative;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.product-card-img .product-emoji { font-size: 3.5rem; transition: transform 0.4s var(--ease-spring); }
.product-hero-img {
  width: 112px; height: 112px; flex-shrink: 0;
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; line-height: 1;
}
.product-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card:hover .product-emoji { transform: scale(1.15) rotate(-5deg); }
.product-card-body { padding: 1.25rem; }
.product-card h4 { margin-bottom: 0.25rem; font-size: 1rem; color: var(--navy); }
.product-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.4; }
.product-card-link {
  font-size: 0.82rem; font-weight: 600; color: var(--sky);
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.25s var(--ease-spring);
}
.product-card:hover .product-card-link { gap: 0.6rem; }

/* ---- HOW WE WORK ---- */
.process-section { background: var(--white); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 3rem; position: relative;
}
.process-line {
  position: absolute; top: 2rem; left: calc(10% + 20px);
  right: calc(10% + 20px); height: 2px;
  background: linear-gradient(90deg, var(--sky-light), var(--sky), var(--sky-light));
}
.process-step {
  flex: 1; text-align: center; padding: 0 0.75rem;
  position: relative;
}
.step-number {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: white; font-weight: 700; font-size: 1rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(91,155,213,0.4);
  position: relative; z-index: 1;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.process-step:hover .step-number {
  transform: scale(1.2) translateY(-4px);
  box-shadow: 0 8px 24px rgba(91,155,213,0.6);
}
.step-label { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem; }
.step-detail { font-size: 0.82rem; color: var(--text-light); }

/* ---- CERTIFICATIONS ---- */
.certs-section { background: var(--sky-light); }
.certs-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin: 2rem 0;
}
.cert-badge {
  width: 132px;
  background: var(--white);
  border: 2px solid rgba(91,155,213,0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s var(--ease-spring);
  cursor: default;
}
.cert-badge:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cert-badge .cert-icon {
  font-size: 1.8rem; margin-bottom: 0.5rem;
  min-height: 48px; display: flex; align-items: center; justify-content: center;
}
.cert-badge .cert-icon img { width: 48px; height: 48px; object-fit: contain; }
.cert-badge .cert-icon .cert-seal { width: 46px; height: 46px; }
.cert-badge .cert-name { font-size: 0.8rem; font-weight: 700; color: var(--navy); }

/* ---- MARKETS ---- */
.markets-section { background: var(--white); }
.markets-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.market-tier {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.market-tier h4 { color: var(--navy); margin-bottom: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.market-tier-label {
  display: inline-block;
  background: var(--sky-light);
  color: var(--navy);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.country-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.country-tag {
  background: var(--white);
  border: 1px solid rgba(91,155,213,0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 20px; font-size: 0.82rem; color: var(--text-mid);
  transition: all 0.2s ease;
}
.country-tag:hover, .country-tag a:hover {
  background: var(--navy); color: white; border-color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(31,78,121,0.28);
}
.country-tag a { color: inherit; }

/* Country flag images */
.flag-label { display: inline-flex; align-items: center; gap: 0.5rem; }
.flag { width: 26px; height: 18px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); flex-shrink: 0; display: inline-block; }
.flag-hero { width: 76px; height: 52px; object-fit: cover; border-radius: 5px; box-shadow: var(--shadow-sm); display: inline-block; }

/* Homepage market tiles — 4-corner liquid gradient + hover highlight */
.markets-section .market-tier {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--sky-light);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring);
}
.markets-section .market-tier::before {
  content: ''; position: absolute; inset: -35%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(91,155,213,0.55), transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(245,197,24,0.42), transparent 42%),
    radial-gradient(circle at 80% 82%, rgba(31,78,121,0.45), transparent 44%),
    radial-gradient(circle at 20% 80%, rgba(42,122,53,0.40), transparent 44%);
  filter: blur(30px);
  opacity: 0.4;
  animation: tier-liquid 16s ease-in-out infinite alternate;
}
.markets-section .market-tier > * { position: relative; z-index: 1; }
.markets-section .market-tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.markets-section .market-tier:hover::before { opacity: 0.7; animation-duration: 8s; }
@keyframes tier-liquid {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  33%  { transform: translate(2%,-2%) rotate(7deg) scale(1.12); }
  66%  { transform: translate(-2%,1%) rotate(-5deg) scale(1.08); }
  100% { transform: translate(1%,2%) rotate(4deg) scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .markets-section .market-tier::before { animation: none; }
}

/* ---- TEAM ---- */
.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-spring);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1rem;
  border: 3px solid white; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.team-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { color: var(--navy); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.82rem; color: var(--sky); font-weight: 600; margin-bottom: 0.75rem; }
.team-card .bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.photo-placeholder {
  background: var(--sky-light); border: 2px dashed var(--sky);
  color: var(--sky); font-size: 0.75rem; padding: 0.4rem 0.75rem;
  border-radius: 20px; margin-top: 0.75rem; display: inline-block;
}
.team-email {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.9rem; font-size: 0.82rem; font-weight: 600;
  color: var(--navy); text-decoration: none;
  padding: 0.4rem 0.85rem; border-radius: 20px;
  background: var(--sky-light); transition: all 0.25s var(--ease-spring);
}
.team-email:hover { background: var(--sky); color: var(--white); transform: translateY(-2px); }
.team-email svg { width: 14px; height: 14px; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5f8f 100%);
  padding: clamp(2.75rem, 4.5vw, 4.5rem) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,155,213,0.2), transparent 70%);
}
.cta-band-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-band-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-band-meta {
  margin-top: 2rem;
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; margin-top: 1rem; line-height: 1.8; max-width: 320px; color: rgba(255,255,255,0.72); }
.footer-brand .logo-mark { width: 84px; height: 84px; }
.footer-brand .logo-text span { color: #fff; font-size: 1.45rem; font-weight: 800; }
.footer-contact-item a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--yellow-dark); text-decoration: underline; }
.footer-heading {
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; margin-bottom: 0.6rem; color: rgba(255,255,255,0.65);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem;
}
.footer-statutory {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ---- Universal tile hover: highlight + slight pop ---- */
.product-card, .team-card, .cert-badge, .blog-card, .process-card,
.lead-card, .market-tier, .value-fee-tile,
[style*="var(--shadow-sm)"] {
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring), border-color 0.3s ease;
}
.product-card:hover, .team-card:hover, .cert-badge:hover, .blog-card:hover,
.process-card:hover, .lead-card:hover, .market-tier:hover, .value-fee-tile:hover,
[style*="var(--shadow-sm)"]:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--sky);
}
/* Hover on the inner content of the contact panel (not the whole panel) */
.contact-info-item a { transition: color 0.2s ease; }
.contact-info-item a:hover { color: var(--sky) !important; text-decoration: underline; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s;    opacity:1; transform:none; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s;  opacity:1; transform:none; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s;  opacity:1; transform:none; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s;  opacity:1; transform:none; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s;  opacity:1; transform:none; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s;  opacity:1; transform:none; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.6s;  opacity:1; transform:none; }

/* ---- KEYFRAMES ---- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--navy);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-mobile-cta .btn { flex: 1; justify-content: center; }

/* ---- INNER PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--sky));
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(3.5rem, 5vw, 5rem);
  margin-top: var(--header-h);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 600px; margin-top: 1rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.82rem;
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---- SPEC TABLE ---- */
.spec-table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  font-size: 0.9rem;
}
.spec-table th, .spec-table td {
  padding: 0.85rem 1rem;
  text-align: left; border-bottom: 1px solid var(--sky-light);
}
.spec-table th {
  background: var(--sky-light); color: var(--navy);
  font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.spec-table td { color: var(--text-mid); }
.spec-table tr:last-child td { border-bottom: none; }

/* ---- PRICING PAGE ---- */
.pricing-hero-number {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800; line-height: 1;
  color: var(--yellow);
  text-shadow: 0 4px 40px rgba(245,197,24,0.4);
}
.comparison-table-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.comparison-table {
  width: 100%; border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 1rem 1.5rem; text-align: left;
  border-bottom: 1px solid var(--sky-light);
}
.comparison-table th { background: var(--navy); color: white; font-size: 0.9rem; }
.comparison-table th:first-child { background: var(--navy-dark); }
.comparison-table td:first-child { font-weight: 600; color: var(--navy); background: var(--off-white); }
.comparison-table .bad { color: var(--red); font-weight: 600; }
.comparison-table .good { color: #2a7a35; font-weight: 600; }
.zero-badge {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, #2a7a35, #3da845);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- CONTACT FORM ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h4 { color: var(--navy); margin-bottom: 0.75rem; }
.contact-info-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--text-mid);
}
.form-card {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--sky-light);
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--sky) 55%, var(--yellow-dark));
}
.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.45rem; letter-spacing: 0.01em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--sky-light);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(91,155,213,0.15);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Product interest chips */
.product-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.55rem; }
.product-chip { position: relative; cursor: pointer; display: block; }
.product-chip input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.product-chip span {
  display: block; text-align: center;
  padding: 0.65rem 0.6rem; font-size: 0.83rem; font-weight: 500;
  color: var(--text-mid); background: var(--off-white);
  border: 1.5px solid var(--sky-light); border-radius: 10px;
  transition: all 0.2s var(--ease-smooth); user-select: none;
}
.product-chip:hover span { border-color: var(--sky); color: var(--navy); }
.product-chip input:checked + span {
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.product-chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(91,155,213,0.25); }

/* WhatsApp submit button */
.btn-whatsapp-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; padding: 1rem; margin-top: 0.25rem;
  font-size: 1rem; font-weight: 700; font-family: var(--font-body);
  color: #fff; background: linear-gradient(135deg, #25D366, #1ebe5b);
  border: none; border-radius: 12px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.btn-whatsapp-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,0.45); }
.btn-whatsapp-submit:active { transform: translateY(0); }
.btn-whatsapp-submit:disabled { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }
.form-error {
  color: var(--red, #C00000);
  background: #fdecea;
  border: 1px solid rgba(192,0,0,0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.form-error[hidden] { display: none; }

/* ---- LOGISTICS BAND ---- */
.logistics-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 55%, var(--sky));
  color: #fff; padding: 5.5rem 0; overflow: hidden;
}
.logistics-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center;
}
.logistics-copy .section-label { color: rgba(255,255,255,0.8); }
.logistics-copy .section-label::before { background: var(--yellow-dark); }
.logistics-copy h2 { color: #fff; }
.logistics-copy p { color: rgba(255,255,255,0.82); margin-top: 1rem; max-width: 460px; }
.logistics-stats { display: flex; gap: 2.25rem; margin-top: 2rem; flex-wrap: wrap; }
.logistics-stats strong { display: block; font-size: 1.25rem; color: var(--yellow-dark); line-height: 1.2; }
.logistics-stats span { font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.logistics-art { position: relative; }
.logistics-art svg {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.32));
}
@media (max-width: 860px) {
  .logistics-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .logistics-art { order: -1; max-width: 460px; margin: 0 auto; }
}

/* Container illustration accent (contact page) */
.exporter-strip { width: 100%; height: auto; display: block; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }

/* ---- ABOUT ---- */
.statutory-block {
  background: var(--sky-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem; letter-spacing: 0.01em; color: var(--navy);
}
.statutory-block .id-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(91,155,213,0.2);
}
.statutory-block .id-row:last-child { border-bottom: none; }
.statutory-block .id-key { font-weight: 700; min-width: 80px; color: var(--sky); }

/* ---- QUALITY PAGE ---- */
.process-expanded {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin: 2rem 0;
}
.process-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-spring);
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-num {
  font-size: 2.5rem; font-weight: 800; color: var(--sky-light);
  font-family: var(--font-accent); line-height: 1;
  margin-bottom: 0.75rem;
}
.process-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.process-card p { font-size: 0.85rem; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-spring);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: var(--sky-light); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; margin-bottom: 1rem; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); }

/* Lead magnet cards */
.lead-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin: 2rem 0; }
.lead-card {
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: var(--radius-md); padding: 2rem;
  color: white; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-spring);
}
.lead-card:hover { transform: translateY(-4px); }
.lead-card::after {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.lead-card h4 { color: white; margin-bottom: 0.75rem; }
.lead-card p { font-size: 0.875rem; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .value-prop-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-expanded { grid-template-columns: repeat(3, 1fr); }
  .markets-tiers { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav.main-nav, .header-cta .btn-primary, .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }

  /* Pull hero content up under the header on mobile (minimal top gap) */
  .hero { min-height: auto; align-items: flex-start; padding-top: calc(var(--header-h) + 1.25rem); padding-bottom: 3rem; }
  .mobile-drawer { display: flex; }
  .btn-whatsapp { display: none; }
  .hero-btns .btn-primary { display: none; }
  .cta-band-btns { display: none; }
  :root { --header-h: 68px; }
  #header.scrolled { height: 68px; }
  .header-cta { display: none; }
  .logo-mark { width: 56px; height: 56px; }
  .logo-text { margin-left: -0.5rem; }
  .logo-text span { font-size: 1.1rem; white-space: nowrap; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .process-steps {
    flex-direction: column; align-items: stretch; gap: 0;
    max-width: 360px; margin-left: auto; margin-right: auto;
  }
  .process-line {
    display: block; top: 30px; bottom: 30px; left: 21px; right: auto;
    width: 2px; height: auto;
    background: linear-gradient(180deg, var(--sky-light), var(--sky), var(--sky-light));
  }
  .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.1rem; text-align: left; padding: 0.85rem 0;
  }
  .step-number { grid-area: 1 / 1 / 3 / 2; align-self: center; margin: 0; }
  .step-label  { grid-area: 1 / 2 / 2 / 3; align-self: end; }
  .step-detail { grid-area: 2 / 2 / 3 / 3; align-self: start; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-expanded { grid-template-columns: 1fr 1fr; }
  .sticky-mobile-cta { display: flex; }

  body { padding-bottom: 72px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Collapse inline-styled multi-column grids used on the market & about pages */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Keep wide regulatory tables readable */
  .spec-table th, .spec-table td { padding: 0.6rem 0.7rem; font-size: 0.82rem; }
  .logistics-stats { gap: 1.5rem; }
  .value-prop-inner { gap: 2.5rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 0.75rem 1.25rem; }
  .process-expanded { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { font-size: 0.8rem; padding: 0.6rem 0.8rem; }
  .includes-list { grid-template-columns: 1fr; }
  .product-chips { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .cta-band-btns { flex-direction: column; align-items: stretch; }
  .cta-band-btns .btn { width: 100%; justify-content: center; }
}
