:root {
  --green: #07c160;
  --green-dark: #087a45;
  --green-deep: #063f2b;
  --green-soft: #eaf9f1;
  --green-pale: #f4fbf7;
  --blue: #417cf2;
  --ink: #10241b;
  --text: #31463c;
  --muted: #738279;
  --line: #e2ebe6;
  --line-strong: #d3e0d9;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --shadow-sm: 0 10px 30px rgba(21, 69, 46, 0.07);
  --shadow-md: 0 22px 64px rgba(21, 69, 46, 0.12);
  --shadow-lg: 0 32px 90px rgba(13, 68, 42, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --page: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.page-shell,
.nav-shell {
  width: min(calc(100% - 40px), var(--page));
  margin: 0 auto;
}

.section { padding: 112px 0; position: relative; }
.section-pad { padding-left: 20px; padding-right: 20px; }
.section-white { background: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 235, 230, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(14, 56, 36, 0.07);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.02em;
}

.brand strong { color: var(--green-dark); }

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--green), #079453);
  box-shadow: 0 8px 18px rgba(7, 193, 96, .22);
}

.brand-mark::before {
  content: "";
  width: 19px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 7px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  border-left: 2px solid #fff;
  transform: rotate(-24deg);
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 16px;
  border-radius: 50%;
  background: #fff;
}
.brand-mark span::before { left: 14px; }
.brand-mark span::after { right: 14px; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 31px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: #41554a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: right .2s ease;
}
.site-nav a:hover::after { right: 0; }
.site-nav a:hover { color: var(--green-dark); }

.nav-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.nav-login { color: #53655b; font-size: 14px; font-weight: 650; }
.nav-login:hover { color: var(--green-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 23px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(7, 193, 96, .2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #08ad59;
  box-shadow: 0 14px 28px rgba(7, 193, 96, .27);
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-login:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(65, 124, 242, .35);
  outline-offset: 3px;
}

.button-small { min-height: 40px; padding: 9px 17px; font-size: 14px; border-radius: 9px; }
.button-large { min-height: 54px; padding: 15px 27px; border-radius: 12px; }
.button-secondary { background: #fff; color: var(--green-dark); border-color: #cde5d7; box-shadow: none; }
.button-secondary:hover { background: var(--green-pale); box-shadow: none; }
.button-outline { width: 100%; color: var(--green-dark); background: #fff; border-color: #b8dfc9; box-shadow: none; }
.button-outline:hover { background: var(--green-pale); box-shadow: none; }
.button-white { color: var(--green-deep); background: #fff; border-color: #fff; box-shadow: 0 14px 28px rgba(0,0,0,.12); }
.button-white:hover { background: #f5fff9; box-shadow: 0 18px 34px rgba(0,0,0,.16); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--surface-soft);
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px 0; background: var(--ink); border-radius: 2px; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 98px;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, #fbfefc 0%, #fff 74%),
    radial-gradient(circle at 20% 20%, rgba(7, 193, 96, .09), transparent 36%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: linear-gradient(rgba(7, 122, 69, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 122, 69, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 430px; height: 430px; right: -170px; top: 30px; background: radial-gradient(circle, rgba(7,193,96,.13), rgba(7,193,96,0)); }
.hero-orb-two { width: 330px; height: 330px; left: -160px; top: 240px; background: radial-gradient(circle, rgba(65,124,242,.08), rgba(65,124,242,0)); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  align-items: center;
  gap: 64px;
}

.hero-copy { padding: 26px 0 46px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow > span { position: relative; width: 24px; height: 2px; background: var(--green); border-radius: 2px; }
.eyebrow > span::after { content: ""; position: absolute; right: 0; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.eyebrow.light { color: #aaf0c8; }
.eyebrow.light > span, .eyebrow.light > span::after { background: #5be69a; }

.hero h1 {
  margin: 22px 0 22px;
  color: #0d2418;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.12;
  letter-spacing: -.055em;
  font-weight: 820;
}

.hero h1 em { position: relative; color: var(--green); font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; left: 2%; right: 1%; bottom: 1px; height: 10px; border-radius: 50%; background: rgba(7,193,96,.14); z-index: -1; }

.hero-lead { max-width: 550px; margin: 0; color: #53665b; font-size: 18px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 33px; }
.hero-note { margin: 19px 0 0; color: var(--muted); font-size: 13px; }
.hero-note span { margin-right: 5px; color: var(--green); font-weight: 800; }

.product-stage { position: relative; min-width: 0; padding: 32px 0 40px; }
.stage-glow { position: absolute; inset: 10% 6%; border-radius: 50%; background: rgba(7,193,96,.16); filter: blur(54px); }

.console-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(206, 222, 213, .94);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-1.2deg) rotateX(.6deg);
}

.console-topbar {
  height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6ece8;
  background: rgba(255,255,255,.96);
}
.console-title { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.mini-logo { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--green); color: #fff; font-size: 9px; font-weight: 800; }
.console-actions { display: flex; align-items: center; gap: 13px; color: #77857d; font-size: 8px; }
.console-actions b { display: inline-grid; place-items: center; min-width: 14px; height: 14px; margin-left: 2px; border-radius: 7px; color: #fff; background: #f29839; }

.console-columns { display: grid; grid-template-columns: .76fr .92fr 1.42fr; min-height: 372px; }
.console-panel { min-width: 0; background: #fff; }
.console-panel + .console-panel { border-left: 1px solid #e7ede9; }
.panel-head { display: flex; align-items: center; justify-content: space-between; height: 42px; padding: 0 12px; border-bottom: 1px solid #edf1ee; color: #283d32; font-size: 10px; font-weight: 750; }
.panel-head > span { color: #89958e; font-size: 8px; }
.panel-head button { padding: 3px 8px; border: 1px solid #b9dfca; border-radius: 6px; color: var(--green-dark); background: #fff; font-size: 8px; }

.agent-panel { background: #f7faf8; }
.agent-item, .customer-item { display: flex; align-items: center; gap: 8px; min-width: 0; }
.agent-item { position: relative; margin: 7px; padding: 9px 8px; border-radius: 9px; }
.agent-item.active { background: #fff; box-shadow: 0 5px 16px rgba(30,70,49,.08); }
.agent-item > div, .customer-item > div { min-width: 0; flex: 1; }
.agent-item b, .customer-item b { display: block; overflow: hidden; color: #24382d; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.agent-item small, .customer-item small { display: block; overflow: hidden; margin-top: 2px; color: #829087; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.agent-item small i, .admin-agent small i { display: inline-block; width: 5px; height: 5px; margin-right: 3px; border-radius: 50%; background: var(--green); }
.muted-item { opacity: .64; }
.avatar { flex: 0 0 auto; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #e7ece9; color: #617067; font-size: 8px; font-style: normal; font-weight: 750; }
.avatar-green { background: #dff6e9; color: #07804a; }
.avatar-blue { background: #e4edff; color: #3b6fd8; }
.avatar-soft { background: #f0f4f1; color: #617067; }

.fake-search { height: 27px; display: flex; align-items: center; margin: 8px; padding: 0 10px; border: 1px solid #e3e9e5; border-radius: 7px; color: #a2ada6; background: #fafcfb; font-size: 7px; }
.customer-item { position: relative; margin: 2px 6px; padding: 8px 6px; border-radius: 8px; }
.customer-item.active { background: var(--green-pale); }
.customer-item time { align-self: flex-start; flex: 0 0 auto; color: #a2aca6; font-size: 6px; }

.chat-panel, .admin-chat { display: flex; flex-direction: column; }
.chat-head { height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid #edf1ee; }
.chat-head b { display: block; font-size: 10px; }
.chat-head small { display: block; color: #8c9891; font-size: 7px; }
.hosting-pill { padding: 4px 7px; border-radius: 10px; color: #087b47; background: #e5f8ee; font-size: 7px; font-weight: 750; }
.chat-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; gap: 9px; padding: 14px; background: #fbfcfb; }
.message { max-width: 83%; display: flex; flex-direction: column; gap: 4px; }
.message > span { padding: 8px 10px; border-radius: 9px; color: #4d5e55; background: #fff; border: 1px solid #e6ece8; font-size: 8px; line-height: 1.6; }
.message small { color: #9aa59f; font-size: 6px; }
.message.outbound { align-self: flex-end; align-items: flex-end; }
.message.outbound > span { color: #153f29; background: #e8f8ef; border-color: #d3eedf; }
.message.review { padding: 8px 10px; border: 1px solid #f0d7a9; border-radius: 8px; color: #8c621c; background: #fff9eb; }
.message.review strong { font-size: 7px; }
.message.review span { font-size: 6px; }
.composer { height: 41px; display: flex; align-items: center; gap: 8px; padding: 7px 9px; border-top: 1px solid #edf1ee; background: #fff; }
.composer > span { flex: 1; height: 27px; display: flex; align-items: center; padding: 0 9px; border: 1px solid #e3e9e5; border-radius: 7px; color: #a0aaa4; font-size: 7px; }
.composer > b { display: grid; place-items: center; height: 27px; padding: 0 10px; border-radius: 7px; background: var(--green); color: #fff; font-size: 7px; }

.floating-status { position: absolute; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(213,228,220,.95); border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.floating-status > i { width: 11px; height: 11px; border: 3px solid #d6f2e2; border-top-color: var(--green); border-radius: 50%; animation: spin 2s linear infinite; }
.floating-status b, .floating-status small { display: block; }
.floating-status b { font-size: 9px; }
.floating-status small { color: #839087; font-size: 7px; }
.floating-status-one { left: -28px; top: 3px; }
.floating-status-two { right: -22px; bottom: 2px; }
.floating-status .check { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; font-weight: 800; }
@keyframes spin { to { transform: rotate(360deg); } }

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow-sm);
}
.proof-strip > div { min-height: 104px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 20px; }
.proof-strip > div + div { border-left: 1px solid var(--line); }
.proof-strip p { margin: 0; }
.proof-strip strong, .proof-strip small { display: block; }
.proof-strip strong { font-size: 19px; letter-spacing: -.02em; }
.proof-strip small { color: var(--muted); font-size: 13px; }
.proof-icon { position: relative; width: 40px; height: 40px; display: grid; place-items: center; color: var(--green); border: 2px solid var(--green); border-radius: 50%; font-size: 13px; font-weight: 800; }
.clock-icon::before { content: ""; position: absolute; width: 2px; height: 10px; top: 8px; background: var(--green); border-radius: 2px; transform-origin: bottom; transform: rotate(-3deg); }
.clock-icon::after { content: ""; position: absolute; width: 10px; height: 2px; left: 19px; top: 20px; background: var(--green); border-radius: 2px; transform: rotate(25deg); transform-origin: left; }
.calendar-icon { border-radius: 9px; }
.calendar-icon::before, .calendar-icon::after { content: ""; position: absolute; top: -5px; width: 3px; height: 8px; border-radius: 3px; background: var(--green); }
.calendar-icon::before { left: 9px; }.calendar-icon::after { right: 9px; }
.bolt-icon { border: 0; font-size: 42px; font-weight: 500; }

.section-heading { max-width: 690px; margin-bottom: 52px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin: 16px 0 15px; color: var(--ink); font-size: clamp(36px, 4vw, 52px); line-height: 1.22; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }

.product-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { position: relative; overflow: hidden; min-height: 342px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 34px rgba(30,68,48,.045); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; bottom: -90px; border-radius: 50%; background: rgba(7,193,96,.06); }
.product-card:hover { transform: translateY(-5px); border-color: #c9e4d5; box-shadow: var(--shadow-md); }
.product-card-top { display: flex; align-items: center; justify-content: space-between; }
.card-number { color: #b5c0ba; font-size: 13px; font-weight: 750; letter-spacing: .14em; }
.product-icon { position: relative; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid #cce9d8; border-radius: 17px; color: var(--green-dark); background: var(--green-pale); font-size: 16px; font-weight: 800; }
.phone-icon::before { content: ""; width: 22px; height: 34px; border: 2px solid var(--green-dark); border-radius: 6px; }
.phone-icon::after { content: ""; position: absolute; width: 5px; height: 2px; bottom: 16px; background: var(--green-dark); border-radius: 2px; }
.dashboard-icon::before { content: ""; width: 31px; height: 24px; border: 2px solid var(--green-dark); border-radius: 5px; box-shadow: inset 9px 0 0 rgba(7,193,96,.12); }
.dashboard-icon::after { content: ""; position: absolute; width: 16px; height: 2px; bottom: 15px; background: var(--green-dark); box-shadow: 7px -7px 0 -0.5px var(--green-dark); transform: rotate(-33deg); }
.product-card h3 { margin: 26px 0 10px; font-size: 23px; letter-spacing: -.025em; }
.product-card p { min-height: 81px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.mini-list { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin: 23px 0 0; padding: 0; list-style: none; }
.mini-list li { padding: 5px 10px; border-radius: 14px; color: #557064; background: #f3f7f5; font-size: 11px; font-weight: 650; }

.system-line { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 13px; margin-top: 28px; padding: 23px; border: 1px solid var(--line); border-radius: 16px; background: #fbfdfc; }
.system-line > div { display: grid; grid-template-columns: 30px 1fr; column-gap: 9px; align-items: center; min-width: 0; }
.system-line > div > span { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #bfe6cf; border-radius: 50%; color: var(--green-dark); background: #fff; font-size: 11px; font-weight: 800; }
.system-line b { font-size: 12px; white-space: nowrap; }
.system-line small { color: var(--muted); font-size: 9px; white-space: nowrap; }
.system-line > i { color: #8fc9aa; font-style: normal; }

.workflow-section { overflow: hidden; color: #fff; background: linear-gradient(135deg, #063f2b, #075b38 56%, #087a45); }
.workflow-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 26px 26px; mask-image: linear-gradient(90deg, #000, transparent 55%); }
.workflow-section .page-shell { position: relative; }
.workflow-section .section-heading h2 { color: #fff; }
.workflow-section .section-heading p { color: #bdd5c8; }
.workflow-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.workflow-steps { margin: 0; padding: 0; list-style: none; }
.workflow-steps li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 0 0 27px; }
.workflow-steps li:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 44px; bottom: 5px; width: 1px; background: rgba(255,255,255,.18); }
.workflow-steps li > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #8df0b8; background: rgba(255,255,255,.06); font-size: 11px; font-weight: 800; }
.workflow-steps h3 { margin: 0 0 4px; font-size: 18px; }
.workflow-steps p { margin: 0; color: #b9cfc3; font-size: 13px; }

.phone-gallery { position: relative; min-height: 620px; display: flex; align-items: center; justify-content: center; }
.phone-gallery::before { content: ""; position: absolute; width: 470px; height: 470px; border-radius: 50%; background: rgba(57,235,141,.12); filter: blur(30px); }
.phone-shot { position: absolute; overflow: hidden; width: 218px; margin: 0; padding: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: #f4f7f5; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.phone-shot img { width: 100%; aspect-ratio: 1080 / 2408; object-fit: cover; object-position: top; border-radius: 21px; }
.phone-shot figcaption { position: absolute; left: 17px; right: 17px; bottom: 16px; padding: 8px; border-radius: 9px; color: #183b29; background: rgba(255,255,255,.91); font-size: 11px; font-weight: 750; text-align: center; backdrop-filter: blur(8px); }
.phone-shot-main { z-index: 3; width: 245px; transform: translateY(-5px); }
.phone-shot-left { z-index: 1; left: 7%; transform: translateY(25px) rotate(-7deg) scale(.87); opacity: .78; }
.phone-shot-right { z-index: 2; right: 5%; transform: translateY(25px) rotate(7deg) scale(.87); opacity: .82; }

.onboarding-section { background: #f6fbf8; }
.onboarding-shell { position: relative; overflow: hidden; padding: 76px 68px; border: 1px solid #d8e9df; border-radius: 28px; background: linear-gradient(145deg, #f8fdf9, #edf9f3); box-shadow: inset 0 1px #fff; }
.onboarding-shell::before { content: ""; position: absolute; width: 360px; height: 360px; right: -180px; top: -160px; border-radius: 50%; background: rgba(7,193,96,.09); }
.onboarding-shell > * { position: relative; z-index: 1; }
.onboarding-grid { display: grid; grid-template-columns: 1.55fr .75fr; gap: 25px; align-items: stretch; }
.onboarding-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.onboard-card { position: relative; min-width: 0; padding: 20px; border: 1px solid #dce9e1; border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: 0 12px 28px rgba(25,70,47,.06); }
.onboard-card.active { border-color: #a8dabe; box-shadow: 0 16px 36px rgba(19,113,65,.1); }
.onboard-card:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -13px; top: 50%; width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #d7e8de; border-radius: 50%; color: var(--green-dark); background: #f3fbf6; font-size: 12px; transform: translateY(-50%); }
.onboard-head { display: flex; align-items: center; gap: 9px; padding-bottom: 14px; border-bottom: 1px solid #edf2ef; }
.onboard-head > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; font-weight: 800; }
.onboard-head > div { min-width: 0; flex: 1; }
.onboard-head small { display: block; color: #95a199; font-size: 8px; }
.onboard-head h3 { margin: 0; font-size: 15px; }
.onboard-head > b { color: var(--green-dark); font-size: 7px; white-space: nowrap; }
.form-preview { padding-top: 13px; }
.form-preview label { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 4px; color: #465a4f; font-size: 8px; font-weight: 700; }
.form-preview label i { color: #9aa69f; font-size: 6px; font-style: normal; font-weight: 500; }
.fake-input { height: 29px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; border: 1px solid #dfe8e3; border-radius: 6px; color: #a1aaa5; background: #fbfcfb; font-size: 7px; }
.fake-input em { color: var(--green); font-style: normal; font-weight: 800; }
.checked-list { margin: 0; padding: 0; list-style: none; }
.checked-list.compact { padding-top: 15px; }
.checked-list li { position: relative; padding-left: 20px; color: #586a60; }
.checked-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 14px; height: 14px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 7px; font-weight: 800; }
.checked-list.compact li { margin-bottom: 13px; font-size: 9px; }

.selfcheck-card { padding: 24px; border: 1px solid #d8e8df; border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.selfcheck-title { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid #edf2ef; }
.selfcheck-title > div { position: relative; padding-left: 18px; }
.pulse-dot { position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(7,193,96,.12); }
.selfcheck-title small { display: block; color: #95a199; font-size: 8px; }
.selfcheck-title h3 { margin: 0; font-size: 17px; }
.selfcheck-title > b { padding: 5px 8px; border-radius: 10px; color: var(--green-dark); background: var(--green-soft); font-size: 8px; }
.selfcheck-card ul { margin: 14px 0 16px; padding: 0; list-style: none; }
.selfcheck-card li { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 8px 0; color: #607067; font-size: 8px; }
.selfcheck-card li b { color: var(--green-dark); font-size: 7px; }
.progress { height: 5px; overflow: hidden; border-radius: 4px; background: #e8efeb; }
.progress span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), #43dc8b); }
.selfcheck-card > p { margin: 9px 0 0; color: #7f8d85; font-size: 8px; text-align: center; }
.center-action { display: flex; flex-direction: column; align-items: center; gap: 9px; margin-top: 38px; text-align: center; }
.center-action small { color: var(--muted); font-size: 12px; }

.post-open-section { background: #fff; }
.after-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.after-card { position: relative; min-height: 245px; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.after-card:hover { transform: translateY(-4px); border-color: #c5e2d2; box-shadow: var(--shadow-sm); }
.after-card > span { position: absolute; right: 22px; top: 17px; color: #e4ebe7; font-size: 34px; font-weight: 800; }
.after-icon { position: relative; width: 49px; height: 49px; display: grid; place-items: center; border-radius: 14px; color: var(--green-dark); background: var(--green-pale); font-size: 14px; font-weight: 800; }
.lock-icon::before { content: ""; position: absolute; top: 21px; width: 22px; height: 17px; border: 2px solid var(--green-dark); border-radius: 4px; }
.lock-icon::after { content: ""; position: absolute; top: 11px; width: 13px; height: 13px; border: 2px solid var(--green-dark); border-bottom: 0; border-radius: 9px 9px 0 0; }
.home-icon::before { content: ""; width: 23px; height: 19px; margin-top: 7px; border: 2px solid var(--green-dark); border-top: 0; }
.home-icon::after { content: ""; position: absolute; top: 10px; width: 20px; height: 20px; border-left: 2px solid var(--green-dark); border-top: 2px solid var(--green-dark); transform: rotate(45deg); }
.download-icon::before { content: "↓"; font-size: 28px; line-height: 1; }
.download-icon::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 10px; height: 2px; background: var(--green-dark); }
.after-card h3 { margin: 25px 0 8px; font-size: 18px; }
.after-card p { margin: 0; color: var(--muted); font-size: 13px; }

.control-preview { display: grid; grid-template-columns: .78fr 1.22fr; gap: 45px; align-items: center; margin-top: 35px; padding: 48px; border: 1px solid var(--line); border-radius: 23px; background: linear-gradient(145deg, #f9fcfa, #f3f8f5); }
.control-copy h3 { margin: 15px 0 12px; font-size: 31px; line-height: 1.3; letter-spacing: -.035em; }
.control-copy > p { margin: 0; color: var(--muted); font-size: 14px; }
.quota-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 24px; }
.quota-row > div { padding: 11px; border: 1px solid #e1e9e4; border-radius: 10px; background: #fff; }
.quota-row span, .quota-row strong, .quota-row small { display: block; }
.quota-row span { color: var(--muted); font-size: 8px; }
.quota-row strong { margin: 3px 0; color: var(--green-dark); font-size: 17px; }
.quota-row small { color: #9aa49f; font-size: 7px; }

.tenant-table { overflow: hidden; border: 1px solid #dfe8e3; border-radius: 14px; background: #fff; box-shadow: var(--shadow-md); }
.tenant-table-head { height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid #e9efec; }
.tenant-table-head strong { font-size: 13px; }
.tenant-table-head button { padding: 7px 10px; border: 0; border-radius: 7px; color: #fff; background: var(--green); font-size: 8px; }
.tenant-row { display: grid; grid-template-columns: 1.4fr .8fr .7fr .9fr; align-items: center; min-height: 54px; padding: 0 18px; border-bottom: 1px solid #edf1ef; color: #52635a; font-size: 9px; }
.tenant-row:last-child { border-bottom: 0; }
.tenant-row.table-labels { min-height: 37px; color: #99a49e; background: #fafcfb; font-size: 7px; }
.tenant-row b, .tenant-row small { display: block; }
.tenant-row b { color: #263a2f; font-size: 9px; }.tenant-row small { color: #99a39e; font-size: 7px; }
.tenant-row i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: var(--green); }

.console-section { background: #f5f8f6; }
.admin-showcase { overflow: hidden; border: 1px solid #dbe5df; border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); }
.admin-mock { margin: 28px 28px 0; overflow: hidden; border: 1px solid #dce4df; border-radius: 14px; background: #fff; box-shadow: 0 18px 46px rgba(26,62,43,.11); }
.admin-bar { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 17px; border-bottom: 1px solid #e6ece8; }
.admin-bar > strong { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.admin-bar > strong span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: #fff; background: var(--green); font-size: 8px; }
.admin-bar > div { display: flex; gap: 12px; color: #68786f; font-size: 8px; }
.admin-bar > div b { font-weight: 600; }
.admin-bar > div i { display: inline-grid; place-items: center; width: 14px; height: 14px; border-radius: 7px; color: #fff; background: #f19536; font-size: 7px; font-style: normal; }
.admin-cols { display: grid; grid-template-columns: .76fr .9fr 1.45fr; min-height: 385px; }
.admin-col { min-width: 0; }
.admin-col + .admin-col { border-left: 1px solid #e7ede9; }
.admin-col h4 { height: 43px; display: flex; align-items: center; gap: 5px; margin: 0; padding: 0 13px; border-bottom: 1px solid #edf1ee; font-size: 10px; }
.admin-col h4 span { color: #9ca6a0; font-size: 7px; }
.admin-col h4 b { margin-left: auto; padding: 3px 8px; border: 1px solid #bee3ce; border-radius: 6px; color: var(--green-dark); font-size: 7px; }
.admin-agents { background: #f7faf8; }
.admin-agent { position: relative; display: flex; align-items: center; gap: 8px; margin: 7px; padding: 10px 8px; border-radius: 9px; }
.admin-agent.selected { background: #fff; box-shadow: 0 6px 17px rgba(27,70,47,.08); }
.admin-agent > div { min-width: 0; flex: 1; }
.admin-agent b, .admin-agent small { display: block; }
.admin-agent b { font-size: 9px; }.admin-agent small { margin-top: 2px; color: #87938c; font-size: 7px; }
.admin-agent em { padding: 3px 5px; border: 1px solid #d9e4de; border-radius: 5px; color: #66766d; font-size: 6px; font-style: normal; }
.admin-chat .chat-body { min-height: 290px; }
.best-reply { align-self: flex-end; width: 83%; padding: 8px 10px; border: 1px solid #eadba8; border-radius: 8px; color: #7f651e; background: #fff9e9; }
.best-reply b, .best-reply span { display: block; }
.best-reply b { font-size: 7px; }.best-reply span { margin-top: 3px; font-size: 6px; }

.feature-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 28px; border-top: 1px solid #e4ebe7; background: #fbfdfc; }
.feature-list-grid > div { min-height: 115px; display: flex; align-items: flex-start; gap: 11px; padding: 24px 20px; border-right: 1px solid #e7ede9; border-bottom: 1px solid #e7ede9; }
.feature-list-grid > div:nth-child(4n) { border-right: 0; }
.feature-list-grid > div:nth-child(n+5) { border-bottom: 0; }
.feature-list-grid > div > span { flex: 0 0 auto; color: #92c7a9; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.feature-list-grid p { margin: 0; }
.feature-list-grid b, .feature-list-grid small { display: block; }
.feature-list-grid b { font-size: 13px; }.feature-list-grid small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.6; }

.ai-config-section { overflow: hidden; background: #fff; }
.ai-config-section::after { content: "AI"; position: absolute; right: -35px; top: 70px; color: rgba(7,193,96,.035); font-size: 290px; line-height: 1; font-weight: 900; letter-spacing: -.1em; pointer-events: none; }
.ai-config-section .page-shell { position: relative; z-index: 1; }
.ai-config-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; align-items: stretch; }
.ai-config-mock { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); }
.tabbar { height: 54px; display: flex; align-items: end; gap: 6px; padding: 0 16px; border-bottom: 1px solid #e7ede9; background: #fafcfb; }
.tabbar span { height: 38px; display: flex; align-items: center; padding: 0 16px; border: 1px solid transparent; border-bottom: 0; border-radius: 8px 8px 0 0; color: #809087; font-size: 10px; }
.tabbar span.active { color: var(--green-dark); border-color: #dce7e1; background: #fff; font-weight: 750; }
.ai-workspace { display: grid; grid-template-columns: 1fr .85fr; gap: 14px; padding: 17px; }
.prompt-pane, .test-pane { min-width: 0; padding: 15px; border: 1px solid #e1e9e4; border-radius: 10px; background: #fbfcfb; }
.pane-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pane-title b { font-size: 9px; }.pane-title span { color: var(--green-dark); font-size: 7px; }
.code-lines { min-height: 196px; padding: 14px; border: 1px solid #e2e9e5; border-radius: 8px; background: #fff; }
.code-lines i { display: block; height: 6px; margin-bottom: 11px; border-radius: 3px; background: #e4ebe7; }
.code-lines i:nth-child(1) { width: 54%; background: #c8e8d6; }
.code-lines i:nth-child(2) { width: 88%; }.code-lines i:nth-child(3) { width: 76%; }.code-lines i:nth-child(4) { width: 93%; }.code-lines i:nth-child(5) { width: 67%; }.code-lines i:nth-child(6) { width: 81%; }
.prompt-actions { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
.prompt-actions button, .knowledge-row button { padding: 6px 10px; border: 1px solid #c7e4d3; border-radius: 6px; color: var(--green-dark); background: #fff; font-size: 7px; }
.prompt-actions button:first-child { color: #fff; border-color: var(--green); background: var(--green); }
.test-chat { min-height: 202px; display: flex; flex-direction: column; gap: 9px; padding: 11px; border: 1px solid #e2e9e5; border-radius: 8px; background: #fff; }
.test-chat p { max-width: 88%; margin: 0; padding: 8px; border-radius: 8px; color: #607067; background: #f1f5f3; font-size: 7px; }
.test-chat p:last-child { align-self: flex-start; color: #245338; background: #e9f8ef; }
.test-pane .composer { margin-top: 9px; padding: 0; border: 0; background: transparent; }

.mode-cards { display: flex; flex-direction: column; gap: 10px; }
.mode-card { position: relative; padding: 18px 18px 17px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.mode-card.selected { border-color: #a9dabe; background: var(--green-pale); box-shadow: 0 10px 25px rgba(19,113,65,.08); }
.mode-card > span { position: absolute; right: 14px; top: 13px; padding: 3px 7px; border-radius: 9px; color: var(--green-dark); background: #e0f5e9; font-size: 7px; font-weight: 800; }
.mode-card h3 { margin: 0 58px 6px 0; font-size: 13px; }
.mode-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.knowledge-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.knowledge-row b, .knowledge-row small { display: block; }
.knowledge-row b { font-size: 11px; }.knowledge-row small { overflow: hidden; max-width: 230px; margin-top: 3px; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }

.pricing-section { background: #f6f9f7; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 27px 24px 24px; border: 1px solid #dfe8e3; border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(25,64,43,.04); }
.price-card.featured { transform: translateY(-9px); border: 2px solid var(--green); box-shadow: 0 22px 52px rgba(7,122,69,.14); }
.recommend { position: absolute; right: 18px; top: -12px; padding: 6px 13px; border-radius: 15px; color: #fff; background: var(--green); font-size: 10px; font-weight: 800; box-shadow: 0 6px 14px rgba(7,193,96,.23); }
.price-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.price-head span { font-size: 19px; font-weight: 800; }.price-head small { color: var(--muted); font-size: 10px; }
.price { min-height: 54px; display: flex; align-items: baseline; margin-top: 19px; white-space: nowrap; }
.price sup { margin-right: 3px; font-size: 14px; font-weight: 750; }
.price strong { font-size: clamp(27px, 2.4vw, 35px); line-height: 1; letter-spacing: -.045em; }
.price em { margin-left: 3px; color: var(--muted); font-size: 11px; font-style: normal; }
.price-period { padding-bottom: 18px; border-bottom: 1px solid #edf1ef; color: var(--muted); font-size: 11px; }
.price-card ul { flex: 1; margin: 20px 0 24px; padding: 0; list-style: none; }
.price-card li { position: relative; margin: 12px 0; padding-left: 19px; color: #56675e; font-size: 12px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.price-card li b { color: var(--ink); }

.reply-packs { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 30px; padding: 22px 26px; border: 1px solid #dce8e1; border-radius: 15px; background: #fff; }
.reply-packs > div { display: flex; align-items: center; gap: 13px; }
.pack-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: var(--green-dark); background: var(--green-soft); font-size: 24px; font-weight: 400; }
.reply-packs p { margin: 0; }.reply-packs b, .reply-packs small { display: block; }.reply-packs b { font-size: 14px; }.reply-packs small { color: var(--muted); font-size: 10px; }
.reply-packs ul { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.reply-packs li { min-width: 135px; padding: 9px 13px; border-radius: 9px; background: #f6f9f7; }
.reply-packs li b, .reply-packs li span { display: block; }.reply-packs li b { font-size: 11px; }.reply-packs li span { color: var(--green-dark); font-size: 10px; font-weight: 750; }

.benefits { overflow: hidden; margin-top: 31px; border: 1px solid #dce6e0; border-radius: 19px; background: #fff; }
.benefits-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 28px; border-bottom: 1px solid #e4ebe7; }
.benefits-head h3 { margin: 0; font-size: 21px; }.benefits-head p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.benefits-head > span { padding: 6px 11px; border-radius: 13px; color: var(--green-dark); background: var(--green-soft); font-size: 9px; font-weight: 750; }
.table-scroll { overflow-x: auto; }
.benefits table { width: 100%; min-width: 750px; border-collapse: collapse; table-layout: fixed; }
.benefits th, .benefits td { height: 46px; padding: 8px 18px; border-right: 1px solid #edf1ef; border-bottom: 1px solid #edf1ef; text-align: center; font-size: 11px; }
.benefits th:first-child, .benefits td:first-child { width: 30%; text-align: left; }
.benefits th { color: #45584d; background: #fafcfb; font-weight: 750; }
.benefits tbody tr:last-child td { border-bottom: 0; }
.benefits th:last-child, .benefits td:last-child { border-right: 0; }
.benefits .pro-col { background: #f2fbf6; }
.benefits th.pro-col { color: var(--green-dark); }
.benefits td.yes { color: var(--green); font-size: 15px; font-weight: 900; }
.benefits td.no { color: #b6c0ba; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-grid .section-heading { position: sticky; top: 112px; margin: 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: var(--green-dark); font-weight: 750; }
.text-link span { transition: transform .18s ease; }.text-link:hover span { transform: translateX(4px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 730; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 5px; top: 50%; width: 25px; height: 25px; border: 1px solid #d7e4dd; border-radius: 50%; transform: translateY(-50%); }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 6px; right: 6px; top: 11px; height: 1px; background: var(--green-dark); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary { color: var(--green-dark); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 680px; margin: -7px 48px 24px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding-top: 30px; padding-bottom: 90px; background: #fff; }
.final-cta-card { position: relative; overflow: hidden; min-height: 310px; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 58px 64px; border-radius: 26px; color: #fff; background: linear-gradient(125deg, #063a28, #075436 58%, #087a45); box-shadow: 0 26px 68px rgba(5,63,42,.22); }
.final-cta-card > div:not(.cta-pattern), .final-cta-card > a { position: relative; z-index: 2; }
.final-cta-card > div > span { display: inline-block; margin-bottom: 12px; color: #8deab5; font-size: 12px; font-weight: 750; letter-spacing: .12em; }
.final-cta-card h2 { margin: 0; font-size: clamp(34px, 4vw, 48px); line-height: 1.25; letter-spacing: -.04em; }
.final-cta-card p { margin: 14px 0 0; color: #bdd4c7; font-size: 14px; }
.cta-pattern { position: absolute; right: -50px; top: -190px; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-pattern::before, .cta-pattern::after { content: ""; position: absolute; inset: 68px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.cta-pattern::after { inset: 135px; }

.site-footer { padding: 48px 0; color: #a9c0b4; background: #082f21; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr .7fr; gap: 40px; align-items: start; }
.footer-brand { color: #fff; }
.footer-brand strong { color: #75e7a7; }
.footer-grid > div:first-child p { max-width: 340px; margin: 14px 0 0; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px; padding-top: 9px; }
.footer-links a { font-size: 12px; }.footer-links a:hover { color: #fff; }
.footer-action { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.footer-action small { font-size: 10px; }

.has-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.65,.25,1), transform .7s cubic-bezier(.2,.65,.25,1); }
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }
.has-reveal .product-trio .reveal:nth-child(2), .has-reveal .after-grid .reveal:nth-child(2), .has-reveal .pricing-grid .reveal:nth-child(2) { transition-delay: .08s; }
.has-reveal .product-trio .reveal:nth-child(3), .has-reveal .after-grid .reveal:nth-child(3), .has-reveal .pricing-grid .reveal:nth-child(3) { transition-delay: .16s; }
.has-reveal .after-grid .reveal:nth-child(4), .has-reveal .pricing-grid .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1120px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 13px; }
  .nav-actions { gap: 9px; }
  .nav-actions .button { padding-left: 13px; padding-right: 13px; }
  .hero-grid { grid-template-columns: .85fr 1.15fr; gap: 34px; }
  .hero h1 { font-size: 54px; }
  .console-actions { display: none; }
  .onboarding-shell { padding: 66px 38px; }
  .onboarding-grid { grid-template-columns: 1fr; }
  .selfcheck-card { width: 100%; max-width: 650px; justify-self: center; }
  .price-card { padding-left: 18px; padding-right: 18px; }
  .reply-packs { align-items: flex-start; }
  .reply-packs ul { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 960px) {
  :root { --page: 760px; }
  .section { padding: 88px 0; }
  .nav-shell { position: relative; }
  .menu-toggle { display: block; margin-left: auto; order: 2; }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 16px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 30px rgba(11,52,32,.1);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 10px; border-bottom: 1px solid #edf2ef; font-size: 15px; }
  .site-nav a::after { display: none; }
  .nav-actions { order: 1; margin-left: auto; }
  .nav-login { display: none; }
  .nav-actions .button { min-height: 38px; }
  .hero { padding-top: 65px; }
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-copy { max-width: 650px; padding-bottom: 10px; }
  .hero h1 { font-size: clamp(48px, 8vw, 64px); }
  .product-stage { max-width: 720px; width: 100%; justify-self: center; }
  .floating-status-one { left: 8px; }.floating-status-two { right: 8px; }
  .product-trio { grid-template-columns: 1fr; }
  .product-card { min-height: 0; }
  .product-card p { min-height: 0; }
  .system-line { grid-template-columns: 1fr; gap: 9px; }
  .system-line > div { grid-template-columns: 35px 1fr; }
  .system-line > i { padding-left: 12px; transform: rotate(90deg); }
  .workflow-grid { grid-template-columns: 1fr; gap: 25px; }
  .phone-gallery { min-height: 610px; }
  .after-grid { grid-template-columns: repeat(2, 1fr); }
  .control-preview { grid-template-columns: 1fr; }
  .admin-mock { overflow-x: auto; }
  .admin-bar, .admin-cols { min-width: 790px; }
  .feature-list-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list-grid > div:nth-child(2n) { border-right: 0; }
  .feature-list-grid > div:nth-child(4n) { border-right: 0; }
  .feature-list-grid > div:nth-child(n+5) { border-bottom: 1px solid #e7ede9; }
  .feature-list-grid > div:nth-child(n+7) { border-bottom: 0; }
  .ai-config-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .price-card.featured { transform: none; }
  .reply-packs { flex-direction: column; }
  .reply-packs ul { width: 100%; justify-content: stretch; }
  .reply-packs li { flex: 1; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-grid .section-heading { position: static; }
  .final-cta-card { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-action { grid-column: 1 / -1; align-items: flex-start; }
}

@media (max-width: 720px) {
  .page-shell, .nav-shell { width: min(calc(100% - 30px), var(--page)); }
  .section { padding: 72px 0; }
  .section-pad { padding-left: 15px; padding-right: 15px; }
  .brand { font-size: 16px; }.brand-mark { width: 33px; height: 33px; }
  .nav-actions .button { display: none; }
  .hero { padding-top: 48px; padding-bottom: 35px; }
  .hero-copy { padding-top: 15px; }
  .hero h1 { margin-top: 17px; font-size: clamp(41px, 12vw, 54px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .console-window { transform: none; }
  .console-columns { grid-template-columns: .8fr 1.2fr; min-height: 325px; }
  .console-columns .chat-panel { display: none; }
  .floating-status { transform: scale(.88); }
  .floating-status-one { left: -3px; top: 5px; transform-origin: left; }
  .floating-status-two { right: -3px; bottom: 3px; transform-origin: right; }
  .proof-strip { grid-template-columns: 1fr; margin-top: 34px; }
  .proof-strip > div { min-height: 82px; justify-content: flex-start; padding-left: 28px; }
  .proof-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 36px; }
  .section-heading p { font-size: 15px; }
  .product-card { padding: 24px; }
  .phone-gallery { min-height: 530px; }
  .phone-shot { width: 175px; }
  .phone-shot-main { width: 205px; }
  .phone-shot-left { left: 0; }.phone-shot-right { right: 0; }
  .onboarding-shell { width: min(calc(100% - 20px), var(--page)); padding: 52px 18px; border-radius: 21px; }
  .onboarding-steps { grid-template-columns: 1fr; }
  .onboard-card:not(:last-child)::after { right: 50%; top: auto; bottom: -14px; transform: translateX(50%) rotate(90deg); }
  .onboard-head > b { font-size: 8px; }
  .form-preview label { font-size: 10px; }.fake-input { height: 34px; font-size: 9px; }
  .checked-list.compact li { font-size: 11px; }
  .selfcheck-card li { font-size: 10px; }.selfcheck-card li b { font-size: 9px; }
  .after-grid { grid-template-columns: 1fr; }
  .after-card { min-height: 215px; }
  .control-preview { padding: 27px 18px; }
  .quota-row { grid-template-columns: 1fr; }
  .tenant-table { overflow-x: auto; }
  .tenant-table-head, .tenant-row { min-width: 600px; }
  .admin-mock { margin: 14px 14px 0; }
  .feature-list-grid { grid-template-columns: 1fr; }
  .feature-list-grid > div { border-right: 0; }
  .feature-list-grid > div:nth-child(n+7) { border-bottom: 1px solid #e7ede9; }
  .feature-list-grid > div:last-child { border-bottom: 0; }
  .ai-workspace { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px; }
  .price strong { font-size: 36px; }
  .reply-packs { padding: 20px; }
  .reply-packs ul { flex-direction: column; }
  .reply-packs li { width: 100%; }
  .benefits-head { align-items: flex-start; padding: 22px 18px; }
  .benefits-head > span { display: none; }
  .faq-list summary { padding-right: 42px; font-size: 15px; }
  .final-cta { padding-top: 10px; padding-bottom: 60px; }
  .final-cta-card { min-height: 0; padding: 43px 28px; }
  .final-cta-card h2 { font-size: 34px; }
  .final-cta-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-action { grid-column: auto; }
}

@media (max-width: 420px) {
  .hero h1, .section-heading h2 { letter-spacing: -.04em; }
  .hero h1 { font-size: 39px; }
  .section-heading h2 { font-size: 32px; }
  .phone-gallery { min-height: 465px; }
  .phone-shot { width: 145px; }.phone-shot-main { width: 180px; }
  .phone-shot figcaption { left: 12px; right: 12px; bottom: 12px; font-size: 9px; }
  .final-cta-card h2 { font-size: 30px; }
}

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