/* ==========================================================================
   ditiLink — marketing site stylesheet
   Palette derived from the brand mark:
     green  #1DAB61   teal #173F35   cream #FAFAF7   line #E6E4DD
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --green: #1dab61;
  --green-600: #178f51;
  --green-300: #64c894;
  --green-050: #e8f6ee;
  --teal: #173f35;
  --teal-700: #1f5348;
  --teal-900: #0e2a24;
  --cream: #fafaf7;
  --cream-200: #f2f1ea;
  --line: #e6e4dd;
  --ink: #14201c;
  --muted: #5d6b66;
  --faint: #8a8878;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20, 32, 28, .05), 0 2px 8px rgba(20, 32, 28, .04);
  --shadow: 0 2px 4px rgba(20, 32, 28, .04), 0 12px 32px -8px rgba(20, 32, 28, .10);
  --shadow-lg: 0 4px 8px rgba(20, 32, 28, .04), 0 24px 64px -12px rgba(20, 32, 28, .16);
  --shadow-green: 0 8px 28px -8px rgba(29, 171, 97, .45);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --maxw: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--green); color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.center { text-align: center; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { line-height: 1.14; letter-spacing: -.028em; font-weight: 700; color: var(--teal); }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); font-weight: 800; letter-spacing: -.036em; }
h2 { font-size: clamp(1.95rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-050);
  border: 1px solid rgba(29, 171, 97, .18);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(29, 171, 97, .18);
}
.lede { font-size: 1.115rem; max-width: 62ch; }
.section-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.08rem; }
.gr { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  white-space: nowrap; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn--primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(29, 171, 97, .55); }
.btn--dark { background: var(--teal); color: #fff; }
.btn--dark:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--teal); background: rgba(23, 63, 53, .04); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--teal); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.28); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn--lg { padding: 17px 27px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(250, 250, 247, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.header__inner { display: flex; align-items: center; gap: 32px; }

.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { width: 40px; height: auto; }
.brand__name { font-size: 1.32rem; font-weight: 800; letter-spacing: -.035em; color: var(--teal); }
.brand__name b { color: var(--green); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 15px; border-radius: 100px;
  font-size: .93rem; font-weight: 500; color: var(--muted);
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.is-active { color: var(--teal); background: rgba(23, 63, 53, .055); }
.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header__cta .btn { padding: 11px 20px; font-size: .9rem; }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.burger span { display: block; width: 17px; height: 1.8px; background: var(--teal); margin: 4px auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 68px 0 auto 0; z-index: 99;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 12px 24px 26px;
  display: none; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open { display: flex; animation: slideDown .3s var(--ease); }
.mobile-nav a { padding: 13px 4px; font-weight: 600; color: var(--teal); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-of-type { border: 0; }
.mobile-nav .btn { margin-top: 14px; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 100px; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.14fr .86fr; gap: 48px; align-items: center;
}
.hero__copy { max-width: 640px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .underline { position: relative; white-space: nowrap; color: var(--green); }
.hero h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 10px;
  background: rgba(29, 171, 97, .2); border-radius: 6px; z-index: -1;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 26px; }
.hero__note { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .87rem; color: var(--faint); font-weight: 500; }
.hero__note span { display: inline-flex; align-items: center; gap: 6px; }
.hero__note svg { width: 15px; height: 15px; color: var(--green); flex: none; }

/* soft ambient blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: -2; }
.blob--a { width: 520px; height: 520px; background: rgba(29, 171, 97, .13); top: -170px; right: -130px; }
.blob--b { width: 420px; height: 420px; background: rgba(23, 63, 53, .07); bottom: -180px; left: -140px; }

.hero__dots {
  position: absolute; inset: 0; z-index: -3;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 20%, transparent 78%);
}

/* ---------- Phone mockup ---------- */
.hero__visual { position: relative; display: flex; justify-content: center; }

.phone {
  position: relative; width: 320px; flex: none;
  background: var(--teal-900);
  border-radius: 44px; padding: 11px;
  box-shadow: 0 50px 100px -30px rgba(14, 42, 36, .5), 0 0 0 1px rgba(255,255,255,.06) inset;
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone__screen { background: #ECE5DD; border-radius: 34px; overflow: hidden; }
.phone__notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 24px; background: var(--teal-900); border-radius: 0 0 14px 14px; z-index: 3;
}
.wa-bar {
  display: flex; align-items: center; gap: 10px;
  background: #075E54; color: #fff; padding: 34px 14px 12px;
}
.wa-bar__avatar {
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; flex: none; padding: 5px;
}
.wa-bar__avatar img { width: 100%; }
.wa-bar__name { font-size: .85rem; font-weight: 700; line-height: 1.25; }
.wa-bar__status { font-size: .66rem; opacity: .78; display: flex; align-items: center; gap: 4px; }
.wa-bar__status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #4ade80; }
.wa-bar__verified { width: 13px; height: 13px; flex: none; }

.wa-chat {
  height: 448px; padding: 16px 12px; overflow: hidden;
  display: flex; flex-direction: column; gap: 9px;
  background-color: #ECE5DD;
  background-image:
    radial-gradient(rgba(23, 63, 53, .05) 1px, transparent 1px),
    radial-gradient(rgba(23, 63, 53, .05) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
}
.bubble {
  max-width: 84%; padding: 8px 11px; border-radius: 9px;
  font-size: .775rem; line-height: 1.45; color: #111b21;
  box-shadow: 0 1px 1px rgba(11, 20, 26, .12);
  opacity: 0; transform: translateY(12px) scale(.96);
  animation: pop .45s var(--ease) forwards;
}
.bubble strong { font-weight: 700; }
.bubble--in  { background: #fff; align-self: flex-start; border-top-left-radius: 2px; }
.bubble--out { background: #D9FDD3; align-self: flex-end; border-top-right-radius: 2px; }
.bubble__time { display: block; text-align: right; font-size: .58rem; color: #667781; margin-top: 2px; }
.bubble__time::after { content: " ✓✓"; color: #53BDEB; letter-spacing: -1px; }
.bubble--in .bubble__time::after { content: ""; }
.bubble__img {
  width: 100%; height: 74px; border-radius: 6px; margin-bottom: 6px;
  background: linear-gradient(120deg, var(--green-050), #d6ece0);
  display: grid; place-items: center; font-size: 1.6rem;
}
.bubble__btns { display: flex; flex-direction: column; gap: 4px; margin: 7px -11px -8px; }
.bubble__btns button {
  padding: 7px; font-size: .72rem; font-weight: 600; color: #027EB5;
  border-top: 1px solid #E9EDEF; width: 100%;
}
.bubble__btns button:hover { background: #f5f6f6; }
@keyframes pop { to { opacity: 1; transform: none; } }

.typing { display: flex; gap: 3px; padding: 11px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #9aa5a8; animation: blink 1.3s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* floating stat chips around phone */
.chip {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 11px 15px; box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.chip__icon { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; background: var(--green-050); }
.chip__icon svg { width: 16px; height: 16px; color: var(--green-600); }
.chip__k { font-size: .95rem; font-weight: 800; color: var(--teal); line-height: 1.1; letter-spacing: -.02em; }
.chip__l { font-size: .68rem; color: var(--faint); font-weight: 600; }
/* anchored to .phone so they always clear the chat header */
.chip--1 { top: 86px; left: -112px; animation-delay: .8s; }
.chip--2 { bottom: 152px; right: -104px; animation-delay: 1.9s; }
.chip--3 { bottom: -14px; left: -74px; animation-delay: 1.3s; }

/* ---------- Logo strip ---------- */
.strip { padding: 32px 0 12px; }
.strip__label { text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--faint); margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.06rem; font-weight: 700; letter-spacing: -.02em; color: var(--teal);
  opacity: .42; transition: opacity .25s; white-space: nowrap;
}
.marquee__item:hover { opacity: 1; }
.marquee__item svg { width: 21px; height: 21px; }

/* ---------- Stats band ---------- */
.stats { background: var(--teal); color: #fff; padding: 62px 0; position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(29,171,97,.28), transparent 45%),
              radial-gradient(circle at 85% 70%, rgba(29,171,97,.16), transparent 45%);
}
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats__n { font-size: clamp(2rem, 3.4vw, 2.85rem); font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1.1; }
.stats__n span { color: var(--green-300); }
.stats__l { font-size: .86rem; color: rgba(255,255,255,.65); margin-top: 6px; font-weight: 500; }

/* ---------- Cards / features ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0; transition: opacity .35s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(29,171,97,.32); }
.card:hover::after { opacity: 1; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .935rem; }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--green-050); border: 1px solid rgba(29,171,97,.16);
  transition: transform .35s var(--ease), background .3s;
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); background: var(--green); }
.card:hover .card__icon svg { color: #fff; }
.card__icon svg { width: 22px; height: 22px; color: var(--green-600); transition: color .3s; }
.card__tag {
  display: inline-block; margin-top: 16px; font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--faint);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 30px; left: 14%; right: 14%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__n {
  width: 60px; height: 60px; margin: 0 auto 22px;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--green); color: var(--green-600);
  border-radius: 50%; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 0 0 8px var(--cream), var(--shadow-sm);
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.step:hover .step__n { background: var(--green); color: #fff; transform: scale(1.08); }
.step h3 { margin-bottom: 9px; }
.step p { font-size: .935rem; max-width: 32ch; margin-inline: auto; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split + .split { margin-top: 108px; }
.split--flip .split__media { order: -1; }
.split h2 { margin-bottom: 18px; }
.split__list { margin-top: 26px; display: grid; gap: 13px; }
.split__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--muted); }
.split__list svg { width: 20px; height: 20px; flex: none; color: var(--green); margin-top: 2px; }
.split__list b { color: var(--teal); font-weight: 600; }

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 26px; box-shadow: var(--shadow);
}
.panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.panel__title { font-size: .95rem; font-weight: 700; color: var(--teal); }
.panel__dots { display: flex; gap: 5px; }
.panel__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.panel__dots i:first-child { background: var(--green); }

/* flow builder mock */
.flow { display: grid; gap: 10px; }
.flow__node {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px; border-radius: 14px;
  background: var(--cream); border: 1px solid var(--line);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.flow__node:hover { border-color: var(--green); transform: translateX(5px); box-shadow: var(--shadow-sm); }
.flow__node--trigger { background: var(--green-050); border-color: rgba(29,171,97,.3); }
.flow__ico { width: 32px; height: 32px; border-radius: 9px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex: none; font-size: .9rem; }
.flow__t { font-size: .87rem; font-weight: 700; color: var(--teal); line-height: 1.3; }
.flow__s { font-size: .74rem; color: var(--faint); }
.flow__meta { margin-left: auto; font-size: .68rem; font-weight: 700; padding: 4px 9px; border-radius: 100px; background: #fff; border: 1px solid var(--line); color: var(--muted); flex: none; }
.flow__arrow { display: grid; place-items: center; color: var(--line); }
.flow__arrow svg { width: 16px; height: 16px; }

/* metric rows */
.metric { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.metric:last-child { border: 0; padding-bottom: 0; }
.metric__label { font-size: .88rem; font-weight: 600; color: var(--teal); width: 128px; flex: none; }
.metric__bar { flex: 1; height: 9px; border-radius: 100px; background: var(--cream-200); overflow: hidden; }
.metric__fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--green-300), var(--green)); width: 0; transition: width 1.3s var(--ease); }
.metric__val { font-size: .88rem; font-weight: 800; color: var(--teal); width: 52px; text-align: right; flex: none; }

/* ---------- Use cases ---------- */
.uc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; gap: 15px; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.uc:hover { transform: translateY(-3px); border-color: rgba(29,171,97,.35); box-shadow: var(--shadow); }
.uc__emoji {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-size: 1.2rem;
  background: var(--cream-200);
}
.uc h3 { font-size: 1rem; margin-bottom: 5px; }
.uc p { font-size: .875rem; line-height: 1.55; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote__stars { display: flex; gap: 2px; margin-bottom: 16px; color: #f5a623; }
.quote__stars svg { width: 16px; height: 16px; }
.quote p { font-size: .97rem; color: var(--ink); line-height: 1.65; flex: 1; }
.quote__by { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
  background: var(--teal); color: #fff;
}
.quote__n { font-size: .9rem; font-weight: 700; color: var(--teal); line-height: 1.3; }
.quote__r { font-size: .78rem; color: var(--faint); }

/* ---------- Pricing ---------- */
.toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  background: var(--cream-200); border: 1px solid var(--line); border-radius: 100px;
  margin: 0 auto 44px; position: relative; left: 50%; transform: translateX(-50%);
}
.toggle button {
  padding: 9px 20px; border-radius: 100px; font-size: .88rem; font-weight: 600; color: var(--muted);
  transition: background .25s, color .25s, box-shadow .25s;
}
.toggle button.is-on { background: #fff; color: var(--teal); box-shadow: var(--shadow-sm); }
.toggle .save { font-size: .68rem; font-weight: 800; color: var(--green-600); margin-left: 5px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--best {
  background: var(--teal); border-color: var(--teal); color: #fff;
  box-shadow: var(--shadow-lg); position: relative; padding-top: 42px;
}
.plan--best h3, .plan--best .plan__price { color: #fff; }
.plan--best .plan__desc, .plan--best .plan__period { color: rgba(255,255,255,.6); }
.plan--best .plan__feats li { color: rgba(255,255,255,.85); }
.plan--best .plan__feats svg { color: var(--green-300); }
.plan--best .plan__feats { border-top-color: rgba(255,255,255,.14); }
.plan__badge {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: .66rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.12rem; margin-bottom: 6px; }
.plan__desc { font-size: .86rem; color: var(--faint); min-height: 40px; }
.plan__price { font-size: 2.7rem; font-weight: 800; letter-spacing: -.04em; color: var(--teal); margin-top: 18px; line-height: 1; }
.plan__price sup { font-size: 1.1rem; font-weight: 700; top: -.75em; margin-right: 1px; }
.plan__period { font-size: .82rem; color: var(--faint); margin: 7px 0 22px; }
.plan__feats { display: grid; gap: 11px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); flex: 1; }
.plan__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: .89rem; color: var(--muted); }
.plan__feats svg { width: 17px; height: 17px; flex: none; color: var(--green); margin-top: 3px; }
.plan .btn { margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq__item.is-open { border-color: rgba(29,171,97,.35); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; text-align: left; font-size: 1rem; font-weight: 600; color: var(--teal);
}
.faq__q:hover { color: var(--green-600); }
.faq__ico { width: 26px; height: 26px; border-radius: 50%; background: var(--cream-200); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .25s; }
.faq__ico svg { width: 13px; height: 13px; color: var(--teal); }
.faq__item.is-open .faq__ico { transform: rotate(45deg); background: var(--green); }
.faq__item.is-open .faq__ico svg { color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.faq__a p { padding: 0 24px 22px; font-size: .95rem; }

/* ---------- CTA ---------- */
.cta { padding: 100px 0; }
.cta__box {
  background: var(--teal); border-radius: var(--radius-xl); padding: 72px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta__box::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(29,171,97,.32), transparent 42%),
              radial-gradient(circle at 82% 78%, rgba(29,171,97,.2), transparent 45%);
}
.cta__box > * { position: relative; }
.cta__box h2 { color: #fff; max-width: 18ch; margin: 0 auto 18px; }
.cta__box p { color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 52ch; margin: 0 auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.cta__fine { margin-top: 22px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .84rem; font-weight: 600; color: var(--teal); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; font-size: .94rem; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(29,171,97,.12);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d6b66' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}
.form__note { font-size: .8rem; color: var(--faint); }
.form__ok {
  display: none; align-items: center; gap: 10px; padding: 14px 16px;
  background: var(--green-050); border: 1px solid rgba(29,171,97,.3); border-radius: 12px;
  font-size: .9rem; font-weight: 600; color: var(--green-600);
}
.form__ok.is-on { display: flex; }
.form__ok svg { width: 18px; height: 18px; flex: none; }

/* ---------- Contact side ---------- */
.contact-card { display: flex; gap: 14px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card:last-child { border: 0; }
.contact-card__ico { width: 40px; height: 40px; border-radius: 12px; background: var(--green-050); display: grid; place-items: center; flex: none; }
.contact-card__ico svg { width: 18px; height: 18px; color: var(--green-600); }
.contact-card h3 { font-size: .95rem; margin-bottom: 3px; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--muted); }
.contact-card a:hover { color: var(--green-600); }

/* ---------- Page hero (inner pages) ---------- */
.pagehero { padding: 152px 0 64px; text-align: center; position: relative; overflow: hidden; }
.pagehero p { font-size: 1.1rem; max-width: 58ch; margin: 18px auto 0; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-900); color: rgba(255,255,255,.6); padding: 72px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.footer .brand__name { color: #fff; }
.footer .brand__name b { color: var(--green-300); }
.footer__about { font-size: .92rem; margin: 18px 0 22px; max-width: 34ch; color: rgba(255,255,255,.55); }
.footer h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .92rem; color: rgba(255,255,255,.6); transition: color .2s, transform .2s; display: inline-block; }
.footer__links a:hover { color: var(--green-300); transform: translateX(3px); }
.social { display: flex; gap: 9px; }
.social a {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  transition: background .25s, transform .25s, border-color .25s;
}
.social a:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.social svg { width: 16px; height: 16px; color: #fff; }
.footer__bar {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: .85rem;
}
.footer__bar a:hover { color: var(--green-300); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Floating WhatsApp ---------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; box-shadow: 0 8px 26px -6px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease);
}
.wa-fab:hover { transform: scale(1.09) translateY(-2px); }
.wa-fab svg { width: 29px; height: 29px; color: #fff; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: ripple 2.2s ease-out infinite;
}
@keyframes ripple { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: block; }
  .hero { padding-top: 132px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__copy { max-width: none; text-align: center; margin-inline: auto; }
  .hero .eyebrow { margin-inline: auto; }
  .hero .lede { margin-inline: auto; }
  .hero__actions, .hero__note { justify-content: center; }
  .split, .split + .split { grid-template-columns: 1fr; gap: 40px; }
  .split + .split { margin-top: 72px; }
  .split--flip .split__media { order: 0; }
  .grid-3, .grid-4, .plans { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .plan--best { order: -1; grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .stats__grid, .grid-3, .grid-2, .grid-4, .plans, .form__row { grid-template-columns: 1fr; }
  .stats__grid { gap: 32px; }
  .plan--best { grid-column: auto; }
  /* animation is disabled here because `float` also drives transform and would cancel the scale */
  .chip { animation: none; }
  .chip--1 { top: 118px; left: -18px; transform: scale(.82); transform-origin: left center; }
  .chip--2 { right: -18px; bottom: 138px; transform: scale(.82); transform-origin: right center; }
  .chip--3 { display: none; }
  .phone { width: 290px; }
  .cta__box { padding: 52px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
