/* ============================================================
   buildecomstore — WhatsApp Commerce Platform
   Design tokens
   ============================================================ */
:root{
  --coral: #FF6F5C;
  --coral-dark: #E8543F;
  --coral-tint: #FFF1ED;
  --coral-tint-2: #FFE4DD;
  --ink: #15130F;
  --ink-soft: #4A463F;
  --paper: #FFFCFA;
  /* --panel: #FFF6F3; */
  --panel: #25d3661c;
  --line: #ECE3DD;
  --wa-green: #25D366;
  --wa-green-dark: #1DA851;
  --wa-deep: #075E54;
  --forest: #0E3B2E;
  --section-color: #25d3662e;
  --border-outcome: #307941;

  --display: 'Poppins', 'Segoe UI', sans-serif;
  --body: 'Inter', 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 45px -25px rgba(21,19,15,0.35);
  --shadow-card: 0 12px 30px -18px rgba(21,19,15,0.25);
  --maxw: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html, body {
  overflow-x: clip;
  width: 100%;
}
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Thin Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: rgba(21, 19, 15, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(21, 19, 15, 0.4); }
::-webkit-scrollbar-button,
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
html { scrollbar-width: thin; scrollbar-color: rgba(21, 19, 15, 0.2) var(--paper); }

.crumb {

  color: var(--coral-dark) !important;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--display); margin:0; line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
.container{ max-width: var(--maxw); margin:0 auto; padding:0 24px; }
.text-highlight {
  border: 2px solid var(--coral);
  border-radius: 8px;
  padding: 2px 10px;
  color: var(--coral-dark);
  display: inline-block;
}


@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline: 3px solid var(--coral-dark); outline-offset: 3px; border-radius: 4px; }

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-dark); font-weight: 600; margin-bottom: 16px;
}
.eyebrow::before{ content:""; width:7px; height:7px; border-radius:50%; background: var(--wa-green); box-shadow: 0 0 0 4px rgba(37,211,102,0.18); }

/* ============================================================
   NAV
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,252,250,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px; max-width: var(--maxw); margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 50px; width:auto; max-width: 100%; object-fit: contain; }
.nav-links{ display:flex; align-items:center; gap: 30px; }
.nav-links a{
  font-size: 15px; font-weight:600; color: var(--ink-soft);
  position:relative; padding: 6px 0;
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--ink); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--coral);
  border-radius: 2px;
}
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none; background:none; border:none; padding:8px; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:24px; height:2px; background: var(--ink); border-radius:2px; }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 199;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(232, 84, 63, 0.55);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--coral-dark);
  box-shadow: 0 12px 28px -6px rgba(198, 58, 38, 0.6);
  transform: translateY(-3px);
}
.back-to-top:active {
  transform: translateY(0);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight: 700; font-size: 15.5px; font-family: var(--body);
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn svg{ flex-shrink:0; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-primary{ background: var(--ink); color: var(--paper); }
.btn-primary:hover{ background: #2b271f; }

.btn-coral{ background: var(--coral); color: #fff; box-shadow: var(--shadow-card); }
.btn-coral:hover{ background: var(--coral-dark); }

.btn-whatsapp{
  background: var(--wa-green); color: #fff;
  box-shadow: 0 14px 28px -14px rgba(37,211,102,0.65);
}
.btn-whatsapp:hover{ background: var(--wa-green-dark); }

.btn-outline{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover{ border-color: var(--ink); }

.btn-sm{ padding: 9px 18px; font-size: 14px; }
.btn-block{ width:100%; }

.btn-row{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* whatsapp pulse dot inside icon buttons */
.wa-icon{ width:20px; height:20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background: var(--forest);
  color: var(--paper);
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero .container{
  display:grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items:center;
}
.hero h1{
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
}
.hero h1 .hl{ 
  background: white;
  color: var(--coral);
  padding: 0 12px 6px 12px;
  border-radius: 12px;
  display: inline-block;
  line-height: 1;
}
.hero p.lead{
  margin-top: 20px; font-size: 18px; color: rgba(255,255,255,0.85); max-width: 52ch;
}
.hero .btn-row{ margin-top: 30px; }
.hero .btn-outline{ color: #fff; border-color: rgba(255,255,255,0.3); }
.hero .btn-outline:hover{ background: rgba(255,255,255,0.1); border-color: #fff; }
.trust-strip{
  margin-top: 34px; display:flex; flex-wrap:wrap; gap: 22px; align-items:center;
  font-size: 13.5px; color: rgba(255,255,255,0.7); font-weight: 600;
}
.trust-strip span{ display:inline-flex; align-items:center; gap:7px; }
.trust-strip svg{ flex-shrink:0; color: var(--wa-green); }

/* ---- phone mockup (signature element) ---- */
.phone-wrap{ position:relative; display:flex; justify-content:center; }
.phone{
  width: 100%; max-width: 300px;
  background: #fff;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone::before{
  content:""; position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width: 120px; height:22px; background: #fff; border-radius: 0 0 16px 16px; z-index:3;
}
.phone-screen{
  background: #0E1712;
  border-radius: 28px; overflow:hidden; min-height: 560px; height: 560px;
  display:flex; flex-direction:column;
  position: relative;
}
.phone-topbar{
  background: #12271E; color:#fff; padding: 30px 16px 12px;
  display:flex; align-items:center; gap:10px;
}
.phone-avatar{
  width:34px; height:34px; border-radius:50%; background: var(--coral);
  display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:700; font-size:14px;
}
.phone-topbar .who{ font-size: 13.5px; }
.phone-topbar .who b{ display:block; font-size:14px; }
.phone-topbar .who small{ opacity:0.75; font-size:11px; }
.chat-area{ flex:1; padding: 14px 12px; display:flex; flex-direction:column; gap:9px; overflow:hidden; }
.bubble{
  max-width: 82%; padding: 9px 12px; border-radius: 14px; font-size: 13px;
  opacity:0; transform: translateY(6px); animation: bubbleIn .45s ease forwards;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}
.bubble.in{ background:#1B2C24; color: #E8EFE9; align-self:flex-start; border-bottom-left-radius:4px; }
.bubble.out{ background:var(--wa-green-dark); color: #fff; align-self:flex-end; border-bottom-right-radius:4px; }
.bubble .tick{ font-size:10px; color:#9FE3B8; margin-top:3px; display:block; text-align:right; font-family:var(--mono); }
@keyframes bubbleIn{ to{ opacity:1; transform: translateY(0); } }
.phone-input{
  background:#152019; margin:10px 10px 12px; border-radius: 999px; padding: 9px 14px;
  font-size: 12px; color: #9a958d; display:flex; align-items:center; justify-content:space-between;
  border: 1px solid #223229;
}

/* decorative blob */
.hero-blob{
  position:absolute; width: 520px; height:520px; border-radius:50%;
  background: radial-gradient(circle, var(--coral-tint) 0%, transparent 70%);
  top:-180px; right:-160px; z-index:-1;
  pointer-events: none;
}

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section{ padding: 80px 0; }
.section.tight{ padding: 60px 0; }
.section-alt{ background: var(--panel); }
.section-ink{ background: var(--ink); color: var(--paper); }
.journey-section {
  max-width: var(--maxw);
  margin: 40px auto;
  border-radius: var(--radius-md);
  background: linear-gradient(190deg, #10ff6a2e 0%, rgba(37, 211, 102, 0.05) 100%);
}
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.5rem); }
.section-head p{ margin-top: 14px; font-size: 16.5px; color: var(--ink-soft); }
.section-ink .section-head p{ color: rgba(255,252,250,0.72); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* problem section */
.problem-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.problem-item{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px 22px; display:flex; align-items:center; gap:12px; font-weight:600; font-size:15px;
}
.problem-item .x{
  width:30px; height:30px; border-radius:50%; background: var(--coral-tint-2); color: var(--coral-dark);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:800;
}

/* outcomes / benefit cards */

.section.outcome{
  background-color: var(--section-color) !important;
}

.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card .icon-badge{
  width: 48px; height:48px; border-radius: 14px; background: var(--coral-tint);
  display:flex; align-items:center; justify-content:center; margin-bottom: 18px;
}
.card h3{ font-size: 19px; margin-bottom:8px; }
.card p{ color: var(--ink-soft); font-size: 15px; }
.card ul.tags{ margin-top:14px; display:flex; flex-wrap:wrap; gap:8px; }
.card ul.tags li{
  font-size:12.5px; font-weight:600; color: var(--ink-soft); background: var(--panel);
  border:1px solid var(--line); padding:5px 10px; border-radius: 999px;
}

/* industries grid */
.industry-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.industry-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px 20px; text-align:left; display:flex; flex-direction:column; gap: 14px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor:pointer;
}
.industry-card:hover{ transform: translateY(-4px); border-color: var(--coral); box-shadow: var(--shadow-card); }
.industry-card .icon-badge{ width:44px; height:44px; border-radius:12px; background: var(--coral-tint); display:flex; align-items:center; justify-content:center; }
.industry-card h4{ font-size: 16.5px; }
.industry-card ul{ display:flex; flex-direction:column; gap:5px; }
.industry-card ul li{ font-size: 13px; color: var(--ink-soft); }
.industry-card ul li::before{ content:"— "; color: var(--coral); }
.industry-card .go{
  margin-top:auto; font-size: 13px; font-weight:700; color: var(--wa-green-dark);
  display:flex; align-items:center; gap:6px;
}

/* timeline flow */
.flow { position: relative; width: 100%; }
.flow-line {
  position: absolute; left: 29px; top: 10px; bottom: 10px; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--border-outcome) 0 6px, transparent 6px 12px);
}
.flow-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 26px; padding: 26px 0; position: relative;
}
.flow-item + .flow-item { border-top: 1px dashed var(--border-outcome); }
.flow-dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--coral-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; flex-shrink: 0;
}
.flow-dot svg { width: 24px; height: 24px; stroke: var(--coral-dark); }
.flow-content { padding-top: 4px; }
.flow-content h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.flow-content p { color: var(--ink-soft); max-width: 760px; font-size: 15.5px; }

/* modules */
.module-row{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items:center;
  padding: 44px 48px; border: none; border-radius: var(--radius-lg);
  position: sticky; top: 110px; z-index: 2;
  background-color: #ffffff;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.1);
}
.module-row:nth-child(2) { background-image: linear-gradient(190deg, rgba(37, 211, 102, 0.18) 0%, rgba(37, 211, 102, 0.05) 100%); } /* Green */
.module-row:nth-child(3) { background-image: linear-gradient(190deg, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.05) 100%); } /* Blue */
.module-row:nth-child(4) { background-image: linear-gradient(190deg, rgba(255, 111, 92, 0.18) 0%, rgba(255, 111, 92, 0.05) 100%); } /* Coral */
.module-row:nth-child(5) { background-image: linear-gradient(190deg, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0.05) 100%); } /* Purple */
.module-row:nth-child(6) { background-image: linear-gradient(190deg, rgba(236, 72, 153, 0.18) 0%, rgba(236, 72, 153, 0.05) 100%); } /* Pink */
.module-row:nth-child(7) { background-image: linear-gradient(190deg, rgba(234, 179, 8, 0.18) 0%, rgba(234, 179, 8, 0.05) 100%); } /* Gold */
.module-row .num{ font-family: var(--mono); color: var(--coral); font-size:13px; font-weight:700; letter-spacing:.08em; }
.module-row h3{ font-size: 26px; margin-top:8px; }
.module-row .tagline{ color: var(--coral-dark); font-weight:700; font-size:15px; margin-top:6px; }
.module-row .feat-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.module-row .feat-list li{
  font-size:13.5px; font-weight:600; background: var(--panel); border:1px solid var(--line);
  padding:7px 13px; border-radius:999px;
}
.module-visual{
  /* background: var(--panel); 
  border:1px solid var(--line);  */
  border-radius: var(--radius-lg);
  padding: 26px; min-height: 220px; display:flex; align-items:center; justify-content:center;
}

/* journey */
.journey-swiper {
  position: relative;
  padding: 20px 0 40px; /* space for shadows and hover */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.journey-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(21,19,15,0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: var(--ink-soft);
  cursor: grab;
}
.journey-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(21,19,15,0.08);
  border-color: rgba(232, 84, 63, 0.3);
}
.journey-swiper .swiper-slide {
  height: auto;
}
.swiper-slide-active .journey-step {
  transform: scale(1.05);
  border-color: var(--coral-dark);
  box-shadow: 0 16px 32px rgba(232, 84, 63, 0.12);
  color: var(--ink);
}
.swiper-slide-active {
  z-index: 2;
}

/* Swiper Navigation Arrows */
.journey-prev, .journey-next {
  color: var(--ink);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(21,19,15,0.1);
  border: 1px solid var(--line);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.journey-swiper:hover .journey-prev,
.journey-swiper:hover .journey-next {
  opacity: 1;
}
.journey-prev:hover, .journey-next:hover {
  color: var(--coral-dark);
  box-shadow: 0 6px 16px rgba(21,19,15,0.15);
}
.journey-prev::after, .journey-next::after {
  font-size: 16px;
  font-weight: bold;
}

/* integrations */
.integration-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.integration-chip{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 10px; text-align:center; font-size:13px; font-weight:700; color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.integration-chip img {
  height: 50px; width: auto; display: block;
  border-radius: 4px;
}

/* metrics */
.metric-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.metric{
  background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg);
  padding: 26px; text-align:center;
}
.metric .num{ font-family: var(--mono); font-size: 40px; font-weight:700; color: var(--coral); }
.metric .lab{ margin-top:8px; font-size:14px; color: rgba(255,252,250,0.78); font-weight:600; }

/* FAQ */
.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left; padding: 20px 4px;
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
  font-family: var(--display); font-size: 16.5px; font-weight:600; color: var(--ink);
}
.faq-q .plus{ font-size: 22px; color: var(--coral); transition: transform .2s ease; flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a{ max-height: 240px; }
.faq-a p{ padding: 0 4px 20px; color: var(--ink-soft); font-size: 15px; max-width: 60ch; }

/* final CTA */
.final-cta{
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: var(--radius-lg); padding: 56px 48px; color:#fff;
  display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items:center;
}
.final-cta h2{ font-size: clamp(1.6rem,3vw,2.2rem); color:#fff; }
.final-cta p{ margin-top:12px; color: rgba(255,255,255,0.9); max-width: 48ch; }
.final-cta .btn-row{ justify-content:flex-end; }
.final-cta .btn-outline{ border-color: rgba(255,255,255,0.5); color:#fff; }
.final-cta .btn-outline:hover{ border-color:#fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--ink); color: rgba(255,252,250,0.75); padding: 56px 0 24px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand img{ height: 50px; width:auto; max-width: 100%; object-fit: contain; margin-bottom:14px; }
.footer-brand p{ font-size:14px; max-width: 32ch; color: rgba(255,252,250,0.6); }
.footer-col h5{ font-family: var(--display); font-size:17px; font-weight:700; color: var(--coral-dark); margin-bottom:16px; margin-top: 0; letter-spacing:.04em; text-transform:uppercase; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color: rgba(255,252,250,0.68); transition: color .15s ease; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color: rgba(255,252,250,0.55);
}

/* ============================================================
   Floating WhatsApp widget
   ============================================================ */
.wa-float{
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 60px; height:60px; border-radius:50%; background: var(--wa-green);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.wa-float:hover{ background: var(--wa-green-dark); }
@keyframes floatPulse{
  0%,100%{ box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6); }
  50%{ box-shadow: 0 14px 34px -6px rgba(37,211,102,0.85); }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* ============================================================
   Inner page hero (about/features/industries/contact)
   ============================================================ */
.page-hero{ padding: 56px 0 20px; text-align:center; }
.page-hero h1{ font-size: clamp(1.9rem,3.6vw,2.9rem); }
.page-hero p{ margin: 16px auto 0; max-width: 60ch; color: var(--ink-soft); font-size:17px; }
.crumb{ font-family: var(--mono); font-size: 12.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--coral-dark); font-weight:700; }

/* about page bits */
.value-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.value-card{ text-align:center; padding: 26px 18px; }
.timeline{ display:flex; flex-direction:column; gap:0; max-width: 720px; margin:0 auto; }
.timeline-item{ display:flex; gap:20px; padding: 22px 0; border-bottom:1px solid var(--line); }
.timeline-item:last-child{ border-bottom:none; }
.timeline-item .dot{ width:12px; height:12px; border-radius:50%; background: var(--coral); margin-top:6px; flex-shrink:0; }
.timeline-item h4{ font-size:16px; }
.timeline-item p{ color: var(--ink-soft); font-size:14.5px; margin-top:4px; }

/* contact page */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:start; }
.contact-form{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card);
}
.field{ margin-bottom: 18px; }
.field label{ display:block; font-size: 13.5px; font-weight:700; margin-bottom:7px; }
.field input, .field textarea, .custom-select-trigger {
  width:100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: var(--body); font-size: 15px; background: var(--paper); color: var(--ink);
}
.field input:focus, .field textarea:focus, .custom-select-wrapper.open .custom-select-trigger { 
  border-color: var(--coral); outline:none; 
}
.field textarea{ resize: vertical; min-height: 90px; }

/* Custom Select Dropdown */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}
.custom-select-trigger {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A463F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  transition: all 0.2s ease;
}
.custom-options {
  position: absolute;
  display: block;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  scrollbar-width: thin;
}
.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-option {
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.custom-option:hover {
  background: var(--panel);
  color: var(--coral-dark);
}
.custom-option.selected {
  font-weight: 600;
  color: var(--coral-dark);
  background: var(--coral-tint);
}
.form-note{ font-size:12.5px; color: var(--ink-soft); margin-top:10px; }
.contact-info-card{
  background: var(--ink); color:#fff; border-radius: var(--radius-lg); padding: 32px;
}
.contact-info-card h3{ color:#fff; font-size:20px; }
.contact-row{ display:flex; align-items:center; gap:14px; padding: 16px 0; border-bottom:1px solid rgba(255,255,255,0.12); }
.contact-row:last-child{ border-bottom:none; }
.contact-row .ic{ width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-row .lab{ font-size:12.5px; color: rgba(255,252,250,0.6); }
.contact-row .val{ font-weight:700; font-size:15.5px; }
.contact-row a.val:hover{ color: var(--coral); }

/* toast */
.toast{
  position: fixed; bottom: 100px; right: 24px; z-index: 300;
  background: var(--ink); color:#fff; padding: 14px 20px; border-radius: 12px;
  font-size: 14px; font-weight:600; box-shadow: var(--shadow-soft);
  transform: translateY(20px); opacity:0; pointer-events:none; transition: all .3s ease;
}
.toast.show{ transform: translateY(0); opacity:1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px){
  .nav-links{
    position: fixed; top: 66px; left:0; right:0; background: var(--paper);
    flex-direction:column; padding: 20px 24px; border-bottom:1px solid var(--line);
    display:none; gap: 18px;
  }
  .nav-links.open{ display:flex; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-outline{ display:none; }
  .hero .container{ grid-template-columns: 1fr; max-width: 100%; }
  .hero-blob { display: none; }
  .phone-wrap{ order:-1; margin-bottom: 20px; max-width: 100%; }
  .problem-grid, .grid-3, .industry-grid, .integration-grid, .metric-grid, .value-grid{ grid-template-columns: repeat(2,1fr); }
  .module-row{ grid-template-columns: 1fr; position: relative; top: auto; }
  .final-cta{ grid-template-columns: 1fr; text-align:left; }
  .final-cta .btn-row{ justify-content:flex-start; flex-wrap: wrap; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  /* AI Agent split section */
  .split-layout { grid-template-columns: 1fr; gap: 36px; }
  .split-image { order: -1; }
  /* Integration grid */
  .integration-grid { grid-template-columns: repeat(4, 1fr); }
  /* Hero phone */
  .phone-screen { min-height: 420px; height: 420px; }
  .phone { max-width: 260px; }
}
@media (max-width: 768px){
  /* AI Agent split */
  .split-layout { gap: 28px; }
  .split-content h2 { font-size: 1.8rem; }
  .feature-rows { grid-template-columns: 1fr 1fr; gap: 16px; }
  /* Flow / outcomes */
  .flow-content h3 { font-size: 18px; }
  .flow-content p { font-size: 14.5px; }
  /* Module row */
  .module-row { padding: 28px 24px; }
  .module-row h3 { font-size: 22px; }
  /* Final CTA */
  .final-cta { padding: 40px 28px; }
  /* Journey section */
  .journey-section { margin: 20px 16px; border-radius: var(--radius-sm); }
}

@media (max-width: 620px){
  .problem-grid, .grid-3, .grid-2, .industry-grid, .integration-grid, .metric-grid, .value-grid{ grid-template-columns: 1fr 1fr; }
  .integration-grid{ grid-template-columns: repeat(3,1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
  .journey-step{ width: 140px; }
  /* Feature rows stack */
  .feature-rows { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  /* 1. Containers & Spacing */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section.tight { padding: 40px 0; }
  .nav { padding: 12px 16px; }
  .brand img, .footer-brand img { height: 36px; }
  
  /* 2. Module Rows */
  .module-row { padding: 24px 16px; gap: 20px; position: relative; top: auto; margin-bottom: 16px; }
  .module-row h3 { font-size: 20px; }
  .module-row .tagline { font-size: 13.5px; }
  .module-row .feat-list li { font-size: 12.5px; padding: 6px 10px; }
  .module-visual { min-height: 160px; padding: 12px; }

  /* 3. Grids & Layouts */
  .problem-grid, .grid-3, .grid-2, .industry-grid, .metric-grid, .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .integration-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  /* 4. Cards & Components */
  .card { padding: 20px 16px; }
  .industry-card { padding: 16px 14px; gap: 10px; }
  .metric { padding: 20px 16px; }
  .problem-item { padding: 16px 14px; }
  
  /* 5. Buttons & CTAs */
  .hero .btn-row, .final-cta .btn-row { flex-direction: column; width: 100%; gap: 12px; }
  .btn-row .btn { padding: 12px 20px; text-align: center; justify-content: center; width: 100%; white-space: normal; }
  .nav-cta .btn { padding: 6px 12px; font-size: 13px; gap: 6px; }
  .nav-cta .btn svg { width: 14px; height: 14px; }
  .final-cta { padding: 32px 20px; }
  .final-cta h2 { font-size: 1.5rem; }
  
  /* 6. Typography & Decorative */
  .hero-blob { width: 300px; height: 300px; right: -150px; top: -80px; }
  .hero h1 { font-size: 2rem; }
  .hero p.lead { font-size: 15px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero h4{ font-size: 19px; }
  h5{ font-size: 16px; }
  h6{ font-size: 14px; }
  .section-head h2 { font-size: 1.6rem; }
  .section-head p { font-size: 15px; }
  .text-highlight {
    border: 2px solid var(--coral);
    border-radius: 8px;
    padding: 2px 10px;
    color: var(--coral-dark);
    display: inline-block;
  }
  .metric .num { font-size: 32px; }

  /* 7. Timeline Flow */
  .flow-item { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; }
  .flow-dot { width: 48px; height: 48px; }
  .flow-dot svg { width: 20px; height: 20px; }
  .flow-line { left: 23px; }
  .flow-content h3 { font-size: 17px; }
  .flow-content p { font-size: 14px; }

  /* 8. AI Agent Split */
  .split-layout { gap: 24px; }
  .split-content h2 { font-size: 1.7rem; margin-bottom: 16px; }
  .split-content p { font-size: 15px; }
  .feature-rows { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .icon-wrap.green-theme { width: 36px; height: 36px; }
  .feat-text h4 { font-size: 15px; }

  /* 9. Journey section */
  .journey-section { margin: 20px 0; border-radius: 0; }
  .journey-prev, .journey-next { display: none; }

  /* 10. Integration chips */
  .integration-chip { padding: 12px 8px; font-size: 11px; gap: 6px; }
  .integration-chip img { height: 36px; }

  /* 11. Footer */
  .footer-grid { gap: 24px; }
  .site-footer { padding: 40px 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* 12. Phone mockup */
  .phone { max-width: 220px; }
  .phone-screen { min-height: 360px; height: 360px; }
}

@media (max-width: 400px) {
  /* Metric grid single col at very small screens */
  .metric-grid { grid-template-columns: 1fr; }
  /* Industry grid single col */
  .industry-grid { grid-template-columns: 1fr; }
  /* Buttons full width */
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; justify-content: center; }
  /* Hero */
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 48px 0 32px; }
}

@media (max-width: 360px) {
  /* Integration grid 2 col fallback */
  .integration-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .integration-chip { padding: 10px 6px; font-size: 10px; }
  .integration-chip img { height: 28px; }
  /* Journey */
  .journey-section { padding: 32px 0; }
  /* Section head */
  .section-head h2 { font-size: 1.4rem; }
  /* Module row */
  .module-row { padding: 20px 12px; }
  /* Final CTA */
  .final-cta { padding: 28px 16px; }
  .final-cta h2 { font-size: 1.35rem; }
}

/* ============================================================
   AI AGENT SPLIT SECTION
   ============================================================ */

   .text-color{
    color: var(--coral);
   }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.split-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.split-content {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.img-responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.text-green { color: var(--wa-green-dark); }
.split-content h2 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin-bottom: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.split-content p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.split-content p strong { color: var(--ink); }
.feature-rows {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-rows li {
  display: flex;
  gap: 16px;
  align-items: center;
}
.icon-wrap.green-theme {
  width: 44px;
  height: 44px;
  background: #e8f7ed;
  color: var(--wa-green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-text h4 {
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 700;
}
.feat-text p {
  font-size: 14.5px;
  margin-bottom: 0;
  color: #7b7b7b;
}



/* Helper styles for refactoring inline styles */
.why-choose-title {
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.feature-rows.no-margin-top {
  margin-top: 0;
}

.btn-row.mt-32 {
  margin-top: 32px;
}

.btn-row.justify-center {
  justify-content: center;
}

.btn-row.mt-24 {
  margin-top: 24px;
}

.items-center {
  align-items: center;
}

.text-2xl {
  font-size: 2rem;
}

.mt-14 {
  margin-top: 14px;
}

.text-soft {
  color: var(--ink-soft);
}

.feat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.module-visual img {
  border-radius: 8px;
}

.module-visual.plain {
  padding: 0;
  background: none;
  border: none;
  min-height: auto;
}

.module-visual.plain img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

.order-first {
  order: -1;
}

.btn-row.mt-20 {
  margin-top: 20px;
}

/* about.php specific classes */
.page-hero.about-hero {
  background: radial-gradient(circle at center top, var(--panel) 0%, #fff 70%);
  padding: 56px 0 120px;
  overflow: hidden;
  position: relative;
}

.about-hero-container {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-crumb {
  justify-content: center;
  color: var(--coral) !important;
  margin-bottom: 20px;
}

.about-hero-h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.about-values-section {
  padding-top: 0;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

.about-values-grid {
  background: #fff;
  box-shadow: 0 15px 40px -15px rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.about-value-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 10px;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin: 0 auto 14px;
}

.about-value-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 12px;
  color: var(--ink-soft);
}

.crumb-green {
  color: var(--wa-green) !important;
}

.crumb-coral {
  color: var(--coral) !important;
}

.about-section-title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-section-desc {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.module-visual.about-visual {
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-img {
  width: 100%;
  max-width: 330px;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.08));
  position: relative;
  z-index: 2;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  will-change: transform;
}

.about-glow-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18) 0%, rgba(37, 211, 102, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
  border-radius: 50%;
}

.about-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: default;
  animation: float-badge 4.5s ease-in-out infinite;
}

.about-floating-badge:hover {
  transform: scale(1.05) translateY(-3px) !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.8);
}

.float-del-1 { animation-delay: 0s; }
.float-del-2 { animation-delay: 1.5s; }
.float-del-3 { animation-delay: 0.8s; }
.float-del-4 { animation-delay: 2.2s; }

@keyframes float-badge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.about-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.about-robot-img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.about-badge-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: stretch;
  justify-content: space-between;
}

.about-mini-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  flex: 1;
  text-align: left;
  line-height: 1.2;
}

.about-mini-icon {
  min-width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-tag-item {
  background: rgba(37, 211, 102, 0.1);
  color: var(--wa-green-dark);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
}

.about-dashboard-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.about-catalog-img {
  max-width: 100%;
  height: auto;
  max-height: 520px !important;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
  position: relative;
  z-index: 2;
}

.about-large-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 3;
  border: 2px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float-badge 4.5s ease-in-out infinite;
}

.about-large-badge:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.about-large-badge.badge-cart {
  background: #FF6F5C;
}

.about-large-badge.badge-bag {
  background: #25D366;
}

.container.wide {
  max-width: 1340px;
}

.about-stats-card {
  background: #F05742;
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(240, 87, 66, 0.2);
}

.about-stats-headline-wrap {
  flex: 0 0 32%;
  min-width: 300px;
}

.about-stats-h2 {
  font-size: 2.3rem;
  line-height: 1.25;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}

.about-stats-grid {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.about-stat-number-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.about-stat-number {
  font-size: 1.7rem;
  font-weight: 800;
}

.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

/* Background Color Helpers for Icons */
.bg-wa-green-light {
  background: rgba(37, 211, 102, 0.1);
}
.bg-coral-light {
  background: rgba(255, 111, 92, 0.1);
}
.bg-blue-light {
  background: rgba(59, 130, 246, 0.1);
}
.bg-purple-light {
  background: rgba(168, 85, 247, 0.1);
}
.bg-yellow-light {
  background: rgba(234, 179, 8, 0.1);
}
.bg-pink-light {
  background: rgba(236, 72, 153, 0.1);
}

/* Badge Positioning Helpers */
.badge-pos-1 {
  top: 15%;
  left: -35px;
}
.badge-pos-2 {
  bottom: 22%;
  left: -45px;
}
.badge-pos-3 {
  top: 35%;
  right: -40px;
}
.badge-pos-4 {
  bottom: 12%;
  right: -35px;
}
.badge-pos-left-center {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.badge-pos-right-30 {
  right: -20px;
  top: 30%;
}

.about-section-grid {
  gap: 72px !important;
}

@media (max-width: 1024px) {
  .about-section-grid {
    gap: 40px !important;
  }
  .about-visual-img {
    max-width: 250px;
  }
  .badge-pos-1 { left: -20px; }
  .badge-pos-2 { left: -30px; }
  .badge-pos-3 { right: -25px; }
  .badge-pos-4 { right: -20px; }
}

@media (max-width: 768px) {
  .about-section-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
  }
  .about-feat-grid {
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
  }
  .module-visual.about-visual {
    margin-top: 24px;
    min-height: auto !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  .about-glow-bg {
    width: 280px;
    height: 280px;
    top: 35%;
  }
  .about-visual-img {
    max-width: 210px !important;
    order: 1;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
  .about-floating-badge {
    position: static !important;
    transform: none !important;
    animation: none !important;
    margin: 6px !important;
    width: calc(50% - 12px) !important;
    order: 2;
    box-sizing: border-box;
    justify-content: flex-start;
  }
  .about-floating-badge:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
  }
  .about-large-badge {
    width: 38px !important;
    height: 38px !important;
    border-width: 1.5px !important;
  }
  .about-large-badge svg {
    width: 16px !important;
    height: 16px !important;
  }
  .badge-pos-left-center {
    left: -10px !important;
  }
  .badge-pos-right-30 {
    right: -10px !important;
  }
  .order-first {
    order: unset;
  }
  .about-values-grid {
    padding: 20px 10px;
    gap: 16px;
  }
  .about-value-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 100px;
  }
  .about-badge-row {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .about-mini-badge {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
  }
  .about-stats-card {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    gap: 32px;
  }
  .about-stats-headline-wrap {
    flex: 1;
    min-width: unset;
    max-width: 100%;
  }
  .about-stats-h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  .about-stats-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
  }
  .about-stats-grid > div {
    flex: 1 1 calc(50% - 24px);
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-stat-number-wrap {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-floating-badge {
    width: 100% !important;
    margin: 6px 0 !important;
  }
  .about-value-item {
    flex: 1 1 calc(50% - 16px);
  }
  .about-mini-badge {
    flex: 1 1 100%;
  }
  .about-stats-grid > div {
    flex: 1 1 100%;
  }
}

/* ============================================================
   RESPONSIVE OVERRIDES — must be LAST (after all base styles)
   ============================================================ */

/* ≤ 980px — stack the AI agent split to full width (col-12) */
@media (max-width: 980px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-image {
    order: -1;
  }
}

/* ≤ 768px — feature rows 2 col, reduce gap */
@media (max-width: 768px) {
  .split-layout {
    gap: 28px;
  }
  .split-content h2 {
    font-size: 1.8rem;
  }
  .feature-rows {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* ≤ 620px — feature rows stack to 1 col */
@media (max-width: 620px) {
  .feature-rows {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ≤ 480px — tighten split section for small phones */
@media (max-width: 480px) {
  .split-layout {
    gap: 24px;
  }
  .split-content h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  .split-content p {
    font-size: 15px;
  }
  .feature-rows {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
  .icon-wrap.green-theme {
    width: 36px;
    height: 36px;
  }
  .feat-text h4 {
    font-size: 15px;
  }
}
