:root {
  --bg: #f6fbfb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #203244;
  --muted: #617184;
  --line: rgba(39, 91, 113, 0.12);
  --teal: #35c2bb;
  --teal-dark: #16988f;
  --cyan: #4bbcff;
  --gold: #cda45e;
  --green: #1fae73;
  --green-dark: #12885b;
  --shadow: 0 18px 50px rgba(27, 54, 76, 0.10);
  --shadow-soft: 0 10px 30px rgba(27, 54, 76, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, svg, video, canvas, iframe {
  max-width: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(53,194,187,.10), transparent 30%),
    radial-gradient(circle at top right, rgba(75,188,255,.08), transparent 28%),
    linear-gradient(180deg, #fbfefe 0%, #f3faf9 55%, #f7fbfd 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  opacity: .35;
  border-radius: 50%;
}

body::before {
  top: -10vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(53,194,187,.30), transparent 65%);
  animation: floatBlob 18s ease-in-out infinite;
}
body::after {
  top: 18vh;
  right: -10vw;
  background: radial-gradient(circle, rgba(205,164,94,.22), transparent 65%);
  animation: floatBlob 22s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0, 18px, 0) scale(1.04); }
}

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 28px 0 56px; }
.section-head { margin-bottom: 22px; }
.center-text { text-align: center; }
.section-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0;
}
.section-title-medium { font-size: clamp(30px, 3.5vw, 44px); }
.section-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 14px auto 0;
  max-width: 880px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(53,194,187,.18);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gradient-text {
  background: linear-gradient(90deg, var(--green) 0%, var(--teal) 45%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(250,254,254,.92), rgba(250,254,254,.70));
  border-bottom: 1px solid rgba(41, 82, 102, 0.06);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px;
  padding: 14px 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 30px;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, rgba(205,164,94,.20), rgba(53,194,187,.14));
  border: 1px solid rgba(205,164,94,.28);
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.75);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: var(--black);
  border-left-color: var(--black);
  border-right-color: rgba(53,194,187,.9);
  transform: rotate(24deg);
}
.brand-text span:last-child { color: #3cc0d0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 8px 2px;
  transition: color .25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }


.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(53,194,187,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(53,194,187,.35);
  background: rgba(255,255,255,.95);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 31, 42, .35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 44;
}
.mobile-nav {
  position: fixed;
  top: 92px;
  left: 12px;
  right: 12px;
  z-index: 45;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  border-radius: 22px;
  padding: 18px;
}
.mobile-nav a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(32,50,68,.08);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .mobile-nav-cta {
  margin-top: 12px;
  padding-inline: 20px;
  text-align: center;
}
body.mobile-menu-open {
  overflow: hidden;
}
body.mobile-menu-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.mobile-menu-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, #2bb57d 40%, var(--teal) 100%);
  box-shadow: 0 16px 30px rgba(24, 161, 110, 0.30), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { box-shadow: 0 22px 38px rgba(24, 161, 110, 0.34), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.72);
  border-color: rgba(205,164,94,.45);
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover {
  border-color: rgba(53,194,187,.28);
  background: rgba(255,255,255,.95);
}
.btn-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
  flex-shrink: 0;
}
.btn-header { min-height: 52px; padding-inline: 18px; }
.btn-text-mobile { display: none; }

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 58px;
  padding: 0 20px;
  font-size: 15px;
  box-shadow: 0 20px 45px rgba(18, 136, 91, .35);
  animation: pulse 2.7s infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
}

.hero-section { position: relative; overflow: hidden; padding-top: 34px; }
.hero-shell { position: relative; border-radius: 36px; padding: 68px 32px 38px; overflow: hidden; isolation: isolate; }
.hero-shell::before,
.hero-shell::after {
  content: ""; position: absolute; pointer-events: none; z-index: -1;
}
.hero-shell::before {
  width: 70%; height: 420px; top: -140px; left: -6%;
  background: radial-gradient(circle, rgba(53,194,187,.14), transparent 70%);
}
.hero-shell::after {
  width: 60%; height: 360px; right: -8%; top: -60px;
  background: radial-gradient(circle, rgba(75,188,255,.11), transparent 68%);
}
.hero-copy { max-width: 920px; margin: 0 auto; text-align: center; }
.hero-visual {
  margin-top: 40px; padding: 22px; border-radius: 30px;
  border: 1px solid rgba(53,194,187,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(245,252,252,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), var(--shadow);
}
.network-grid { display: grid; grid-template-columns: 1fr minmax(320px, 1.4fr) 1fr; gap: 22px; align-items: center; }

.card-hover,
.hub-card,
.mini-card,
.feature-card,
.result-card,
.industry-card,
.faq-item,
.process-card,
.why-card,
.journey-card {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(32,50,68,.08);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .30s ease, box-shadow .30s ease, border-color .30s ease;
}
.card-hover:hover,
.hub-card:hover,
.mini-card:hover,
.feature-card:hover,
.result-card:hover,
.industry-card:hover,
.faq-item:hover,
.process-card:hover,
.why-card:hover,
.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(27,54,76,0.12);
  border-color: rgba(53,194,187,.22);
}
.hub-card {
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.svg-frame {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(53,194,187,.18), rgba(75,188,255,.12));
  border: 1px solid rgba(53,194,187,.16);
  color: var(--teal-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.svg-frame.small { width: 44px; height: 44px; border-radius: 14px; }
.svg-frame svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-frame.small svg { width: 24px; height: 24px; }
.hub-label {
  display: inline-flex;
  align-self: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  box-shadow: 0 10px 22px rgba(53,194,187,.22);
}
.hub-title { font-size: 28px; margin: 0; letter-spacing: -.02em; }
.hub-text { margin: 0; color: var(--muted); line-height: 1.7; }

.funnel-wrap {
  position: relative; min-height: 420px; display: grid; place-items: center; overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(239,251,250,.72)), radial-gradient(circle at 50% 50%, rgba(53,194,187,.18), transparent 45%);
  border: 1px solid rgba(53,194,187,.14);
}
.funnel-wrap::before,
.funnel-wrap::after {
  content: "";
  position: absolute;
  width: 120%; height: 8px; left: -10%; border-radius: 999px; opacity: .8;
  background: linear-gradient(90deg, transparent, rgba(53,194,187,.65), rgba(75,188,255,.65), transparent);
  animation: flowLine 5s linear infinite;
}
.funnel-wrap::before { top: 42%; }
.funnel-wrap::after { top: 58%; animation-delay: -2.5s; }
@keyframes flowLine {
  0% { transform: translateX(-15%); opacity: 0; }
  20% { opacity: .85; }
  100% { transform: translateX(15%); opacity: 0; }
}
.funnel-core {
  width: min(90%, 430px); aspect-ratio: 1.05; position: relative; display: grid; place-items: center;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(244,252,252,.9));
  border: 1px solid rgba(53,194,187,.18);
  box-shadow: 0 30px 60px rgba(41, 179, 165, .18);
}
.center-chip {
  position: absolute; bottom: 34px; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.94);
  border: 1px solid rgba(53,194,187,.16); box-shadow: var(--shadow-soft); font-weight: 700; color: var(--teal-dark);
}
.core-ring,
.core-ring::before,
.core-ring::after { border-radius: 50%; border: 1px solid rgba(53,194,187,.25); position: absolute; content: ""; }
.core-ring {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(53,194,187,.26), rgba(75,188,255,.10) 45%, transparent 70%);
  animation: rotateSlow 11s linear infinite;
}
.core-ring::before {
  width: 160px; height: 160px; inset: 29px; border-style: dashed; animation: rotateSlow 8s linear infinite reverse;
}
.core-ring::after {
  width: 92px; height: 92px; inset: 63px; background: radial-gradient(circle, rgba(255,255,255,.95), rgba(53,194,187,.26));
  box-shadow: 0 0 28px rgba(53,194,187,.35);
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-dot {
  position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal)); box-shadow: 0 0 18px rgba(53,194,187,.28);
}
.dot-1 { top: 84px; left: 88px; animation: bob 3s ease-in-out infinite; }
.dot-2 { top: 90px; right: 98px; animation: bob 3s ease-in-out infinite .3s; }
.dot-3 { bottom: 106px; left: 110px; animation: bob 3s ease-in-out infinite .6s; }
.dot-4 { bottom: 92px; right: 118px; animation: bob 3s ease-in-out infinite .9s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.mini-card { display: flex; align-items: center; gap: 12px; padding: 18px; min-height: 92px; }
.mini-card h4, .feature-card h4, .result-card h4, .industry-card h4, .process-card h4, .why-card h4, .journey-card h4 { margin: 18px 0 0; font-size: 20px; letter-spacing: -.02em; }
.mini-card h4 { margin: 0; }
.mini-card p, .feature-card p, .result-card p, .industry-card p, .process-card p, .why-card p, .journey-card p { margin: 8px 0 0; color: var(--muted); line-height: 1.75; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.card-box { padding: 28px; border-radius: 28px; }
.problem-art {
  min-height: 340px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.54), rgba(242,250,251,.85)), repeating-linear-gradient(90deg, rgba(53,194,187,.05), rgba(53,194,187,.05) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(180deg, rgba(205,164,94,.04), rgba(205,164,94,.04) 1px, transparent 1px, transparent 48px);
  border: 1px solid rgba(53,194,187,.12); position: relative; overflow: hidden; display: grid; place-items: center; text-align: center; padding: 26px;
}
/*.problem-art::before,
.problem-art::after {
  content: ""; position: absolute; border-radius: 20px; background: rgba(255,255,255,.75); border: 1px solid rgba(32,50,68,.06); box-shadow: var(--shadow-soft);*/
}
.problem-art::before { width: 110px; height: 70px; top: 34px; left: 30px; animation: floatCard 4s ease-in-out infinite; }
.problem-art::after { width: 90px; height: 54px; top: 86px; right: 36px; animation: floatCard 4.8s ease-in-out infinite reverse; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.problem-figure {
  width: 180px; height: 180px; border-radius: 50%; background: linear-gradient(180deg, rgba(53,194,187,.20), rgba(75,188,255,.10));
  border: 1px solid rgba(53,194,187,.16); position: relative; box-shadow: 0 18px 40px rgba(44, 114, 140, 0.12);
}
.problem-figure::before,
.problem-figure::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); background: rgba(32,50,68,.7); border-radius: 999px;
}
.problem-figure::before { top: 40px; width: 64px; height: 64px; border-radius: 50%; }
.problem-figure::after { top: 108px; width: 96px; height: 36px; }
.art-caption { margin-top: 24px; font-weight: 700; font-size: 18px; color: var(--muted); }

.check-list, .list-inline { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.check-list li, .list-inline li { display: flex; align-items: start; gap: 12px; line-height: 1.72; }
.check-list li::before {
  content: "✓"; display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--teal)); margin-top: 2px; box-shadow: 0 10px 16px rgba(53,194,187,.18);
}
.list-inline li { color: var(--muted); line-height: 1.65; }
.list-inline li::before { content: "•"; color: var(--teal-dark); font-weight: 800; font-size: 24px; line-height: 1; margin-top: -2px; }
.grid-2, .grid-3, .grid-4, .grid-5 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.feature-card, .industry-card, .result-card, .why-card, .process-card { padding: 26px; position: relative; overflow: hidden; }
.feature-card::after, .industry-card::after, .result-card::after, .why-card::after, .process-card::after, .faq-item::after, .journey-card::after {
  content: ""; position: absolute; inset: auto auto 0 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, rgba(53,194,187,.0), rgba(53,194,187,.75), rgba(205,164,94,.7), rgba(53,194,187,0));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.feature-card:hover::after, .industry-card:hover::after, .result-card:hover::after, .why-card:hover::after, .process-card:hover::after, .faq-item:hover::after, .journey-card:hover::after { transform: scaleX(1); }
.feature-icon, .result-icon, .why-icon, .industry-icon, .journey-icon { margin: 0; }
.step-number {
  display: grid; place-items: center; width: 72px; height: 72px; border-radius: 24px; font-weight: 800; font-size: 24px;
  background: linear-gradient(135deg, rgba(205,164,94,.24), rgba(53,194,187,.18)); color: var(--text); margin-bottom: 18px;
}
.results-band, .final-cta, .usecase-board {
  position: relative; overflow: hidden; border-radius: 32px; padding: 34px;
}
.results-band::before, .final-cta::before, .usecase-board::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at left top, rgba(53,194,187,.12), transparent 28%), radial-gradient(circle at right bottom, rgba(205,164,94,.10), transparent 30%);
  pointer-events: none;
}

/*.usecase-board {
  min-height: 720px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(247,252,252,.92)),
    radial-gradient(circle at 50% 20%, rgba(75,188,255,.10), transparent 25%),
    radial-gradient(circle at 10% 70%, rgba(53,194,187,.12), transparent 22%),
    radial-gradient(circle at 90% 80%, rgba(205,164,94,.10), transparent 22%);
}
.journey-line {
  position: absolute;
  left: 8%; right: 8%; top: 50%; height: 6px; transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(53,194,187,.15), rgba(53,194,187,.9), rgba(205,164,94,.85), rgba(75,188,255,.88), rgba(53,194,187,.15));
  border-radius: 999px; box-shadow: 0 0 24px rgba(53,194,187,.24);
}
.journey-line::before,
.journey-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  animation: shimmer 4.8s linear infinite;
}
.journey-line::after { animation-delay: -2.4s; }
@keyframes shimmer {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; }
  20% { opacity: 1; }
  100% { clip-path: inset(0 0 0 100%); opacity: 0; }
}
.journey-card {
  position: absolute; width: min(260px, calc(100% - 40px)); padding: 22px; z-index: 2; background: rgba(255,255,255,.92);
}
.journey-number {
  display: inline-flex; padding: 7px 12px; border-radius: 999px; font-weight: 800; font-size: 12px; letter-spacing: .12em; color: var(--teal-dark);
  background: rgba(53,194,187,.10); border: 1px solid rgba(53,194,187,.16);
}
.stage-1 { left: 3%; top: 70px; }
.stage-2 { left: 23%; top: 260px; }
.stage-3 { left: 41%; top: 70px; }
.stage-4 { right: 23%; top: 260px; }
.stage-5 { right: 3%; top: 70px; }
.stage-6 { left: 16%; bottom: 52px; }
.stage-7 { right: 16%; bottom: 52px; }*/

.faq-wrap { display: grid; gap: 16px; margin-top: 18px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item details { padding: 0; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plus { font-size: 24px; color: var(--teal-dark); transition: transform .25s ease; }
.faq-item details[open] .plus { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; color: var(--muted); line-height: 1.8; }
.final-cta { text-align: center; padding: 54px 28px; }
.footer { padding: 12px 0 46px; color: var(--muted); text-align: center; font-size: 15px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
  .grid-5 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .stage-1 { left: 2%; top: 62px; }
  .stage-2 { left: 18%; top: 270px; }
  .stage-3 { left: 39%; top: 62px; }
  .stage-4 { right: 18%; top: 270px; }
  .stage-5 { right: 2%; top: 62px; }
}

@media (max-width: 1100px) {
  .network-grid, .two-col, .grid-4, .grid-3, .grid-5 { grid-template-columns: 1fr; }
  .grid-2, .mini-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle, .mobile-nav { display: flex; }
  .nav-shell { padding: 14px; }
  /*.usecase-board { min-height: auto; padding: 24px; }
  .journey-line { display: none; }
  .journey-card { position: relative; width: 100%; inset: auto; margin-bottom: 16px; }*/
}

@media (max-width: 768px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .hero-shell { padding: 46px 18px 22px; border-radius: 26px; }
  .section { padding: 20px 0 42px; }
  .card-box, .feature-card, .industry-card, .result-card, .why-card, .process-card, .results-band, .final-cta, .usecase-board { padding: 22px; }
  .brand { font-size: 22px; gap: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark::before { inset: 6px; border-width: 4px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .btn-header {
    width: auto;
    min-width: 0;
    padding-inline: 14px;
    min-height: 44px;
    gap: 8px;
    font-size: 13px;
    flex-shrink: 0;
	display:none
  }
  .btn-header .btn-icon { width: 18px; height: 18px; }
  .btn-text-desktop { display: none; }
  .btn-text-mobile { display: inline; }
  .nav-shell { gap: 10px; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .mobile-nav {
    top: 82px;
    left: 8px;
    right: 8px;
    padding: 16px;
  }
  .hero-copy .btn-row .btn:first-child span { font-size: 14px; }
  .sticky-whatsapp {
    right: 12px; left: 12px; justify-content: center; padding-inline: 16px; min-height: 52px;
  }
  .sticky-whatsapp .btn-text-desktop { display: none; }
  .sticky-whatsapp .btn-text-mobile { display: inline; }
  .section-subtitle { font-size: 16px; line-height: 1.7; }
  .hub-card { min-height: auto; }
}

@media (max-width: 520px) {
  .brand-text { font-size: 20px; }
  .btn-header { padding-inline: 12px; }
  .btn-header .btn-text-mobile { font-size: 12px; }
  .site-header { padding: 10px 0; }
  .nav-shell { border-radius: 18px; }
  .hero-visual { padding: 16px; }
  .section-title { font-size: clamp(30px, 9vw, 42px); }
}


.mobile-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
}

.mobile-nav-close {
  display: none;
}

@media (max-width: 1100px) {
  .mobile-nav {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding-top: 56px;
  }

  .mobile-nav a {
    display: block;
    width: 100%;
  }

  .mobile-nav .mobile-nav-cta {
    width: 100%;
    margin-top: 14px;
  }

  .mobile-nav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(32,50,68,.10);
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    box-shadow: var(--shadow-soft);
  }
}


@media (max-width: 1100px) {
  .site-header,
  .nav-shell,
  .hero-shell,
  .hero-visual,
  .usecase-board,
  .results-band,
  .final-cta,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .two-col {
    max-width: 100%;
    overflow-x: clip;
  }

  .mobile-nav,
  .mobile-nav-overlay,
  .sticky-whatsapp {
    max-width: calc(100vw - 16px);
  }
}

@media (max-width: 768px) {
  .mobile-nav,
  .sticky-whatsapp {
    width: auto;
    max-width: calc(100vw - 24px);
  }

  .btn,
  .btn-header,
  .mobile-nav a,
  .mobile-nav .mobile-nav-cta {
    max-width: 100%;
  }
}
/* Default: Desktop view */
.flow-desktop {
  display: block;
}

.flow-mobile {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .flow-desktop {
    display: none;
  }

  .flow-mobile {
    display: block;
  }
}
.automation-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef7fb 100%);
  overflow: hidden;
}

.automation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(83, 179, 255, 0.10), transparent 22%),
    radial-gradient(circle at 85% 25%, rgba(55, 214, 161, 0.10), transparent 20%),
    radial-gradient(circle at 50% 85%, rgba(0, 172, 193, 0.08), transparent 28%);
  pointer-events: none;
}

.automation-section .container {
  position: relative;
  z-index: 2;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.automation-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #d9e7ef;
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 10px 30px rgba(18, 48, 77, 0.08);
  transition: 0.3s ease;
}

.automation-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(18, 48, 77, 0.12);
}

.automation-box-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.automation-box-title h4 {
  margin: 0;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 700;
  color: #203041;
}

.automation-title-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #28d266, #18a94d);
}

.email-icon {
  background: linear-gradient(135deg, #53b3ff, #287eff);
}

.automation-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
}

.automation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.automation-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #2d3b48;
}

.automation-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-box:first-child .automation-list li::before {
  background: linear-gradient(135deg, #97cf4b, #4cb96d);
}

.automation-box:last-child .automation-list li::before {
  background: linear-gradient(135deg, #4bb4f2, #2b87df);
}

/* optional section heading styling */
.automation-section .section-title {
  color: #223245;
}

.automation-section .section-title span,
.automation-section .section-title strong {
  color: #23b58f;
}

/* Responsive */
@media (max-width: 991px) {
  .automation-grid {
    grid-template-columns: 1fr;
  }

  .automation-box-title h4 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .automation-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .automation-box-title {
    gap: 10px;
    margin-bottom: 16px;
  }

  .automation-title-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 20px;
  }

  .automation-box-title h4 {
    font-size: 22px;
  }

  .automation-list-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .automation-list li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 28px;
  }
}
/* =========================
   USE CASE SECTION - NEW RESPONSIVE FORMAT
========================= */

.usecase-section .section-subtitle {
  max-width: 760px;
}

.usecase-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
  position: relative;
}

.flow-step {
  position: relative;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(32,50,68,.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 32px 22px 22px; /* extra top space for corner badge */
  min-height: 250px;
  transition: transform .30s ease, box-shadow .30s ease, border-color .30s ease;
  overflow: hidden;
}

.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(27,54,76,0.12);
  border-color: rgba(53,194,187,.22);
}

.flow-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(53,194,187,.0),
    rgba(53,194,187,.78),
    rgba(205,164,94,.72),
    rgba(53,194,187,0)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.flow-step:hover::after {
  transform: scaleX(1);
}

/* STEP NUMBER BADGE (top-left highlight) */

.flow-number {
  position: absolute;
  top: 14px;
  left: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 28px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;

  border-radius: 999px;

  color: #0d5f5a;

  background: linear-gradient(
    135deg,
    rgba(53,194,187,.20),
    rgba(205,164,94,.20)
  );

  border: 1px solid rgba(53,194,187,.35);

  box-shadow: 0 6px 14px rgba(53,194,187,.15);

  backdrop-filter: blur(6px);
}

/* alternate highlight color for even steps */

.flow-step:nth-child(even) .flow-number {
  background: linear-gradient(
    135deg,
    rgba(205,164,94,.25),
    rgba(53,194,187,.18)
  );

  border-color: rgba(205,164,94,.35);
}

.flow-step-top {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* icon aligned right */
  gap: 14px;
  margin-bottom: 18px;
}

.usecase-flow .journey-icon.svg-frame {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 18px;
  margin: 0;
}

.usecase-flow .journey-icon.svg-frame svg {
  width: 30px;
  height: 30px;
}

.flow-step h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text);
}

.flow-step p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.flow-step-highlight {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.95),
    rgba(241,251,248,.96)
  );
  border-color: rgba(53,194,187,.18);
}

/* Make last row centered nicely */

.usecase-flow .flow-step:nth-child(5) {
  grid-column: 1 / span 1;
}

.usecase-flow .flow-step:nth-child(6) {
  grid-column: 2 / span 2;
}

.usecase-flow .flow-step:nth-child(7) {
  grid-column: 4 / span 1;
}

/* Tablet */

@media (max-width: 1100px) {
  .usecase-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .flow-step,
  .usecase-flow .flow-step:nth-child(5),
  .usecase-flow .flow-step:nth-child(6),
  .usecase-flow .flow-step:nth-child(7) {
    grid-column: auto;
    min-height: 220px;
  }

  .usecase-flow .flow-step:nth-child(6) {
    grid-column: span 2;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .usecase-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-step,
  .usecase-flow .flow-step:nth-child(6) {
    grid-column: auto;
    min-height: auto;
    padding: 28px 18px 20px;
    border-radius: 20px;
  }

  .flow-number {
    width: 44px;
    height: 26px;
    font-size: 10px;
  }

  .flow-step-top {
    margin-bottom: 16px;
  }

  .usecase-flow .journey-icon.svg-frame {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
  }

  .usecase-flow .journey-icon.svg-frame svg {
    width: 26px;
    height: 26px;
  }

  .flow-step h4 {
    font-size: 19px;
  }

  .flow-step p {
    font-size: 14px;
    line-height: 1.65;
  }
}