:root {
  --brand: #0f9d58;
  --brand-dark: #0b7a44;
  --brand-soft: #e3f5ec;
  --ink: #10231a;
  --ink-2: #16311f;
  --text: #16202a;
  --muted: #5c6b63;
  --line: #e2e8e4;
  --bg: #ffffff;
  --bg-alt: #f4f7f5;
  --accent: #ffc94d;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 35, 26, .10), 0 2px 6px rgba(16, 35, 26, .06);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0; font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); }
img { max-width: 100%; }
code { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: .9em; background: var(--bg-alt); padding: 1px 5px; border-radius: 5px; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -.02em; }
[hidden] { display: none !important; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ---------- Tombol ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px;
  border-radius: 10px; font: inherit; font-weight: 600; font-size: 15px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 13px 24px; font-size: 16px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(15, 157, 88, .35); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-light { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn-light:hover { background: rgba(255, 255, 255, .18); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-white { background: #fff; color: var(--brand-dark); }
.btn-outline { border-color: var(--line); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-dark); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--brand); color: #fff; display: grid;
  place-items: center; font-weight: 800; font-size: 13px; letter-spacing: -.5px; flex: none;
}
.logo b { display: block; font-size: 16px; line-height: 1.1; }
.logo small { display: block; font-size: 11px; color: var(--muted); }
.links { display: flex; align-items: center; gap: 4px; }
.links > a { color: var(--text); text-decoration: none; padding: 8px 12px; border-radius: 8px; font-weight: 500; font-size: 15px; }
.links > a:hover { background: var(--bg-alt); }
.links-cta { display: flex; gap: 8px; margin-left: 10px; }
.burger { display: none; width: 42px; height: 42px; border: 0; background: none; cursor: pointer; padding: 10px; }
.burger span { display: block; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero slider ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(39, 184, 114, .35), transparent 60%),
    radial-gradient(700px 400px at 5% 100%, rgba(255, 201, 77, .12), transparent 60%),
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 40px 40px;
}
.slides { position: relative; display: grid; }
.slide {
  grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .6s ease, visibility .6s;
  padding: 72px 0 40px;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; min-height: 440px; }
.slide-text > * { transform: translateY(14px); opacity: 0; transition: transform .6s ease, opacity .6s ease; }
.slide.is-active .slide-text > * { transform: none; opacity: 1; }
.slide.is-active .slide-text > :nth-child(2) { transition-delay: .08s; }
.slide.is-active .slide-text > :nth-child(3) { transition-delay: .16s; }
.slide.is-active .slide-text > :nth-child(4) { transition-delay: .24s; }
.slide.is-active .slide-text > :nth-child(5) { transition-delay: .32s; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #8ee6b6; margin-bottom: 14px;
}
.eyebrow.dark { color: var(--brand); }
.hero h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 18px; color: #c9dbd1; margin: 18px 0 26px; max-width: 540px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: flex; gap: 20px; flex-wrap: wrap; color: #a9c4b5; font-size: 14px; }
.ticks li::before { content: "✓"; color: #8ee6b6; font-weight: 700; margin-right: 6px; }

.slide-visual { position: relative; display: grid; place-items: center; min-height: 400px; }
.slide-visual > :first-child { transform: translateY(20px) scale(.97); opacity: 0; transition: .7s ease .1s; }
.slide.is-active .slide-visual > :first-child { transform: none; opacity: 1; }

.phone {
  width: 300px; background: #e9e3da; border-radius: 34px; border: 9px solid #0a120e;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45); overflow: hidden; color: var(--text);
}
.phone-top { display: flex; align-items: center; gap: 10px; background: #075e54; color: #fff; padding: 14px 14px 12px; }
.phone-top b { display: block; font-size: 14px; line-height: 1.2; }
.phone-top small { font-size: 11px; opacity: .8; }
.av { width: 34px; height: 34px; border-radius: 50%; background: #25d366; display: grid; place-items: center; font-weight: 700; }
.chat { padding: 14px 12px 18px; display: grid; gap: 10px; min-height: 330px; align-content: start; }
.bubble {
  background: #fff; border-radius: 10px 10px 10px 2px; padding: 8px 10px 18px; font-size: 13px; line-height: 1.45;
  position: relative; max-width: 92%; box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  opacity: 0; transform: translateY(10px);
}
.bubble .t { position: absolute; right: 8px; bottom: 3px; font-size: 10px; color: #53bdeb; }
.slide.is-active .bubble { animation: pop .45s ease forwards; }
.slide.is-active .b1 { animation-delay: .5s; }
.slide.is-active .b2 { animation-delay: 1.3s; }
.slide.is-active .b3 { animation-delay: 2.1s; }
@keyframes pop { to { opacity: 1; transform: none; } }

.float-card {
  position: absolute; background: #fff; color: var(--text); padding: 10px 14px; border-radius: 12px;
  font-size: 13px; font-weight: 600; box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(10px); transition: .6s ease .9s;
}
.slide.is-active .float-card { opacity: 1; transform: none; }
.fc1 { left: -24px; bottom: 6px; }
.fc2 { right: -20px; top: 36px; }
.dot-ok { width: 9px; height: 9px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 4px rgba(37, 211, 102, .2); }

/* Visual ringkas tiga fitur unggulan, selaras dengan kartu dashboard. */
.benefit-preview {
  width: min(100%, 440px); min-width: 0; background: #fff; color: var(--text); border-radius: 20px;
  padding: 22px; box-shadow: 0 30px 60px rgba(0, 0, 0, .35); overflow: hidden;
}
.team-preview { border-top: 4px solid #65ce93; }
.contact-preview { border-top: 4px solid #73a2ed; }
.funnel-preview { border-top: 4px solid #f4c665; }
.preview-top { display: flex; align-items: center; gap: 11px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.preview-top > div { min-width: 0; flex: 1; }
.preview-top b, .team-row b, .contact-row b, .funnel-row b { display: block; font-size: 14px; line-height: 1.35; }
.preview-top small, .team-row small, .contact-row small, .funnel-row small { display: block; font-size: 11px; color: var(--muted); }
.preview-top-icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark); font-size: 20px; }
.preview-live { margin-left: auto; border-radius: 100px; background: var(--brand-soft); color: var(--brand-dark); padding: 4px 9px; font-size: 11px; font-weight: 700; }
.preview-label { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 20px 0 5px; }
.team-row, .contact-row, .funnel-row { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 12px 0; border-bottom: 1px solid var(--line); }
.team-row > div, .contact-row > div, .funnel-row > div { flex: 1; min-width: 0; }
.team-avatar, .contact-avatar { width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 13px; font-weight: 800; background: #e3f5ec; color: #0b7a44; }
.team-avatar.second, .contact-avatar.second { background: #e6eeff; color: #3759aa; }
.team-avatar.third { background: #fff1da; color: #9c620a; }
.team-permit { color: var(--brand-dark); background: var(--brand-soft); border-radius: 99px; padding: 3px 8px; font-size: 10px; font-weight: 700; white-space: nowrap; }
.preview-foot { margin-top: 16px; padding: 10px; background: var(--bg-alt); border-radius: 9px; color: var(--brand-dark); font-size: 12px; font-weight: 700; text-align: center; }
.preview-search { border: 1px solid var(--line); background: var(--bg-alt); border-radius: 8px; color: var(--muted); font-size: 12px; padding: 10px 13px; margin: 18px 0 4px; }
.contact-check { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); font-size: 13px; font-weight: 800; }
.funnel-preview .preview-top { margin-bottom: 9px; }
.funnel-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; background: #f6b645; box-shadow: 0 0 0 5px #fff4dc; margin: 0 8px; }
.funnel-dot.prospect { background: #5588e7; box-shadow: 0 0 0 5px #edf2ff; }
.funnel-dot.followup { background: #15a76a; box-shadow: 0 0 0 5px #e4f5ec; }
.funnel-count { border-radius: 7px; padding: 2px 8px; background: var(--bg-alt); color: var(--muted); font-size: 12px; font-weight: 700; }

.qr-card { background: #fff; color: var(--text); border-radius: 20px; padding: 22px; width: 300px; box-shadow: 0 30px 60px rgba(0, 0, 0, .45); text-align: center; }
.qr-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pill { background: #fff4e0; color: #c77700; font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 99px; }
.qr-grid { display: grid; grid-template-columns: repeat(25, 1fr); aspect-ratio: 1; gap: 0; }
.qr-grid i { background: #111; }
.qr-grid i.o { background: transparent; }
.qr-bar { height: 4px; background: var(--line); border-radius: 4px; margin: 16px 0 6px; overflow: hidden; }
.qr-bar span { display: block; height: 100%; background: var(--brand); transform-origin: left; }
.slide.is-active .qr-bar span { animation: shrink 20s linear infinite; }
@keyframes shrink { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.qr-card small { color: var(--muted); }

.code-win { width: 100%; max-width: 500px; background: #0b1510; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; box-shadow: 0 30px 60px rgba(0, 0, 0, .45); overflow: hidden; }
.win-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: rgba(255, 255, 255, .05); font-size: 12px; color: #93a39a; }
.win-bar i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.win-bar i:nth-child(2) { background: #febc2e; }
.win-bar i:nth-child(3) { background: #28c840; }
.win-bar span { margin-left: 8px; font-family: ui-monospace, Menlo, monospace; }
.code-win pre { margin: 0; padding: 18px; font: 13px/1.65 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; color: #d7e4dc; overflow-x: auto; }
.k { color: #8ee6b6; } .s { color: #ffc94d; } .c { color: #6f8579; }

.slider-ctrl { position: relative; display: flex; align-items: center; gap: 14px; padding-bottom: 34px; }
.arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); background: transparent;
  color: #fff; font-size: 22px; line-height: 1; cursor: pointer; display: grid; place-items: center; padding-bottom: 3px;
}
.arrow:hover { background: rgba(255, 255, 255, .1); }
.dots { display: flex; gap: 8px; }
.dots button {
  width: 44px; height: 6px; border-radius: 6px; border: 0; padding: 0; background: rgba(255, 255, 255, .22);
  cursor: pointer; overflow: hidden; position: relative;
}
.dots button span { position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; }
.dots button.is-done span { transform: scaleX(1); }

/* ---------- Use cases ---------- */
.usecases { border-bottom: 1px solid var(--line); }
.usecases .wrap { display: flex; align-items: center; gap: 22px; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; }
.usecases p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 600; }
.usecases ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.usecases li { background: var(--bg-alt); border-radius: 99px; padding: 6px 14px; font-size: 14px; font-weight: 500; }

/* ---------- Section umum ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.sec-head.left { text-align: left; margin: 0; }
.sec-head h2, .dev-grid h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
.sec-head p { color: var(--muted); font-size: 17px; margin: 14px 0 0; }

.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feat { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; transition: .2s; }
.feat:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.feat .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.feat h3 { font-size: 18px; margin-bottom: 8px; }
.feat p { margin: 0; color: var(--muted); font-size: 15px; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: s; position: relative; }
.steps li { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; }
.steps .num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; margin-bottom: 16px; font-size: 18px;
}
.steps h3 { font-size: 19px; margin-bottom: 8px; }
.steps p { margin: 0; color: var(--muted); font-size: 15px; }

.dev-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.lead { color: var(--muted); font-size: 17px; margin: 14px 0 20px; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checks li { padding-left: 30px; position: relative; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 800; display: grid; place-items: center;
}
.code-tabs { background: #0b1510; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tabs { display: flex; gap: 2px; padding: 8px 8px 0; background: #0f1d16; align-items: center; }
.tab { background: none; border: 0; color: #93a39a; font: inherit; font-size: 14px; font-weight: 600; padding: 9px 14px; border-radius: 8px 8px 0 0; cursor: pointer; }
.tab.is-on { background: #0b1510; color: #fff; }
.copy { margin-left: auto; background: rgba(255, 255, 255, .08); color: #d7e4dc; border: 0; border-radius: 6px; padding: 5px 12px; font: inherit; font-size: 13px; cursor: pointer; margin-bottom: 6px; }
.copy:hover { background: rgba(255, 255, 255, .16); }
.code { margin: 0; padding: 22px; color: #d7e4dc; font: 13.5px/1.7 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; overflow-x: auto; min-height: 290px; }

/* ---------- Harga ---------- */
.billing-toggle { display: flex; justify-content: center; gap: 6px; margin: 0 auto 30px; }
.billing-toggle button { border: 1px solid var(--line); background: #fff; color: var(--muted); padding: 10px 17px; border-radius: 99px; font: inherit; font-weight: 700; cursor: pointer; }
.billing-toggle button.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.billing-toggle span { font-size: 11px; margin-left: 4px; }
.annual-saving { color: var(--brand-dark); font-size: 12px; font-weight: 700; margin: 0 0 4px; }
.annual-saving s { color: var(--muted); font-weight: 400; }
.plans { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; position: relative; transition: .2s;
}
.plan:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.plan.popular { border: 2px solid var(--brand); box-shadow: var(--shadow); }
.plan .badge-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 99px; white-space: nowrap;
}
.plan h3 { font-size: 20px; }
.plan .tag { color: var(--muted); font-size: 14px; margin: 4px 0 18px; min-height: 42px; }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price { flex-wrap: wrap; }
.price b { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.price span { color: var(--muted); font-size: 14px; }
.plan .limits { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 18px; }
.plan .limits span { background: var(--brand-soft); color: var(--brand-dark); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 99px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; font-size: 14.5px; flex: 1; align-content: start; }
.plan ul[hidden]{display:none}
.plan-detail-toggle{border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--brand-dark);font:inherit;font-weight:700;font-size:13px;padding:9px 12px;cursor:pointer;text-align:left;margin:0 0 14px;display:flex;justify-content:space-between}
.plan-detail-toggle:hover,.plan-detail-toggle[aria-expanded="true"]{background:var(--brand-soft)}
.plan-detail-toggle[aria-expanded="true"] span{transform:rotate(180deg)}
.plan li { padding-left: 24px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.plan .btn { width: 100%; }
.plan.skeleton { min-height: 440px; background: linear-gradient(90deg, #fff 25%, #eef2ef 50%, #fff 75%) 0 0 / 200% 100%; animation: sk 1.2s infinite; }
@keyframes sk { to { background-position: -200% 0; } }
.fine { text-align: center; color: var(--muted); font-size: 13px; margin: 26px 0 0; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { font-weight: 700; font-size: 17px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--brand); transition: transform .2s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 12px 0 0; }

/* ---------- CTA & footer ---------- */
.cta-band { background: linear-gradient(120deg, var(--brand-dark), var(--brand)); color: #fff; padding: 56px 0; }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.cta-band p { margin: 8px 0 0; color: #d9f5e6; }
.foot { background: var(--ink); color: #a9bdb2; padding: 40px 0; }
.foot-in { display: grid; gap: 18px; }
.foot .logo { color: #fff; }
.foot .logo small { color: #a9bdb2; }
.foot-brand small a { color: #d7e4dc; }
.foot nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot nav a { color: #d7e4dc; text-decoration: none; font-size: 14px; }
.foot nav a:hover { color: #fff; }
.foot > .wrap > small { font-size: 12px; color: #6f8579; }

/* ---------- Responsif ---------- */
@media (max-width: 1024px) {
  .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .plans{grid-template-columns:repeat(2,minmax(0,1fr))}
  .burger { display: block; }
  .links {
    position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none;
  }
  .links.open { display: flex; }
  .links-cta { margin: 10px 0 0; flex-direction: column; }
  .slide { padding: 44px 0 24px; }
  .slide-in { grid-template-columns: 1fr; gap: 34px; min-height: 0; }
  .slide-visual { min-height: 0; }
  .phone { width: 270px; }
  .chat { min-height: 280px; }
  .fc1 { left: 0; bottom: -16px; }
  .fc2 { right: 0; top: -14px; }
  .slide-visual { padding-bottom: 16px; }
  .dev-grid, .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .benefit-preview { padding: 18px; }
  .team-row, .contact-row, .funnel-row { gap: 9px; }
  .team-permit { font-size: 9px; padding: 3px 6px; }
  .plans, .features { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero p { font-size: 16px; }
  .cta-row .btn { flex: 1 1 auto; }
  .usecases .wrap { gap: 12px; }
  .code-win pre { font-size: 11.5px; }
  .code { font-size: 12.5px; min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
