:root {
  --cc-bg: #f7f8fb;
  --cc-bg-soft: #ffffff;
  --cc-bg-metal: linear-gradient(135deg, #ffffff 0%, #f4f6fa 46%, #e9edf4 100%);
  --cc-bg-surface: rgba(255,255,255,0.78);
  --cc-bg-elevated: rgba(255,255,255,0.92);
  --cc-bg-glass: rgba(255,255,255,0.72);
  --cc-text: #111318;
  --cc-text-soft: #343946;
  --cc-muted: #697183;
  --cc-dim: #98a1b2;
  --cc-border: rgba(17,19,24,0.09);
  --cc-border-strong: rgba(17,19,24,0.16);
  --cc-metal-line: rgba(255,255,255,0.72);
  --cc-shadow-soft: 0 18px 50px rgba(24,32,48,0.10);
  --cc-shadow-panel: 0 28px 90px rgba(24,32,48,0.16);
  --cc-shadow-card: 0 4px 24px rgba(24,32,48,0.08);
  --cc-accent: #ff3300;
  --cc-accent-action: #c92e0b;
  --cc-accent-soft: rgba(255,51,0,0.10);
  --cc-vertical: #1e3a5f;
  --cc-vertical-soft: rgba(30,58,95,0.10);
  --cc-vertical-2: #b08d57;
  --cc-radius-sm: 8px;
  --cc-radius-md: 12px;
  --cc-radius-lg: 16px;
  --cc-radius-xl: 24px;
  --cc-radius-full: 9999px;
  --cc-text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --cc-text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --cc-text-base: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  --cc-text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --cc-text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --cc-text-2xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --cc-text-3xl: clamp(1.875rem, 1.4rem + 1.8vw, 2.5rem);
  --cc-text-4xl: clamp(2.25rem, 1.6rem + 2.5vw, 3.5rem);
  --cc-text-5xl: clamp(3rem, 2rem + 3.5vw, 4.5rem);
  --cc-space-xs: 0.5rem;
  --cc-space-sm: 1rem;
  --cc-space-md: 1.5rem;
  --cc-space-lg: 2rem;
  --cc-space-xl: 3rem;
  --cc-space-2xl: 4rem;
  --cc-space-3xl: 6rem;
  --cc-space-4xl: 8rem;
  --cc-transition-fast: 150ms ease;
  --cc-transition-base: 250ms ease;
  --cc-transition-slow: 400ms ease;
  --cc-transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cc-bg); color: var(--cc-text); font-family: "Outfit", sans-serif; font-size: var(--cc-text-base); line-height: 1.7; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: 0; }
h1, h2, h3 { font-weight: 700; }
p { color: var(--cc-text-soft); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(201,46,11,.55); outline-offset: 3px; }
.cc-container { width: min(1200px, calc(100% - 4rem)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 1000; top: 1rem; left: 1rem; transform: translateY(-160%); padding: .65rem 1rem; border-radius: var(--cc-radius-sm); background: var(--cc-text); color: #fff; transition: transform var(--cc-transition-fast); }
.skip-link:focus { transform: translateY(0); }

/* Shared surfaces and actions */
.section-light { background: var(--cc-bg-soft); }
.section-soft { background: #f1f4f8; }
.section-metal { background: var(--cc-bg-metal); }
.section-dark { background: var(--cc-vertical); color: #fff; }
.section-kicker, .eyebrow { display: block; color: var(--cc-vertical); font-size: var(--cc-text-xs); font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.section-kicker { margin-bottom: 1rem; }
.eyebrow { color: var(--cc-muted); font-size: .68rem; }
.cc-badge { display: inline-flex; width: fit-content; align-items: center; gap: .4rem; padding: .48rem .78rem; border: 1px solid rgba(30,58,95,.18); border-radius: var(--cc-radius-full); background: var(--cc-vertical-soft); color: var(--cc-vertical); font-size: .7rem; font-weight: 700; line-height: 1; }
.cc-btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .6rem; padding: .78rem 1.15rem; border: 1px solid transparent; border-radius: var(--cc-radius-lg); font-size: var(--cc-text-sm); font-weight: 600; letter-spacing: 0; line-height: 1; transition: transform var(--cc-transition-base), background var(--cc-transition-base), box-shadow var(--cc-transition-base), color var(--cc-transition-base); }
.cc-btn:hover { transform: scale(1.02); }
.cc-btn-primary { background: var(--cc-accent-action); box-shadow: 0 8px 22px rgba(201,46,11,.16); color: #fff; }
.cc-btn-primary:hover { background: #a82408; box-shadow: 0 12px 28px rgba(201,46,11,.22); }
.cc-btn-secondary { border-color: var(--cc-border-strong); background: transparent; color: var(--cc-text); }
.cc-btn-secondary:hover { border-color: rgba(255,51,0,.28); background: var(--cc-accent-soft); }
.cc-btn-small { min-height: 39px; padding: .63rem .9rem; font-size: .82rem; }
.cc-btn-light { background: #fff; color: var(--cc-vertical); }
.cc-btn-light:hover { background: #f0f4f9; }
.cc-btn-whatsapp { border-color: rgba(255,255,255,.34); color: #fff; }
.cc-btn-whatsapp:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.full-btn { width: 100%; margin-top: auto; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--cc-vertical); font-size: var(--cc-text-sm); font-weight: 600; }
.text-link span { color: var(--cc-accent); transition: transform var(--cc-transition-fast); }
.text-link:hover span { transform: translate(3px, -2px); }
.cc-card { transition: transform var(--cc-transition-base), box-shadow var(--cc-transition-base); }
.cc-card:hover { transform: translateY(-4px); box-shadow: var(--cc-shadow-panel); }
.cc-grad { background: linear-gradient(90deg, var(--cc-vertical), var(--cc-accent)); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cc-animate { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.cc-animate.is-visible { opacity: 1; transform: none; }
.cc-stagger:nth-child(1) { transition-delay: 0ms; }
.cc-stagger:nth-child(2) { transition-delay: 90ms; }
.cc-stagger:nth-child(3) { transition-delay: 180ms; }
.cc-stagger:nth-child(4) { transition-delay: 270ms; }
.cc-stagger:nth-child(5) { transition-delay: 360ms; }

/* Navbar */
.site-header { position: fixed; z-index: 50; top: 0; width: 100%; border-bottom: 1px solid transparent; background: transparent; transition: background var(--cc-transition-base), border-color var(--cc-transition-base), box-shadow var(--cc-transition-base); }
.site-header.is-scrolled { border-color: var(--cc-border); background: var(--cc-bg-glass); box-shadow: 0 6px 24px rgba(24,32,48,.06); backdrop-filter: blur(16px); }
.nav { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 1.35rem; color: var(--cc-muted); font-size: .88rem; }
.nav-menu > a:not(.cc-btn) { transition: color var(--cc-transition-fast); }
.nav-menu > a:not(.cc-btn):hover { color: var(--cc-text); }
.nav-cta { margin-left: .4rem; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: .6rem; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-sm); background: rgba(255,255,255,.72); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 1.5px; margin: 4px auto; background: var(--cc-text); transition: transform var(--cc-transition-fast), opacity var(--cc-transition-fast); }

/* Hero */
.hero { position: relative; min-height: 88vh; padding: 9.8rem 0 3rem; overflow: hidden; }
.hero::before { position: absolute; top: 16%; right: -9%; width: 39rem; height: 25rem; border-radius: 50%; background: radial-gradient(ellipse, rgba(255,255,255,.72), transparent 68%); content: ""; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; min-height: 635px; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; gap: 4rem; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 2rem; }
.hero-copy h1 { max-width: 650px; margin: 1.45rem 0 1.6rem; font-size: var(--cc-text-5xl); line-height: 1.04; }
.hero-lead { max-width: 595px; margin-bottom: 2rem; font-size: var(--cc-text-lg); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-proof { display: flex; align-items: center; gap: .5rem; margin-top: 1.55rem; color: var(--cc-muted); font-size: .82rem; }
.proof-dot { width: 8px; height: 8px; border-radius: 50%; background: #2f9d73; box-shadow: 0 0 0 4px rgba(47,157,115,.12); }
.hero-visual { position: relative; z-index: 1; min-width: 0; perspective: 1300px; }
.hero-window { position: relative; width: 100%; overflow: hidden; transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg); border: 1px solid rgba(17,19,24,.11); border-radius: 19px; background: rgba(255,255,255,.94); box-shadow: var(--cc-shadow-panel); }
.window-topbar, .mock-header { display: flex; height: 43px; align-items: center; justify-content: space-between; padding: 0 1rem; border-bottom: 1px solid var(--cc-border); background: rgba(248,249,251,.9); color: var(--cc-muted); font-size: .69rem; }
.window-dots { display: inline-flex; gap: 5px; }
.window-dots i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #c6cad1; }
.window-dots i:first-child { background: #db9889; }
.window-dots i:last-child { background: #9eb4a4; }
.window-status { color: var(--cc-dim); font-size: .67rem; }
.hero-window-content { padding: 1.35rem 1.45rem 1.55rem; }
.window-heading, .stage-top, .stage-main-heading, .mock-toolbar, .mini-top, .booking-date, .booking-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.window-heading strong { display: block; margin-top: .25rem; font-size: 1.35rem; }
.window-count, .mock-pill { padding: .35rem .6rem; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-sm); color: var(--cc-muted); font-size: .72rem; }
.inbox-filters { display: flex; gap: 1.25rem; margin: 1.45rem 0 .6rem; border-bottom: 1px solid var(--cc-border); color: var(--cc-muted); font-size: .77rem; }
.inbox-filters span { padding-bottom: .65rem; }
.inbox-filters .filter-active { border-bottom: 2px solid var(--cc-accent); color: var(--cc-text); }
.inbox-filters b { margin-left: .22rem; font-weight: 500; color: var(--cc-dim); }
.inbox-row { display: grid; grid-template-columns: 30px minmax(0,1fr) auto 48px; align-items: center; gap: .7rem; padding: .86rem .35rem; border-bottom: 1px solid rgba(17,19,24,.06); font-size: .77rem; }
.inbox-row:hover { background: #fafbfc; }
.row-main { display: grid; gap: .1rem; min-width: 0; }
.row-main strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .79rem; }
.row-main span, .inbox-row time { color: var(--cc-muted); font-size: .69rem; }
.avatar { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: 50%; background: #e9edf2; color: var(--cc-vertical); font-size: .6rem; font-style: normal; font-weight: 700; }
.avatar-navy { background: #dce7f2; color: #1e3a5f; }
.avatar-gold { background: #efe6d9; color: #8a6a3f; }
.avatar-blue { background: #dfe8f3; color: #486d91; }
.avatar-slate { background: #e4e8ed; color: #667181; }
.avatar-light { background: #f0f2f4; color: #7e8794; }
.priority-tag { display: inline-flex; width: fit-content; align-items: center; padding: .28rem .48rem; border-radius: var(--cc-radius-full); font-size: .63rem; font-style: normal; font-weight: 700; line-height: 1; }
.priority-tag.high { background: #fae2df; color: #a23e32; }
.priority-tag.medium { background: #f6ebd9; color: #906a30; }
.priority-tag.low { background: #e4edf1; color: #4a6e7b; }
.hero-float-card { position: absolute; right: -4%; bottom: -4%; display: flex; align-items: center; gap: .65rem; padding: .75rem .9rem; border: 1px solid rgba(17,19,24,.09); border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: var(--cc-shadow-card); transform: rotate(2deg); }
.float-check { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 50%; background: #e2f3ea; color: #2e855d; font-size: .78rem; }
.hero-float-card strong, .hero-float-card small { display: block; line-height: 1.2; }
.hero-float-card strong { font-size: .72rem; }
.hero-float-card small { margin-top: .18rem; color: var(--cc-muted); font-size: .64rem; }
.metal-reflection, .metal-reflection::after { position: absolute; inset: 0; pointer-events: none; }
.metal-reflection { z-index: 3; overflow: hidden; border-radius: 19px; }
.metal-reflection::after { top: -50%; left: -35%; width: 32%; height: 210%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.33), transparent); transform: rotate(18deg); animation: metalShine 7s ease-in-out infinite; content: ""; }
.hero-bottom-line { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; color: var(--cc-muted); font-size: .75rem; }
.hero-bottom-line .line { height: 1px; flex: 1; background: var(--cc-border-strong); }

/* Metrics and headings */
.impact-strip { border-top: 1px solid var(--cc-border); border-bottom: 1px solid var(--cc-border); background: var(--cc-bg-metal); }
.impact-strip { padding: 0 !important; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-item { min-height: 140px; padding: 1.8rem 1.7rem; border-right: 1px solid var(--cc-border); }
.impact-item:first-child { padding-left: 0; }
.impact-item:last-child { border-right: 0; }
.impact-item strong { display: block; margin-bottom: .25rem; color: var(--cc-vertical); font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem); font-weight: 700; line-height: 1; }
.impact-item span { display: block; max-width: 190px; color: var(--cc-muted); font-size: .77rem; line-height: 1.35; }
section:not(.hero) { padding: var(--cc-space-4xl) 0; }
.footer-section { padding: 0 !important; }
.section-heading { max-width: 710px; }
.section-heading h2 { margin-bottom: 1.1rem; font-size: var(--cc-text-4xl); }
.section-heading p { max-width: 640px; margin-bottom: 0; line-height: 1.65; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered p { margin-right: auto; margin-left: auto; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); align-items: end; gap: 5rem; margin-bottom: 3.5rem; }
.split-heading h2 { margin-bottom: 0; }

/* Problem */
.problem .section-heading { margin-bottom: 3.25rem; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pain-card { min-height: 260px; padding: 1.5rem; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-lg); background: #fff; box-shadow: var(--cc-shadow-card); }
.line-icon { display: inline-flex; width: 41px; height: 41px; align-items: center; justify-content: center; margin-bottom: 2rem; border: 1px solid rgba(30,58,95,.18); border-radius: 50%; background: var(--cc-vertical-soft); color: var(--cc-vertical); }
.line-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.pain-card h3 { max-width: 190px; margin-bottom: .65rem; font-size: 1.15rem; }
.pain-card p { margin-bottom: 0; font-size: .87rem; line-height: 1.55; }

/* Solution overview */
.solution .section-heading { margin-bottom: 3.5rem; }
.solution-stage { position: relative; overflow: hidden; border: 1px solid rgba(17,19,24,.12); border-radius: var(--cc-radius-xl); background: #fff; box-shadow: var(--cc-shadow-panel); }
.stage-top { min-height: 60px; padding: 0 1.35rem; border-bottom: 1px solid var(--cc-border); background: #fbfcfd; color: var(--cc-muted); font-size: .76rem; }
.stage-brand { display: flex; align-items: center; gap: .6rem; color: var(--cc-text); font-weight: 600; }
.stage-mark { display: inline-flex; width: 25px; height: 25px; align-items: center; justify-content: center; border-radius: 7px; background: var(--cc-vertical); color: #fff; font-size: .8rem; }
.stage-period { margin-left: auto; }
.stage-button { padding: .4rem; border: 0; background: transparent; color: var(--cc-dim); cursor: pointer; }
.stage-body { display: grid; grid-template-columns: 170px 1fr; min-height: 390px; }
.stage-sidebar { display: flex; flex-direction: column; gap: .35rem; padding: 1.25rem .85rem; border-right: 1px solid var(--cc-border); background: #fafbfc; color: var(--cc-muted); font-size: .74rem; }
.stage-sidebar > span { padding: .6rem .65rem; border-radius: 7px; }
.stage-sidebar .sidebar-active { background: var(--cc-vertical-soft); color: var(--cc-vertical); font-weight: 600; }
.stage-sidebar b { float: right; color: var(--cc-accent); font-weight: 600; }
.sidebar-bottom { display: flex; align-items: center; gap: .45rem; margin-top: auto; padding: .65rem .2rem 0; border-top: 1px solid var(--cc-border); font-size: .68rem; }
.sidebar-avatar { display: inline-flex; width: 25px; height: 25px; align-items: center; justify-content: center; border-radius: 50%; background: #e1e8f0; color: var(--cc-vertical); font-size: .58rem; font-weight: 700; }
.stage-main { padding: 1.5rem 1.7rem; }
.stage-main-heading h3 { margin: .28rem 0 0; font-size: 1.25rem; }
.stage-link { color: var(--cc-vertical); font-size: .75rem; }
.stage-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.45rem 0 1.7rem; }
.stage-stats > div { padding: 1rem; border: 1px solid var(--cc-border); border-radius: 10px; background: #fcfcfd; }
.stage-stats span, .stage-stats small { display: block; color: var(--cc-muted); font-size: .68rem; }
.stage-stats strong { display: block; margin: .2rem 0; font-size: 1.5rem; line-height: 1.15; }
.stage-stats small { color: #398062; }
.stage-table { border: 1px solid var(--cc-border); border-radius: 10px; overflow: hidden; }
.table-head, .table-row { display: grid; grid-template-columns: 1.35fr .9fr .7fr 1fr; align-items: center; gap: 1rem; padding: .72rem 1rem; }
.table-head { border-bottom: 1px solid var(--cc-border); background: #fafbfc; color: var(--cc-muted); font-size: .63rem; }
.table-row { min-height: 49px; border-bottom: 1px solid var(--cc-border); color: var(--cc-muted); font-size: .72rem; }
.table-row:last-child { border-bottom: 0; }
.person { display: flex; align-items: center; gap: .5rem; min-width: 0; }
.person strong { overflow: hidden; color: var(--cc-text); text-overflow: ellipsis; white-space: nowrap; font-size: .74rem; }

/* Feature section and tabs */
.features .section-heading { margin-bottom: 3.5rem; }
.tabs-demo { margin-bottom: 6.5rem; padding: .75rem; border: 1px solid rgba(30,58,95,.13); border-radius: var(--cc-radius-xl); background: var(--cc-vertical-soft); box-shadow: var(--cc-shadow-soft); }
.tabs-nav { display: flex; gap: .35rem; width: fit-content; padding: .3rem; margin-bottom: .75rem; border: 1px solid var(--cc-border); border-radius: 10px; background: rgba(255,255,255,.62); }
.tab-button { padding: .6rem .9rem; border: 0; border-radius: 7px; background: transparent; color: var(--cc-muted); cursor: pointer; font-size: .78rem; font-weight: 600; }
.tab-button:hover, .tab-button:focus-visible { color: var(--cc-text); }
.tab-button.is-active { background: #fff; box-shadow: 0 2px 8px rgba(24,32,48,.08); color: var(--cc-vertical); }
.tab-panels { overflow: hidden; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-lg); background: rgba(255,255,255,.8); }
.tab-panel { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 4rem; min-height: 330px; padding: 2.2rem 2.5rem; animation: tabIn .35s ease both; }
.tab-panel[hidden] { display: none; }
.tab-panel-copy h3 { margin: 0 0 .8rem; font-size: var(--cc-text-2xl); }
.tab-panel-copy p { max-width: 390px; margin-bottom: 1.4rem; font-size: .91rem; }
.tab-panel-copy small { display: block; margin-top: .65rem; color: var(--cc-muted); font-size: .68rem; }
.tab-progress { width: min(220px, 100%); height: 5px; overflow: hidden; border-radius: 4px; background: #dce1e8; }
.tab-progress span { display: block; width: 60%; height: 100%; border-radius: inherit; background: var(--cc-accent); }
.mini-intake, .mini-inbox, .mini-calendar { width: min(100%, 470px); justify-self: end; padding: 1.3rem; border: 1px solid var(--cc-border); border-radius: 13px; background: #fff; box-shadow: var(--cc-shadow-card); }
.mini-intake strong { display: block; margin: 1.25rem 0 .9rem; font-size: 1.03rem; }
.mini-top { color: var(--cc-muted); font-size: .72rem; }
.mini-top b { color: var(--cc-vertical); font-size: .68rem; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.option-grid span { position: relative; padding: .8rem .7rem; border: 1px solid var(--cc-border); border-radius: 8px; color: var(--cc-text-soft); font-size: .72rem; }
.option-grid .selected { border-color: rgba(30,58,95,.35); background: var(--cc-vertical-soft); color: var(--cc-vertical); font-weight: 600; }
.option-grid i { position: absolute; top: .35rem; right: .45rem; font-size: .65rem; font-style: normal; }
.mini-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; color: var(--cc-muted); font-size: .68rem; }
.mini-footer b { color: var(--cc-accent); }
.mini-inbox { display: grid; gap: .75rem; }
.mini-inbox-row { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; align-items: center; gap: .6rem; padding-bottom: .7rem; border-bottom: 1px solid var(--cc-border); }
.mini-inbox-row:last-child { padding-bottom: 0; border-bottom: 0; }
.mini-inbox-row span:nth-child(2) { display: grid; gap: .08rem; min-width: 0; }
.mini-inbox-row b { overflow: hidden; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.mini-inbox-row small { overflow: hidden; color: var(--cc-muted); font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.mini-inbox-row i { font-style: normal; }
.calendar-week, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: .45rem; text-align: center; }
.calendar-week { margin: 1.2rem 0 .6rem; color: var(--cc-muted); font-size: .64rem; }
.calendar-days span { padding: .65rem .2rem; border-radius: 7px; color: var(--cc-text-soft); font-size: .72rem; }
.calendar-days .today { background: var(--cc-vertical); color: #fff; }
.calendar-days .marked { background: #e9eff5; color: var(--cc-vertical); font-weight: 700; }
.calendar-days .marked.gold { background: #f3eadb; color: #866536; }
.calendar-note { display: flex; align-items: flex-start; gap: .55rem; margin-top: 1.1rem; padding: .7rem; border-radius: 8px; background: #f7f8fb; color: var(--cc-muted); font-size: .67rem; line-height: 1.4; }
.calendar-note i { width: 6px; height: 6px; margin-top: .3rem; border-radius: 50%; background: var(--cc-accent); }
.calendar-note b { display: block; color: var(--cc-text); }
.feature-list { display: grid; gap: 7.5rem; }
.feature-row { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); align-items: center; gap: 5.3rem; }
.feature-row--reverse { grid-template-columns: minmax(0, .97fr) minmax(0, 1.03fr); }
.feature-row--reverse .feature-visual { order: 2; }
.feature-row--reverse .feature-copy { order: 1; }
.feature-visual { position: relative; min-width: 0; }
.feature-copy .cc-badge { margin-bottom: 1.25rem; }
.feature-copy h3 { margin-bottom: 1rem; font-size: var(--cc-text-3xl); }
.feature-copy p { margin-bottom: 1.35rem; font-size: .98rem; line-height: 1.68; }
.image-frame { position: relative; overflow: hidden; min-height: 350px; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-xl); background: #eef2f5; box-shadow: var(--cc-shadow-panel); }
.image-frame::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.62); border-radius: inherit; content: ""; pointer-events: none; }
.image-frame img { width: 100%; height: 100%; min-height: 350px; object-fit: cover; }
.visual-label { position: absolute; z-index: 2; left: 1rem; padding: .42rem .6rem; border: 1px solid rgba(17,19,24,.1); border-radius: 6px; background: rgba(255,255,255,.9); color: var(--cc-vertical); font-size: .63rem; font-weight: 700; }
.label-top { top: 1rem; }
.label-bottom { bottom: 1rem; }
.visual-result { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; display: flex; align-items: center; gap: .55rem; padding: .7rem .78rem; border: 1px solid rgba(17,19,24,.1); border-radius: 9px; background: rgba(255,255,255,.92); box-shadow: var(--cc-shadow-card); }
.result-dot { width: 8px; height: 8px; border-radius: 50%; background: #378b67; box-shadow: 0 0 0 4px rgba(55,139,103,.12); }
.visual-result b, .visual-result small { display: block; line-height: 1.25; }
.visual-result b { font-size: .7rem; }
.visual-result small { margin-top: .15rem; color: var(--cc-muted); font-size: .63rem; }
.mock-window { overflow: hidden; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-xl); background: #fff; box-shadow: var(--cc-shadow-panel); }
.intake-feature-mock, .agenda-feature-mock, .portal-feature-mock { position: relative; min-height: 390px; }
.intake-feature-body { padding: 2rem 1.8rem 4.4rem; }
.intake-feature-body h4 { max-width: 360px; margin: .65rem 0 1.4rem; font-size: 1.4rem; }
.feature-options { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.feature-options span { position: relative; padding: 1rem .8rem; border: 1px solid var(--cc-border); border-radius: 9px; color: var(--cc-text-soft); font-size: .76rem; }
.feature-options span.is-selected { border-color: rgba(30,58,95,.35); background: var(--cc-vertical-soft); color: var(--cc-vertical); font-weight: 600; }
.feature-options i { position: absolute; top: .35rem; right: .45rem; font-size: .65rem; font-style: normal; }
.feature-mock-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; color: var(--cc-muted); font-size: .7rem; }
.feature-mock-footer b { color: var(--cc-accent); }
.feature-result { position: absolute; right: 1.1rem; bottom: 1rem; display: flex; align-items: center; gap: .55rem; padding: .7rem .78rem; border: 1px solid rgba(17,19,24,.1); border-radius: 9px; background: #fff; box-shadow: var(--cc-shadow-card); }
.feature-result b, .feature-result small { display: block; line-height: 1.25; }
.feature-result b { font-size: .7rem; }
.feature-result small { margin-top: .15rem; color: var(--cc-muted); font-size: .63rem; }
.agenda-feature-body { padding: 1.7rem 1.8rem; }
.agenda-month { display: flex; align-items: center; justify-content: space-between; color: var(--cc-vertical); font-size: .82rem; }
.agenda-month span { color: var(--cc-muted); }
.agenda-week, .agenda-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: .45rem; text-align: center; }
.agenda-week { margin: 1.5rem 0 .6rem; color: var(--cc-muted); font-size: .65rem; }
.agenda-days span { padding: .7rem .2rem; border-radius: 7px; color: var(--cc-text-soft); font-size: .75rem; }
.agenda-days .current { background: var(--cc-vertical); color: #fff; }
.agenda-days .deadline { background: #f3eadb; color: #866536; font-weight: 700; }
.agenda-event { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1.15rem; padding: .75rem; border-radius: 8px; background: #f7f8fb; color: var(--cc-muted); font-size: .68rem; line-height: 1.4; }
.agenda-event i { width: 6px; height: 6px; margin-top: .3rem; flex: 0 0 auto; border-radius: 50%; background: var(--cc-accent); }
.agenda-event b { display: block; color: var(--cc-text); }
.agenda-event.blue-event { margin-top: .55rem; background: var(--cc-vertical-soft); }
.agenda-event.blue-event i { background: var(--cc-vertical); }
.portal-feature-body { padding: 1.7rem 1.8rem; }
.portal-feature-body h4 { margin: .55rem 0 .2rem; font-size: 1.35rem; }
.portal-status { display: inline-flex; padding: .35rem .55rem; border-radius: var(--cc-radius-full); background: #e5f3eb; color: #31855f; font-size: .65rem; font-weight: 600; }
.portal-line { position: relative; display: flex; align-items: flex-start; gap: .7rem; padding: 1rem 0 0; }
.portal-line:not(:last-child)::after { position: absolute; top: 28px; bottom: -7px; left: 11px; width: 1px; background: var(--cc-border-strong); content: ""; }
.portal-dot { position: relative; z-index: 1; display: inline-flex; width: 23px; height: 23px; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid var(--cc-border-strong); border-radius: 50%; background: #fff; color: var(--cc-dim); font-size: .62rem; }
.portal-dot.done { border-color: #87c3a3; background: #e5f3eb; color: #31855f; }
.portal-dot.active { border: 5px solid #d9e6f0; background: var(--cc-vertical); }
.portal-line b, .portal-line small { display: block; line-height: 1.35; }
.portal-line b { font-size: .73rem; }
.portal-line small { margin-top: .12rem; color: var(--cc-muted); font-size: .64rem; }
.mock-brand { display: flex; align-items: center; gap: .4rem; color: var(--cc-text); font-weight: 600; }
.mock-brand i { width: 8px; height: 8px; border-radius: 3px; background: var(--cc-vertical); }
.mock-toolbar { padding: 1rem 1.15rem; border-bottom: 1px solid var(--cc-border); color: var(--cc-muted); font-size: .71rem; }
.mock-toolbar strong { color: var(--cc-text); font-size: .83rem; }
.mock-list { padding: .2rem .8rem; }
.mock-list-row { display: grid; grid-template-columns: 28px minmax(0,1fr) auto 28px; align-items: center; gap: .55rem; padding: .85rem .35rem; border-bottom: 1px solid var(--cc-border); }
.mock-list-row:last-child { border-bottom: 0; }
.mock-person { display: grid; gap: .05rem; min-width: 0; }
.mock-person b { overflow: hidden; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.mock-person small { overflow: hidden; color: var(--cc-muted); font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.assigned { display: inline-flex; width: 25px; height: 25px; align-items: center; justify-content: center; border-radius: 50%; background: var(--cc-vertical-soft); color: var(--cc-vertical); font-size: .57rem; font-weight: 700; }
.booking-body, .upload-body { padding: 1.65rem; }
.booking-body h4, .upload-body h4 { max-width: 330px; margin: .65rem 0 1.5rem; font-size: 1.25rem; }
.booking-date { padding: .65rem 0; border-top: 1px solid var(--cc-border); border-bottom: 1px solid var(--cc-border); }
.booking-date button { border: 0; background: transparent; color: var(--cc-muted); cursor: pointer; }
.booking-date strong { color: var(--cc-vertical); font-size: .72rem; }
.time-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin: 1rem 0; }
.time-grid span { padding: .7rem; border: 1px solid var(--cc-border); border-radius: 8px; color: var(--cc-muted); font-size: .71rem; text-align: center; }
.time-grid .time-selected { border-color: var(--cc-vertical); background: var(--cc-vertical); color: #fff; }
.booking-bottom { padding-top: .8rem; border-top: 1px solid var(--cc-border); color: var(--cc-muted); font-size: .68rem; }
.booking-bottom b { color: var(--cc-accent); }
.secure-mark { color: #31855f; font-size: .65rem; }
.upload-body p { max-width: 320px; margin-bottom: 1.1rem; font-size: .78rem; }
.drop-zone { display: grid; justify-items: center; gap: .3rem; padding: 1.35rem; border: 1px dashed rgba(30,58,95,.3); border-radius: 10px; background: var(--cc-vertical-soft); text-align: center; }
.upload-icon { display: inline-flex; width: 29px; height: 29px; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: var(--cc-vertical); font-weight: 700; }
.drop-zone b { font-size: .74rem; }
.drop-zone small { color: var(--cc-muted); font-size: .62rem; }
.file-row { display: grid; grid-template-columns: 29px 1fr auto; align-items: center; gap: .55rem; margin-top: 1rem; padding: .65rem; border: 1px solid var(--cc-border); border-radius: 8px; }
.file-icon { display: inline-flex; width: 29px; height: 29px; align-items: center; justify-content: center; border-radius: 6px; background: #fae3df; color: #a23e32; font-size: .58rem; font-weight: 700; }
.file-row b, .file-row small { display: block; line-height: 1.25; }
.file-row b { overflow: hidden; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.file-row small { color: var(--cc-muted); font-size: .6rem; }
.file-row > i { color: #31855f; font-style: normal; }

/* How it works */
.how-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); align-items: center; gap: 6rem; }
.how-copy .section-heading { margin-bottom: 3rem; }
.timeline { position: relative; display: grid; gap: 1.15rem; }
.timeline::before { position: absolute; top: 17px; bottom: 17px; left: 18px; width: 1px; background: rgba(30,58,95,.22); content: ""; }
.timeline-step { position: relative; display: grid; grid-template-columns: 38px 1fr; gap: 1rem; }
.timeline-number { position: relative; z-index: 1; display: inline-flex; width: 37px; height: 37px; align-items: center; justify-content: center; border: 1px solid rgba(30,58,95,.24); border-radius: 50%; background: #f1f4f8; color: var(--cc-vertical); font-size: .66rem; font-weight: 700; }
.timeline-step h3 { margin: .15rem 0 .25rem; font-size: 1.05rem; }
.timeline-step p { margin-bottom: 0; font-size: .82rem; line-height: 1.45; }
.processor-shell { overflow: hidden; border: 1px solid rgba(30,58,95,.16); border-radius: var(--cc-radius-xl); background: rgba(255,255,255,.83); box-shadow: var(--cc-shadow-soft); }
.processor-bar { display: flex; height: 45px; align-items: center; gap: .7rem; padding: 0 1rem; border-bottom: 1px solid var(--cc-border); color: var(--cc-muted); font-size: .7rem; }
.processor-live { margin-left: auto; color: #368a64; font-size: .65rem; }
.processor-body { padding: 2rem; }
.processor-body h3 { margin: .55rem 0 .45rem; font-size: 1.55rem; }
.processor-body > p { margin-bottom: 1.75rem; font-size: .82rem; }
.processor-tasks { display: grid; gap: .75rem; margin-bottom: 1.7rem; color: var(--cc-muted); font-size: .76rem; }
.processor-tasks span { display: flex; align-items: center; gap: .6rem; }
.processor-tasks i { display: inline-flex; width: 18px; height: 18px; align-items: center; justify-content: center; border: 1px solid var(--cc-border-strong); border-radius: 50%; font-size: .62rem; font-style: normal; }
.processor-tasks .task-done { color: var(--cc-text-soft); }
.processor-tasks .task-done i { border-color: #79b99a; background: #e5f3eb; color: #31855f; }
.processor-tasks .task-active { color: var(--cc-vertical); font-weight: 600; }
.processor-tasks .task-active i { border-color: var(--cc-vertical); box-shadow: inset 0 0 0 4px #fff; background: var(--cc-vertical); }
.progress-bar { height: 7px; margin-bottom: 1.4rem; overflow: hidden; border-radius: 4px; background: #dce1e7; }
.progress-bar span { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--cc-accent); }
.processor-log { padding: 1rem; border-radius: 9px; background: #f2f5f8; color: var(--cc-muted); font-family: monospace; font-size: .63rem; line-height: 2; }
.processor-log span { color: var(--cc-vertical); }
.processor-log b { margin-left: .4rem; color: #31855f; }

/* Comparison */
.compare .section-heading { margin-bottom: 3rem; }
.compare-grid { position: relative; display: grid; grid-template-columns: 1fr 80px 1fr; align-items: stretch; padding: 1rem; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-xl); background: linear-gradient(115deg, #f5f7fa, #eaf0f5); box-shadow: var(--cc-shadow-soft); }
.compare-column { padding: 2rem 2.25rem; border-radius: var(--cc-radius-lg); }
.compare-column.before { background: rgba(255,255,255,.64); }
.compare-column.after { background: #fff; box-shadow: var(--cc-shadow-card); }
.compare-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.compare-head h3 { margin: 0; font-size: 1.35rem; }
.compare-icon { display: inline-flex; width: 31px; height: 31px; align-items: center; justify-content: center; border-radius: 50%; background: #e6eaee; color: var(--cc-muted); font-size: 1.2rem; line-height: 1; }
.after .compare-icon { background: var(--cc-vertical-soft); color: var(--cc-vertical); }
.compare-column ul { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.compare-column li { display: flex; gap: .7rem; color: var(--cc-muted); font-size: .92rem; }
.compare-column li::before { content: "•"; color: var(--cc-dim); }
.after li { color: var(--cc-text-soft); }
.after li::before { content: "✓"; color: var(--cc-vertical); font-weight: 700; }
.compare-divider { display: flex; align-items: center; justify-content: center; color: var(--cc-muted); font-size: .62rem; font-weight: 700; writing-mode: vertical-rl; }

/* Plans */
.plans .section-heading { margin-bottom: 3.3rem; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 1rem; }
.price-card { position: relative; display: flex; min-height: 525px; flex-direction: column; padding: 1.7rem; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-lg); background: rgba(255,255,255,.82); box-shadow: var(--cc-shadow-card); }
.price-card--featured { border: 1px solid rgba(255,51,0,.46); background: #fff; box-shadow: 0 18px 55px rgba(255,51,0,.11); }
.featured-tag { position: absolute; top: -12px; right: 18px; padding: .42rem .65rem; border-radius: 5px; background: var(--cc-accent-action); color: #fff; font-size: .62rem; font-weight: 700; }
.price-top { min-height: 62px; padding-bottom: 1.1rem; border-bottom: 1px solid var(--cc-border); }
.plan-name, .plan-note { display: block; }
.plan-name { font-size: 1.35rem; font-weight: 700; }
.plan-note { color: var(--cc-muted); font-size: .76rem; }
.price-block { padding: 1.2rem 0 1rem; }
.price-block > span { display: block; color: var(--cc-muted); font-size: .72rem; }
.price-block strong { display: block; margin: .15rem 0 .45rem; color: var(--cc-vertical); font-size: 2.7rem; line-height: 1; }
.price-block strong small { font-size: 1.1rem; font-weight: 600; }
.price-block > span:last-child b { color: var(--cc-text); font-size: 1rem; }
.price-card > p { min-height: 52px; margin-bottom: 1.25rem; font-size: .84rem; line-height: 1.45; }
.price-card ul { display: grid; gap: .7rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.price-card li { display: flex; gap: .6rem; color: var(--cc-text-soft); font-size: .78rem; line-height: 1.35; }
.price-card li::before { color: var(--cc-vertical); content: "✓"; font-weight: 700; }
.custom-price { min-height: 76px; display: flex; align-items: center; color: var(--cc-vertical); font-size: 1.45rem; font-weight: 600; line-height: 1.15; }
.price-footnote { margin: 1.5rem 0 0; color: var(--cc-muted); font-size: .72rem; text-align: center; }

/* Testimonials */
.testimonials .section-heading { margin-bottom: 3rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.testimonial-card { min-height: 300px; padding: 1.7rem; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-lg); background: #fff; box-shadow: var(--cc-shadow-card); }
.quote-mark { display: block; margin-bottom: .7rem; color: var(--cc-vertical-2); font-size: 3rem; line-height: .7; }
.testimonial-card blockquote { min-height: 132px; margin: 0 0 1.5rem; color: var(--cc-text); font-size: 1.03rem; line-height: 1.5; }
.testimonial-card footer { display: flex; align-items: center; gap: .65rem; padding-top: 1rem; border-top: 1px solid var(--cc-border); }
.testimonial-avatar { display: inline-flex; width: 35px; height: 35px; align-items: center; justify-content: center; border-radius: 50%; background: var(--cc-vertical-soft); color: var(--cc-vertical); font-size: .65rem; font-weight: 700; }
.avatar-gold-bg { background: #f1e9dc; color: #88683e; }
.avatar-blue-bg { background: #e2eaf2; color: #486b8c; }
.testimonial-card footer strong, .testimonial-card footer small { display: block; line-height: 1.3; }
.testimonial-card footer strong { font-size: .78rem; }
.testimonial-card footer small { margin-top: .2rem; color: var(--cc-muted); font-size: .68rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 6rem; }
.faq-grid > .section-heading { position: sticky; top: 100px; align-self: start; }
.faq-grid .section-heading h2 { font-size: var(--cc-text-3xl); }
.faq-grid .text-link { margin-top: 1.5rem; }
.faq-list { border-top: 1px solid var(--cc-border-strong); }
.faq-list details { border-bottom: 1px solid var(--cc-border-strong); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; cursor: pointer; list-style: none; font-size: .97rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { display: inline-flex; width: 25px; height: 25px; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid var(--cc-border-strong); border-radius: 50%; color: var(--cc-vertical); font-size: 1.1rem; font-weight: 400; transition: transform var(--cc-transition-base), background var(--cc-transition-base); }
.faq-list details[open] .faq-icon { background: var(--cc-vertical-soft); transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 3rem 1.25rem 0; margin-bottom: 0; font-size: .87rem; }

/* CTA and footer */
.final-cta { padding: 0 !important; }
.cta-inner { position: relative; overflow: hidden; min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; border-right: 1px solid rgba(255,255,255,.08); border-left: 1px solid rgba(255,255,255,.08); text-align: center; }
.cta-inner::before { position: absolute; right: -12%; bottom: -45%; width: 45rem; height: 28rem; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; transform: rotate(-16deg); }
.cta-mark { display: inline-flex; position: relative; z-index: 1; width: 39px; height: 39px; align-items: center; justify-content: center; margin-bottom: 1.3rem; border: 1px solid rgba(255,255,255,.35); border-radius: 10px; color: #fff; font-weight: 600; }
.cta-inner h2 { position: relative; z-index: 1; max-width: 720px; margin-bottom: 1rem; font-size: var(--cc-text-4xl); }
.cta-inner p { position: relative; z-index: 1; margin-bottom: 1.6rem; color: rgba(255,255,255,.76); }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.cta-inner > small { position: relative; z-index: 1; margin-top: 1.25rem; color: rgba(255,255,255,.56); font-size: .7rem; }
.site-footer { background: var(--cc-bg-metal); }
.footer-main { display: flex; justify-content: space-between; gap: 3rem; padding: 3.5rem 0 3rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-main p { margin: 0; color: var(--cc-muted); font-size: .79rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(100px,1fr)); gap: 3.5rem; }
.footer-links div { display: grid; align-content: start; gap: .55rem; }
.footer-links strong { margin-bottom: .25rem; font-size: .78rem; }
.footer-links a { color: var(--cc-muted); font-size: .76rem; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--cc-vertical); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--cc-border); color: var(--cc-muted); font-size: .7rem; }
.footer-bottom a { color: var(--cc-text-soft); }

@keyframes metalShine { 0%, 55% { transform: translateX(-30%) rotate(18deg); opacity: 0; } 66% { opacity: 1; } 85%, 100% { transform: translateX(440%) rotate(18deg); opacity: 0; } }
@keyframes tabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 2.5rem; }
  .hero-copy { max-width: 720px; margin: 0 auto; text-align: center; }
  .hero-copy .cc-badge, .hero-proof { margin-right: auto; margin-left: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(100%, 760px); margin: 0 auto; }
  .feature-row, .feature-row--reverse { gap: 3rem; }
  .how-grid, .faq-grid { gap: 3.5rem; }
  .nav-menu { gap: .85rem; }
}
@media (max-width: 900px) {
  .cc-container { width: min(100% - 3rem, 720px); }
  .menu-toggle { display: block; }
  .nav-menu { position: fixed; top: 0; right: 0; display: flex; width: min(80vw, 340px); height: 100dvh; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 6rem 1.5rem 2rem; border-left: 1px solid var(--cc-border); background: rgba(255,255,255,.96); box-shadow: -20px 0 50px rgba(24,32,48,.12); transform: translateX(105%); transition: transform var(--cc-transition-base); backdrop-filter: blur(16px); }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu > a:not(.cc-btn) { padding: .9rem 0; border-bottom: 1px solid var(--cc-border); color: var(--cc-text-soft); }
  .nav-cta { margin: 1.5rem 0 0; }
  .menu-toggle.is-open { position: relative; z-index: 2; }
  .menu-toggle.is-open span:first-child { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:last-child { transform: translateY(-5.5px) rotate(-45deg); }
  .hero { padding-top: 8.5rem; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 680px; margin: 0 auto; text-align: center; }
  .hero-copy .cc-badge, .hero-proof { margin-right: auto; margin-left: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(100%, 680px); margin: 1rem auto 0; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .stage-body { grid-template-columns: 135px 1fr; }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row--reverse .feature-visual, .feature-row--reverse .feature-copy { order: initial; }
  .feature-visual { width: min(100%, 620px); margin: 0 auto; }
  .feature-copy { max-width: 620px; margin: 0 auto; }
  .tab-panel { grid-template-columns: 1fr; gap: 2rem; }
  .mini-intake, .mini-inbox, .mini-calendar { justify-self: start; }
  .how-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .processor-shell { width: min(100%, 620px); margin: 0 auto; }
  .compare-grid { grid-template-columns: 1fr 50px 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 550px; margin: 0 auto; }
  .price-card { min-height: 0; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .testimonial-card { min-height: 0; }
  .testimonial-card blockquote { min-height: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid > .section-heading { position: static; }
}
@media (max-width: 600px) {
  .cc-container { width: calc(100% - 2rem); }
  section:not(.hero) { padding: 4.5rem 0; }
  .hero { min-height: auto; padding: 7.5rem 0 2.5rem; }
  .hero-grid { gap: 2rem; }
  .hero-copy h1 { margin-top: 1.15rem; font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .cc-btn { width: 100%; }
  .hero-window { transform: none; }
  .hero-window-content { padding: 1rem; }
  .window-heading strong { font-size: 1.1rem; }
  .inbox-filters { gap: .65rem; overflow-x: auto; }
  .inbox-row { grid-template-columns: 28px minmax(0,1fr) auto; gap: .5rem; }
  .inbox-row time { display: none; }
  .hero-float-card { right: 2%; bottom: -5%; }
  .hero-bottom-line { align-items: flex-start; font-size: .68rem; }
  .hero-bottom-line span:last-child { display: none; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .impact-item { min-height: 115px; padding: 1.2rem .8rem; border-bottom: 1px solid var(--cc-border); }
  .impact-item:nth-child(2) { border-right: 0; }
  .impact-item:nth-child(3), .impact-item:nth-child(4) { border-bottom: 0; }
  .impact-item:first-child { padding-left: .8rem; }
  .impact-item strong { font-size: 2rem; }
  .impact-item span { font-size: .67rem; }
  .section-heading h2 { font-size: 2.1rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 0; }
  .line-icon { margin-bottom: 1rem; }
  .stage-top { padding: 0 .9rem; }
  .stage-period { display: none; }
  .stage-body { display: block; }
  .stage-sidebar { display: none; }
  .stage-main { padding: 1.1rem .8rem; }
  .stage-stats { gap: .45rem; }
  .stage-stats > div { padding: .65rem .5rem; }
  .stage-stats span, .stage-stats small { font-size: .59rem; }
  .stage-stats strong { font-size: 1.05rem; }
  .table-head, .table-row { grid-template-columns: minmax(0,1.5fr) .8fr auto; gap: .45rem; padding-right: .55rem; padding-left: .55rem; }
  .table-head span:nth-child(2), .table-row > span:nth-child(2), .table-head span:last-child, .table-row > span:last-child { display: none; }
  .tabs-demo { padding: .5rem; margin-bottom: 4.5rem; }
  .tabs-nav { width: 100%; }
  .tab-button { flex: 1; padding: .55rem .35rem; font-size: .7rem; }
  .tab-panel { min-height: 0; padding: 1.3rem 1rem; }
  .mini-intake, .mini-inbox, .mini-calendar { padding: 1rem; }
  .feature-list { gap: 4.5rem; }
  .image-frame, .image-frame img { min-height: 255px; }
  .visual-result { right: .6rem; bottom: .6rem; }
  .feature-copy h3 { font-size: 1.8rem; }
  .feature-copy p { font-size: .9rem; }
  .booking-body, .upload-body { padding: 1.15rem; }
  .how-grid { gap: 2.5rem; }
  .processor-body { padding: 1.2rem; }
  .compare-grid { grid-template-columns: 1fr; gap: .6rem; padding: .6rem; }
  .compare-column { padding: 1.35rem 1.15rem; }
  .compare-divider { height: 34px; writing-mode: initial; }
  .compare-divider::before, .compare-divider::after { width: 1px; height: 20px; background: var(--cc-border-strong); content: ""; }
  .compare-divider span { padding: 0 .5rem; }
  .plans-grid { gap: 1.4rem; }
  .price-card { padding: 1.35rem; }
  .price-block strong { font-size: 2.35rem; }
  .faq-list summary { font-size: .88rem; }
  .faq-list details p { font-size: .81rem; }
  .cta-inner { min-height: 390px; padding: 3rem 1rem; }
  .cta-inner h2 { font-size: 2.15rem; }
  .cta-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .footer-main { display: block; padding: 3rem 0 2rem; }
  .footer-links { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; margin-top: 2.2rem; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom span:last-child { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cc-animate { opacity: 1; transform: none; transition: none; }
}
