:root {
  --bg: #07111f;
  --bg-2: #0f1b2d;
  --card: #162438;
  --card-2: #101c2d;
  --blue: #2f80ff;
  --blue-2: #00b7ff;
  --green: #22c55e;
  --green-2: #58f29a;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: #26364d;
  --danger: #ff5f6d;
  --warning: #f59e0b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(47,128,255,.12), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(34,197,94,.07), transparent 30rem),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 110px 0; }

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.ambient {
  position: fixed;
  width: 35rem;
  height: 35rem;
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  opacity: .18;
}
.ambient-one { background: var(--blue); top: 2rem; left: -16rem; }
.ambient-two { background: var(--green); top: 30rem; right: -22rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 14px;
  background: transparent;
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; flex-shrink: 0; }
.brand-logo { width: clamp(184px, 18vw, 268px); height: auto; display: block; filter: drop-shadow(0 0 18px rgba(47,128,255,.16)); }
.footer-logo { width: min(250px, 100%); }
.primary-nav { display: flex; align-items: center; gap: 28px; color: #dbe5f3; font-size: .93rem; }
.primary-nav a:not(.btn):hover { color: white; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); padding: 10px; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.nav-toggle span { display: block; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }
.site-header::before { content: ""; position: absolute; inset: 10px 0 auto; height: 120px; pointer-events: none; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 60%); opacity: .9; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), #2eea78);
  color: #05140c;
  box-shadow: 0 12px 32px rgba(34,197,94,.24);
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(34,197,94,.34); }
.btn-secondary { background: rgba(255,255,255,.04); border-color: var(--line); color: white; }
.btn-secondary:hover { border-color: var(--blue); background: rgba(47,128,255,.08); }
.btn-small { min-height: 40px; padding: 0 16px; border-radius: 11px; }
.primary-nav .btn-primary { box-shadow: 0 10px 26px rgba(34,197,94,.22); }

.hero { padding-top: 90px; min-height: 760px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a7c5ff;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: .98; letter-spacing: -.065em; margin-bottom: 28px; }
h1 span { background: linear-gradient(90deg, var(--blue-2), var(--green-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
h2 { font-size: clamp(2.3rem, 4vw, 4.2rem); line-height: 1.04; letter-spacing: -.055em; margin-bottom: 22px; }
h3 { font-size: 1.28rem; letter-spacing: -.03em; line-height: 1.25; margin-bottom: 12px; }
p { color: var(--muted); }
.hero-lede { font-size: 1.12rem; max-width: 670px; }
.hero-actions { display: flex; gap: 14px; margin: 32px 0 28px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; color: #cbd5e1; font-size: .86rem; }
.trust-row span::before { content: "✓"; color: var(--green); margin-right: 8px; }

.hero-visual { position: relative; perspective: 1200px; }
.ribbon-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22,36,56,.9), rgba(11,23,39,.94));
  box-shadow: var(--shadow);
}
.ribbon-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(from var(--ribbon-angle, 0deg), transparent 0 8%, rgba(47,128,255,.78) 12%, transparent 18% 45%, rgba(34,197,94,.72) 50%, transparent 57% 84%, rgba(0,183,255,.55) 91%, transparent 96%);
  animation: ribbon-spin 9s linear infinite;
}
.ribbon-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(180deg, rgba(18,31,49,.985), rgba(7,17,31,.985));
}
@keyframes ribbon-spin { to { transform: rotate(360deg); } }

.hero-console { padding: 28px; min-height: 550px; transform-style: preserve-3d; }
.console-topbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.micro-label { display: block; color: var(--blue-2); letter-spacing: .16em; font-size: .65rem; font-weight: 900; margin-bottom: 8px; }
.console-topbar h2 { font-size: 1.45rem; letter-spacing: -.04em; margin: 0; }
.status-chip { display: flex; align-items: center; gap: 8px; border: 1px solid rgba(34,197,94,.24); background: rgba(34,197,94,.08); color: #9cf7bf; border-radius: 999px; padding: 7px 11px; font-size: .72rem; }
.status-chip span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.lead-flow { padding: 25px 0; }
.flow-node { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 14px; padding: 15px; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.025); border-radius: 14px; }
.flow-node span { display: block; color: var(--muted); font-size: .72rem; }
.flow-node strong { display: block; font-size: .9rem; }
.flow-node time { color: #6f8098; font-size: .72rem; }
.node-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; font-weight: 900; }
.call-icon { color: #8cc4ff; background: rgba(47,128,255,.14); }
.sms-icon, .ai-icon { color: #9ee6ff; background: rgba(0,183,255,.12); }
.book-icon { color: #9df8bf; background: rgba(34,197,94,.14); }
.booked-node { border-color: rgba(34,197,94,.2); background: rgba(34,197,94,.045); }
.flow-link { height: 17px; margin-left: 35px; border-left: 1px dashed #355275; position: relative; }
.flow-link span { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); position: absolute; left: -2px; top: 0; box-shadow: 0 0 12px var(--blue); animation: travel 1.7s infinite linear; }
@keyframes travel { to { transform: translateY(17px); background: var(--green); } }
.console-footer { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; border-top: 1px solid var(--line); padding-top: 18px; }
.mini-stat { padding: 11px; background: rgba(255,255,255,.025); border-radius: 11px; }
.mini-stat span { display: block; color: var(--muted); font-size: .67rem; }
.mini-stat strong { font-size: .82rem; color: #dbeafe; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(47,128,255,.18); pointer-events: none; }
.orbit-one { width: 130px; height: 130px; right: -48px; top: 55px; animation: orbit-spin 11s linear infinite; }
.orbit-two { width: 88px; height: 88px; left: -35px; bottom: 80px; border-color: rgba(34,197,94,.22); animation: orbit-spin 8s linear infinite reverse; }
.orbit::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; position: absolute; top: 5px; left: 50%; box-shadow: 0 0 18px currentColor; color: var(--blue); }
.orbit-two::after { color: var(--green); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.logos-strip { padding: 0; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); background: rgba(255,255,255,.015); }
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.strip-grid div { padding: 22px 24px; color: #bac6d6; border-right: 1px solid rgba(255,255,255,.05); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
.strip-grid div:last-child { border-right: 0; }
.strip-grid span { color: var(--blue); margin-right: 9px; }

.section-heading { max-width: 830px; margin-bottom: 52px; }
.section-heading p { max-width: 720px; font-size: 1.04rem; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.split-heading p { margin-bottom: 8px; }

.pain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.pain-card { min-height: 290px; padding: 28px; transition: transform .25s ease, border-color .25s ease; }
.pain-card:hover { transform: translateY(-7px); border-color: rgba(47,128,255,.35); }
.card-number { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.18); font-size: .72rem; letter-spacing: .12em; }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(47,128,255,.1); color: #9cc9ff; margin-bottom: 40px; font-weight: 900; }
.pain-card p { font-size: .91rem; }
.problem-callout { margin-top: 34px; display: flex; align-items: center; gap: 24px; padding: 24px 0; }
.problem-callout p { margin: 0; font-size: 1.1rem; max-width: 900px; }
.callout-line { width: 80px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--green)); flex: 0 0 auto; }

.system-section { background: linear-gradient(180deg, rgba(15,27,45,.45), transparent); }
.feature-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 20px; }
.feature-primary { min-height: 620px; padding: 42px; display: grid; grid-template-columns: 1fr .72fr; gap: 36px; align-items: center; }
.feature-label { color: var(--green-2); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; margin-bottom: 14px; }
.feature-copy h3 { font-size: 2.1rem; }
.check-list { list-style: none; padding: 0; margin: 25px 0 0; }
.check-list li { color: #ced8e7; margin: 11px 0; font-size: .9rem; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: inline-grid; place-items: center; background: rgba(34,197,94,.12); color: var(--green); border-radius: 50%; margin-right: 10px; }
.phone-scene { display: flex; justify-content: center; }
.phone-shell { width: 260px; min-height: 480px; padding: 28px 16px 18px; border: 8px solid #0b1422; background: #0c1727; border-radius: 38px; box-shadow: 0 22px 60px rgba(0,0,0,.42), 0 0 0 1px #33445d; position: relative; }
.phone-notch { position: absolute; width: 82px; height: 18px; border-radius: 999px; background: #040b14; top: 9px; left: 50%; transform: translateX(-50%); }
.phone-head { display: flex; align-items: center; gap: 10px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.phone-head .avatar { width: 34px; height: 34px; border-radius: 11px; background: linear-gradient(135deg, var(--blue), var(--green)); display: grid; place-items: center; font-weight: 900; }
.phone-head strong, .phone-head span { display: block; font-size: .72rem; }
.phone-head span { color: var(--green); }
.bubble { max-width: 88%; margin: 16px 0; padding: 12px 13px; border-radius: 14px; font-size: .71rem; line-height: 1.45; }
.bubble-in { background: #15253b; border-bottom-left-radius: 4px; }
.bubble-out { background: rgba(47,128,255,.2); border: 1px solid rgba(47,128,255,.22); border-bottom-right-radius: 4px; margin-left: auto; }
.booking-chip { margin-top: 22px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.22); color: #9df7bd; text-align: center; padding: 12px; border-radius: 13px; font-size: .7rem; font-weight: 800; }
.feature-side-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.small-feature { min-height: 300px; padding: 30px; }
.small-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, rgba(47,128,255,.16), rgba(34,197,94,.1)); color: #b5d8ff; margin-bottom: 62px; }
.small-feature p { font-size: .9rem; }

.team-section { overflow: hidden; }
.team-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.role-list { margin: 30px 0; }
.role-list > div { display: grid; grid-template-columns: 14px 1fr; gap: 12px; margin: 20px 0; }
.role-list p { margin: 0; font-size: .93rem; }
.role-list strong { color: white; display: block; margin-bottom: 3px; }
.role-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; box-shadow: 0 0 16px currentColor; }
.owner-dot { background: var(--blue); color: var(--blue); }
.manager-dot { background: #9b7bff; color: #9b7bff; }
.tech-dot { background: var(--green); color: var(--green); }
.text-link { font-weight: 800; color: #dbeafe; }
.text-link span { color: var(--green); margin-left: 6px; }
.app-stage { position: relative; min-height: 570px; perspective: 1200px; }
.desktop-card { position: absolute; inset: 20px 0 0 0; min-height: 470px; transform: rotateY(-6deg) rotateX(3deg); }
.desktop-bar { height: 50px; display: grid; grid-template-columns: 110px 1fr 30px; align-items: center; border-bottom: 1px solid var(--line); padding: 0 16px; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #44536a; }
.url-pill { justify-self: center; color: #8ea2bc; font-size: .68rem; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-radius: 999px; padding: 5px 20px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.desktop-body { display: grid; grid-template-columns: 72px 1fr; min-height: 418px; }
.dash-sidebar { border-right: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; align-items: center; gap: 19px; }
.dash-logo img { width: 28px; }
.dash-sidebar > span { width: 24px; height: 24px; border-radius: 7px; background: #18283d; }
.dash-sidebar > span.active { background: rgba(47,128,255,.2); border: 1px solid rgba(47,128,255,.28); }
.dash-main { padding: 24px; }
.dash-head { display: flex; justify-content: space-between; font-size: .82rem; }
.dash-head span { color: var(--muted); }
.pipeline-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 30px; }
.pipeline-col { min-height: 280px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.045); }
.pipeline-col > span { color: var(--muted); font-size: .64rem; }
.lead-ticket { margin-top: 10px; padding: 12px; border-radius: 10px; background: #17283e; border: 1px solid #243a55; }
.lead-ticket b, .lead-ticket small { display: block; font-size: .67rem; }
.lead-ticket small { color: var(--muted); margin-top: 3px; }
.lead-ticket.blue { border-color: rgba(47,128,255,.3); background: rgba(47,128,255,.08); }
.lead-ticket.green { border-color: rgba(34,197,94,.28); background: rgba(34,197,94,.07); }
.mobile-card { position: absolute; width: 220px; min-height: 430px; right: -26px; bottom: 0; border-radius: 32px; padding: 18px 15px; border: 6px solid #09111d; background: #0d192a; box-shadow: 0 30px 70px rgba(0,0,0,.52), 0 0 0 1px #31415a; transform: rotateY(-7deg) translateZ(35px); }
.mobile-top { display: flex; justify-content: space-between; font-size: .58rem; color: #8597ad; }
.mobile-title { display: flex; align-items: center; gap: 10px; padding: 20px 0 18px; border-bottom: 1px solid var(--line); }
.mobile-title img { width: 26px; }
.mobile-title strong { font-size: .78rem; }
.mobile-item { display: grid; grid-template-columns: 32px 1fr auto; gap: 9px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.045); }
.mobile-avatar { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; font-size: .7rem; font-weight: 900; background: rgba(47,128,255,.15); color: #a9ceff; }
.mobile-avatar.alt { background: rgba(155,123,255,.14); color: #cbbbff; }
.mobile-avatar.green { background: rgba(34,197,94,.14); color: #9bf0b8; }
.mobile-item strong, .mobile-item small { display: block; font-size: .63rem; }
.mobile-item small { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 110px; }
.mobile-item > b { color: #71849d; font-size: .55rem; }
.mobile-nav { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; justify-content: space-around; padding-top: 12px; border-top: 1px solid var(--line); color: #64748b; }
.mobile-nav .selected { color: var(--blue); }

.outcomes-section { background: rgba(15,27,45,.24); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.comparison-card { padding: 36px; border-radius: var(--radius); min-height: 380px; }
.before-card { background: rgba(87,24,32,.16); border: 1px solid rgba(255,95,109,.14); }
.comparison-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.04); color: #cdd7e5; text-transform: uppercase; letter-spacing: .1em; font-size: .67rem; font-weight: 900; margin-bottom: 25px; }
.before-card .comparison-label { color: #ffadb5; background: rgba(255,95,109,.08); }
.after-card .comparison-label { color: #a5f4bf; background: rgba(34,197,94,.08); }
.comparison-card ul { list-style: none; padding: 0; margin: 0; }
.comparison-card li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid rgba(255,255,255,.05); color: #c9d4e3; }
.comparison-card li::before { position: absolute; left: 0; top: 13px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; }
.before-card li::before { content: "×"; color: #ff8a96; background: rgba(255,95,109,.08); }
.after-card li::before { content: "✓"; color: var(--green); background: rgba(34,197,94,.09); }

.voice-card { min-height: 500px; padding: 54px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.voice-copy p { max-width: 590px; }
.voice-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0 30px; }
.voice-points span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #b9c7d8; font-size: .76rem; }
.wave-panel { position: relative; height: 360px; display: grid; place-items: center; }
.wave-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(47,128,255,.22); }
.ring-a { width: 280px; height: 280px; animation: breathe 3s infinite ease-in-out; }
.ring-b { width: 220px; height: 220px; border-color: rgba(34,197,94,.2); animation: breathe 3s .5s infinite ease-in-out; }
.ring-c { width: 155px; height: 155px; animation: breathe 3s 1s infinite ease-in-out; }
@keyframes breathe { 50% { transform: scale(1.08); opacity: .45; } }
.voice-core { width: 92px; height: 92px; border-radius: 28px; background: linear-gradient(135deg, var(--blue), var(--green)); display: grid; place-items: center; font-size: 1.55rem; font-weight: 900; box-shadow: 0 0 55px rgba(47,128,255,.36); z-index: 2; }
.wave-bars { position: absolute; bottom: 20px; display: flex; align-items: center; gap: 5px; }
.wave-bars i { display: block; width: 4px; height: 18px; background: linear-gradient(var(--blue), var(--green)); border-radius: 9px; animation: waveform 1.1s infinite ease-in-out; }
.wave-bars i:nth-child(2n) { animation-delay: .12s; }
.wave-bars i:nth-child(3n) { animation-delay: .26s; }
@keyframes waveform { 50% { transform: scaleY(2.3); } }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-step { position: relative; padding: 26px 24px 34px; border-top: 1px solid var(--line); }
.process-step::before { content: ""; position: absolute; top: -1px; left: 0; width: 30%; height: 1px; background: linear-gradient(90deg,var(--blue),var(--green)); }
.process-step > span { color: var(--blue); font-size: .7rem; letter-spacing: .12em; font-weight: 900; }
.process-step h3 { margin-top: 40px; }
.process-step p { font-size: .88rem; }
.training-band { margin-top: 44px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.018); }
.training-band div { padding: 26px; border-right: 1px solid var(--line); }
.training-band div:last-child { border-right: 0; }
.training-band strong, .training-band span { display: block; }
.training-band span { color: var(--muted); font-size: .82rem; margin-top: 7px; }

.niche-section { padding-top: 40px; }
.niche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 58px; border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(47,128,255,.06), rgba(34,197,94,.035)); }
.location-chip { display: inline-flex; margin-top: 18px; color: #a7d8ff; font-size: .82rem; border-left: 2px solid var(--blue); padding-left: 12px; }
.niche-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.niche-tags span { padding: 14px 17px; border-radius: 13px; border: 1px solid var(--line); color: #b8c6d7; background: rgba(255,255,255,.02); }
.niche-tags span.featured { color: #dffff0; border-color: rgba(34,197,94,.28); background: rgba(34,197,94,.07); box-shadow: 0 0 26px rgba(34,197,94,.08); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; padding: 24px 0; font-size: 1rem; font-weight: 800; display: flex; justify-content: space-between; gap: 20px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--blue); font-size: 1.35rem; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 40px 22px 0; font-size: .9rem; }

.demo-section { padding-top: 80px; }
.demo-card { padding: 58px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.demo-benefits { display: grid; gap: 13px; margin-top: 30px; color: #ced9e7; }
.demo-benefits span { color: var(--green); margin-right: 9px; }

.calendly-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(15,27,45,.98), rgba(7,17,31,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 24px 70px rgba(0,0,0,.28);
}
.calendly-panel::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  top: -150px;
  border-radius: 50%;
  background: rgba(47,128,255,.18);
  filter: blur(50px);
  pointer-events: none;
}
.calendar-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 7px 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.calendar-panel-head h3 { margin: 5px 0 0; font-size: 1.15rem; }
.calendar-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 999px;
  color: #bdf7ce;
  background: rgba(34,197,94,.07);
  font-size: .7rem;
  font-weight: 800;
}
.calendar-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(34,197,94,.9);
  animation: calendar-pulse 1.9s ease-in-out infinite;
}
@keyframes calendar-pulse { 50% { opacity: .48; transform: scale(.72); } }
.calendly-inline-widget {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 280px;
  height: 700px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 14px;
  background: #07111f;
}
.calendly-inline-widget iframe { border-radius: 14px; }
.calendly-fallback {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 54px 28px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-radius: 14px;
  border: 1px dashed rgba(47,128,255,.34);
  background: radial-gradient(circle at 50% 20%, rgba(47,128,255,.12), transparent 48%), #0a1727;
}
.calendly-fallback[hidden] { display: none; }
.calendly-fallback p { max-width: 410px; }
.calendly-fallback code { color: #a7d8ff; }
.fallback-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 35px rgba(47,128,255,.22);
  font-size: 1.7rem;
  font-weight: 900;
}
.calendar-note {
  position: relative;
  z-index: 1;
  margin: 12px 5px 2px;
  text-align: center;
  color: #7f91a7;
  font-size: .72rem;
}

.legal-section { padding: 20px 0 60px; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.legal-grid details { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: rgba(255,255,255,.015); }
.legal-grid summary { cursor: pointer; font-weight: 800; color: #cbd5e1; }
.legal-grid p { margin: 15px 0 0; font-size: .76rem; }

.site-footer { border-top: 1px solid var(--line); padding: 55px 0 25px; background: rgba(4,10,18,.46); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; }
.footer-brand p { font-size: .85rem; margin-top: 15px; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 10px; color: var(--muted); font-size: .84rem; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact strong { color: white; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.05); display: flex; justify-content: space-between; gap: 20px; color: #718096; font-size: .72rem; }

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

@media (max-width: 1100px) {
  .hero-grid, .team-grid, .feature-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 700px; width: 100%; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
  .feature-primary { grid-template-columns: 1fr 1fr; }
  .app-stage { min-height: 620px; }
  .team-copy { max-width: 800px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .section { padding: 85px 0; }
  .primary-nav { position: fixed; top: 94px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: linear-gradient(180deg, rgba(20,33,50,.85), rgba(10,18,31,.78)); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 12px; box-shadow: 0 30px 70px rgba(0,0,0,.38); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .split-heading, .voice-card, .demo-card, .faq-grid, .niche-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 10px; }
  .strip-grid { grid-template-columns: repeat(2,1fr); }
  .strip-grid div:nth-child(2) { border-right: 0; }
  .strip-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.05); }
  .feature-primary { grid-template-columns: 1fr; }
  .feature-side-grid { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .training-band { grid-template-columns: 1fr; }
  .training-band div { border-right: 0; border-bottom: 1px solid var(--line); }
  .training-band div:last-child { border-bottom: 0; }
  .niche-grid { padding: 38px; gap: 30px; }
  .demo-card { gap: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .hero { min-height: auto; padding-top: 55px; }
  .hero-grid { gap: 45px; }
  .hero-console { padding: 18px; min-height: auto; }
  .console-topbar { align-items: center; }
  .console-topbar h2 { font-size: 1.05rem; }
  .status-chip { display: none; }
  .flow-node { grid-template-columns: 40px 1fr; }
  .flow-node time { display: none; }
  .console-footer { grid-template-columns: 1fr; }
  .pain-grid, .feature-side-grid, .process-grid, .legal-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 245px; }
  .feature-primary { padding: 28px; }
  .feature-copy h3 { font-size: 1.7rem; }
  .small-feature { min-height: 240px; }
  .small-icon { margin-bottom: 34px; }
  .app-stage { min-height: 520px; }
  .desktop-card { transform: none; inset: 0; min-height: 390px; }
  .desktop-body { grid-template-columns: 52px 1fr; min-height: 338px; }
  .dash-sidebar { padding: 12px; }
  .dash-main { padding: 15px; }
  .pipeline-columns { gap: 7px; }
  .pipeline-col:nth-child(2) { display: none; }
  .pipeline-columns { grid-template-columns: repeat(2,1fr); }
  .mobile-card { width: 188px; right: -5px; min-height: 360px; }
  .mobile-item small { max-width: 83px; }
  .voice-card { padding: 30px; }
  .wave-panel { height: 300px; }
  .ring-a { width: 235px; height: 235px; }
  .ring-b { width: 185px; height: 185px; }
  .demo-card { padding: 28px; }
  .calendly-panel { padding: 12px; }
  .calendar-panel-head { align-items: flex-start; }
  .calendar-status { display: none; }
  .calendly-inline-widget { height: 680px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .strip-grid div:last-child { border-bottom: 0; }
}

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