
:root {
  --sc-blue: #0b56f0;
  --sc-blue-700: #1746d1;
  --sc-blue-900: #082a83;
  --sc-navy: #0d173c;
  --sc-navy-2: #131f4b;
  --sc-sky: #edf4ff;
  --sc-bg: #f6f8fc;
  --sc-white: #ffffff;
  --sc-text: #15213b;
  --sc-muted: #66748f;
  --sc-border: #dce5f3;
  --sc-green: #10a86c;
  --sc-orange: #f29f05;
  --sc-red: #ef4354;
  --sc-purple: #7c4dff;
  --shadow-sm: 0 10px 30px rgba(21, 52, 116, .08);
  --shadow-lg: 0 30px 80px rgba(18, 50, 122, .16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: min(1180px, calc(100% - 40px));
  --header-h: 78px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }
body { margin: 0; color: var(--sc-text); background: var(--sc-white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 9999; background: var(--sc-navy); color: #fff; padding: 10px 16px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 14px; }
.icon { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(220,229,243,.8); backdrop-filter: blur(18px); transition: box-shadow .2s, background .2s; }
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(8, 42, 131, .08); background: rgba(255,255,255,.97); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; color: var(--sc-navy); letter-spacing: -.03em; white-space: nowrap; }
.brand img { width: 42px; height: 42px; }
.brand-name { font-size: 1.08rem; line-height: 1; }
.brand-name strong { color: var(--sc-blue); font-weight: 900; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.site-nav .mobile-actions { display: none; }
.site-nav a { padding: 11px 13px; border-radius: 10px; color: #3d4b68; font-weight: 700; font-size: .93rem; transition: color .2s, background .2s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--sc-blue); background: var(--sc-sky); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-login { font-weight: 750; color: #2d3a5a; padding: 10px 8px; }
.nav-toggle { display: none; margin-left: auto; border: 0; background: var(--sc-sky); color: var(--sc-blue); width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 20px; border-radius: 13px; border: 1px solid transparent; font-weight: 800; line-height: 1.15; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--sc-blue), #1e6cff); box-shadow: 0 12px 28px rgba(11, 86, 240, .24); }
.btn-primary:hover { box-shadow: 0 18px 34px rgba(11, 86, 240, .32); }
.btn-secondary { color: var(--sc-blue); border-color: #b9ccf4; background: #fff; }
.btn-secondary:hover { border-color: var(--sc-blue); background: var(--sc-sky); }
.btn-dark { color: #fff; background: var(--sc-navy); }
.btn-ghost { color: var(--sc-blue); background: transparent; padding-inline: 8px; }
.btn-sm { min-height: 40px; padding: 9px 15px; font-size: .9rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--sc-blue); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--sc-blue); box-shadow: 0 0 0 5px rgba(11,86,240,.1); }
.hero { position: relative; overflow: hidden; padding: 86px 0 72px; background: radial-gradient(circle at 88% 15%, rgba(63,131,255,.16), transparent 34%), linear-gradient(180deg, #fff 0%, #f9fbff 100%); }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; border: 90px solid rgba(11,86,240,.04); border-radius: 50%; right: -160px; top: 40px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr); align-items: center; gap: 68px; }
.hero-copy h1, .page-hero h1 { margin: 0; max-width: 840px; color: var(--sc-navy); font-size: clamp(2.65rem, 5.6vw, 5.4rem); line-height: 1.02; letter-spacing: -.065em; }
.hero-copy h1 em, .page-hero h1 em { color: var(--sc-blue); font-style: normal; }
.hero-copy .lead { margin: 26px 0 0; max-width: 690px; color: var(--sc-muted); font-size: clamp(1.03rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.micro-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; color: #57647d; font-size: .88rem; font-weight: 700; }
.micro-proof span { display: inline-flex; gap: 7px; align-items: center; }
.micro-proof .icon { color: var(--sc-green); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; background: #fff; border: 1px solid var(--sc-border); border-radius: 999px; color: #4b5a76; font-size: .82rem; font-weight: 800; box-shadow: 0 8px 20px rgba(35,69,136,.05); }
.badge .icon { color: var(--sc-blue); }
.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.product-window { position: relative; width: 100%; border-radius: 24px; padding: 11px; background: #fff; border: 1px solid rgba(184,202,235,.8); box-shadow: var(--shadow-lg); transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg); }
.product-window::before { content: ""; display: block; height: 28px; border-radius: 14px 14px 6px 6px; background: linear-gradient(90deg, #f2f5fb, #fff); margin-bottom: 9px; }
.product-window::after { content: ""; position: absolute; top: 20px; left: 24px; width: 7px; height: 7px; border-radius: 50%; background: #ff6b6b; box-shadow: 13px 0 #f9bd43, 26px 0 #32c36c; }
.product-window img { border-radius: 14px; width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.floating-stat { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 16px; background: rgba(255,255,255,.96); border: 1px solid var(--sc-border); border-radius: 16px; box-shadow: 0 18px 45px rgba(19,55,125,.15); font-weight: 850; color: var(--sc-navy); }
.floating-stat small { display: block; font-size: .72rem; color: var(--sc-muted); font-weight: 700; }
.floating-stat.one { left: -32px; top: 18%; }
.floating-stat.two { right: -18px; bottom: 14%; }
.stat-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: var(--sc-blue); background: var(--sc-sky); }
.trust-strip { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--sc-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-item { padding: 22px 24px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--sc-border); }
.trust-item:last-child { border-right: 0; }
.trust-item .icon-wrap { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--sc-sky); color: var(--sc-blue); }
.trust-item strong { display: block; font-size: .94rem; color: var(--sc-navy); }
.trust-item span { display: block; color: var(--sc-muted); font-size: .8rem; line-height: 1.35; }
section { padding: 88px 0; }
.section-soft { background: var(--sc-bg); }
.section-blue { background: linear-gradient(135deg, #082a83, #0b56f0); color: #fff; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { margin: 0; color: var(--sc-navy); font-size: clamp(2.05rem, 4.2vw, 3.65rem); line-height: 1.08; letter-spacing: -.05em; }
.section-heading h2 em { color: var(--sc-blue); font-style: normal; }
.section-heading p { margin: 18px 0 0; color: var(--sc-muted); font-size: 1.05rem; }
.section-blue .section-heading h2, .section-blue .section-heading p { color: #fff; }
.kicker { color: var(--sc-blue); font-weight: 900; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: #fff; border: 1px solid var(--sc-border); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(20,53,117,.06); }
.value-card, .module-card, .role-card { padding: 25px; }
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 19px; background: var(--sc-sky); color: var(--sc-blue); }
.card-icon.green { background: #e9faf3; color: var(--sc-green); }
.card-icon.orange { background: #fff5df; color: var(--sc-orange); }
.card-icon.purple { background: #f2edff; color: var(--sc-purple); }
.value-card h3, .module-card h3, .role-card h3 { margin: 0 0 9px; color: var(--sc-navy); font-size: 1.08rem; }
.value-card p, .module-card p, .role-card p { margin: 0; color: var(--sc-muted); font-size: .92rem; }
.module-card { display: flex; flex-direction: column; min-height: 230px; transition: transform .2s, border-color .2s, box-shadow .2s; }
.module-card:hover { transform: translateY(-5px); border-color: #b8ccf5; box-shadow: 0 22px 50px rgba(19,62,143,.12); }
.module-card .module-link { margin-top: auto; padding-top: 18px; color: var(--sc-blue); font-weight: 850; font-size: .88rem; display: inline-flex; gap: 7px; align-items: center; }
.showcase-shell { background: #fff; border: 1px solid var(--sc-border); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-lg); }
.showcase-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.showcase-tab { border: 1px solid var(--sc-border); background: #fff; color: #50607d; padding: 9px 14px; border-radius: 999px; font-weight: 800; }
.showcase-tab[aria-selected="true"] { background: var(--sc-blue); color: #fff; border-color: var(--sc-blue); }
.showcase-media { position: relative; overflow: hidden; border-radius: 18px; background: #edf3ff; aspect-ratio: 16 / 9; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: opacity .25s, transform .35s; }
.showcase-caption { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 6px 4px; }
.showcase-caption h3 { margin: 0; color: var(--sc-navy); }
.showcase-caption p { margin: 4px 0 0; color: var(--sc-muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-copy h2, .split-copy h3 { margin: 0; color: var(--sc-navy); font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.08; letter-spacing: -.045em; }
.split-copy p { color: var(--sc-muted); font-size: 1.02rem; }
.check-list { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: #44536f; }
.check-list .icon { color: var(--sc-green); margin-top: 3px; }
.split-media { position: relative; }
.media-frame { border-radius: 24px; padding: 10px; background: #fff; border: 1px solid var(--sc-border); box-shadow: var(--shadow-lg); overflow: hidden; }
.media-frame img { border-radius: 15px; width: 100%; object-fit: cover; object-position: top; }
.media-frame.landscape img { aspect-ratio: 16/10; }
.media-frame button { border: 0; padding: 0; background: transparent; display: block; width: 100%; }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 26px; }
.metric { background: #fff; border: 1px solid var(--sc-border); border-radius: 16px; padding: 18px; }
.metric strong { display: block; color: var(--sc-blue); font-size: 1.65rem; line-height: 1; }
.metric span { display: block; margin-top: 7px; color: var(--sc-muted); font-size: .78rem; }
.demo-band { border-radius: var(--radius-lg); padding: 38px; background: linear-gradient(125deg, #071c58, #0b56f0 68%, #3184ff); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; box-shadow: 0 24px 60px rgba(11,86,240,.23); }
.demo-band h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.1; letter-spacing: -.04em; }
.demo-band p { margin: 10px 0 0; color: #dce8ff; max-width: 760px; }
.demo-band .actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.demo-band .btn-secondary { border-color: rgba(255,255,255,.65); background: #fff; }
.quote-card { padding: 38px; position: relative; overflow: hidden; }
.quote-card::before { content: "“"; position: absolute; right: 26px; top: -22px; color: rgba(11,86,240,.08); font: 900 9rem Georgia, serif; }
.quote-card blockquote { margin: 0; font-size: 1.2rem; color: var(--sc-navy); font-weight: 700; line-height: 1.55; }
.quote-card footer { margin-top: 24px; color: var(--sc-muted); }
.quote-card footer strong { display: block; color: var(--sc-navy); }
.pricing-highlight { padding: 40px; display: block; }
.pricing-highlight h3 { margin: 0; color: var(--sc-navy); font-size: 2rem; letter-spacing: -.04em; }
.price-points { display: grid; gap: 13px; margin-top: 24px; }
.price-point { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--sc-border); }
.price-point:last-child { border-bottom: 0; }
.price-point span { color: var(--sc-muted); }
.price-point strong { color: var(--sc-navy); font-size: 1.15rem; }
.calculator { padding: 26px; background: var(--sc-navy); border-radius: 22px; color: #fff; }
.calculator h3 { color: #fff; margin: 0 0 18px; }
.calc-field { margin-bottom: 18px; }
.calc-field label { display: flex; justify-content: space-between; gap: 14px; font-size: .86rem; color: #dce7ff; font-weight: 800; }
.calc-field output { color: #fff; }
.calc-field input[type="range"] { width: 100%; accent-color: #4f8dff; margin-top: 10px; }
.billing-toggle { display: inline-flex; gap: 4px; padding: 4px; border-radius: 12px; background: rgba(255,255,255,.1); margin-bottom: 20px; }
.billing-toggle button { border: 0; background: transparent; color: #cddcff; padding: 8px 12px; border-radius: 9px; font-weight: 800; }
.billing-toggle button[aria-pressed="true"] { background: #fff; color: var(--sc-blue); }
.calc-total { border-top: 1px solid rgba(255,255,255,.16); padding-top: 20px; }
.calc-total span { color: #bcd0ff; font-size: .86rem; }
.calc-total strong { display: block; margin-top: 4px; font-size: 2.2rem; line-height: 1.1; }
.calc-breakdown { margin: 13px 0 0; color: #cddcff; font-size: .82rem; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--sc-border); background: #fff; border-radius: 16px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; padding: 18px 20px; color: var(--sc-navy); font-weight: 850; display: flex; align-items: center; justify-content: space-between; text-align: left; }
.faq-question span:last-child { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--sc-sky); color: var(--sc-blue); transition: transform .2s; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { margin: 0; padding: 0 20px 20px; color: var(--sc-muted); }
.page-hero { padding: 74px 0 56px; background: radial-gradient(circle at 82% 15%, rgba(11,86,240,.13), transparent 36%), linear-gradient(180deg,#fff,#f7faff); }
.page-hero .hero-grid { grid-template-columns: 1fr .9fr; }
.page-hero h1 { font-size: clamp(2.65rem, 5vw, 4.9rem); }
.page-hero .lead { max-width: 670px; color: var(--sc-muted); font-size: 1.12rem; }
.page-hero.simple .hero-grid { display: block; }
.page-hero.simple .section-heading { margin-bottom: 0; }
.module-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card { padding: 28px; }
.category-card h3 { margin: 0 0 20px; font-size: 1.15rem; color: var(--sc-navy); }
.category-list { display: grid; gap: 18px; }
.category-item { display: grid; grid-template-columns: 40px 1fr; gap: 12px; }
.category-item .mini-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--sc-sky); color: var(--sc-blue); }
.category-item strong { display: block; color: var(--sc-navy); font-size: .94rem; }
.category-item span { color: var(--sc-muted); font-size: .82rem; line-height: 1.35; }
.workflow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; align-items: start; }
.workflow-step { position: relative; text-align: center; }
.workflow-step:not(:last-child)::after { content: ""; position: absolute; top: 26px; left: calc(50% + 30px); right: calc(-50% + 30px); border-top: 2px dashed #bcd0fb; }
.workflow-icon { position: relative; z-index: 1; margin: 0 auto 12px; width: 54px; height: 54px; display: grid; place-items: center; color: var(--sc-blue); background: #fff; border: 1px solid #bed0f4; border-radius: 17px; }
.workflow-step strong { display: block; font-size: .84rem; color: var(--sc-navy); }
.workflow-step span { font-size: .72rem; color: var(--sc-muted); }
.role-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.role-card { text-align: center; padding: 22px 14px; }
.role-card .card-icon { margin-inline: auto; }
.role-card p { font-size: .8rem; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.gallery-card { overflow: hidden; }
.gallery-card button { border: 0; background: #fff; padding: 0; width: 100%; text-align: left; }
.gallery-card img { width: 100%; aspect-ratio: 1.42 / 1; object-fit: cover; object-position: center; background: var(--sc-sky); }
.gallery-card .gallery-meta { padding: 18px; }
.gallery-card h3 { margin: 0 0 5px; color: var(--sc-navy); font-size: 1rem; }
.gallery-card p { margin: 0; color: var(--sc-muted); font-size: .82rem; }
.price-hero-copy { max-width: 980px; }
.price-hero-copy h1 { max-width: 1040px; }
.price-hero-copy .pricing-manifesto { margin-top: 24px; max-width: 850px; font-size: 1.2rem; color: #4f5d78; }
.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.plan-card { padding: 34px; position: relative; }
.plan-card.featured { border: 2px solid var(--sc-blue); box-shadow: 0 22px 60px rgba(11,86,240,.14); }
.plan-tag { position: absolute; right: 22px; top: 20px; padding: 6px 10px; border-radius: 999px; background: var(--sc-blue); color: #fff; font-size: .72rem; font-weight: 900; }
.plan-card h3 { margin: 0; font-size: 1.35rem; color: var(--sc-navy); }
.plan-price { margin: 22px 0; color: var(--sc-navy); font-weight: 900; font-size: 2.4rem; letter-spacing: -.04em; }
.plan-price small { font-size: .9rem; color: var(--sc-muted); font-weight: 700; }
.inclusion-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.inclusion { padding: 24px; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--sc-border); border-radius: 20px; background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.compare-table th, .compare-table td { padding: 15px 18px; border-bottom: 1px solid var(--sc-border); text-align: left; }
.compare-table th { color: var(--sc-navy); background: #f6f9ff; }
.compare-table td { color: #4d5b76; }
.compare-table tr:last-child td { border-bottom: 0; }
.form-card { padding: 32px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; color: var(--sc-navy); font-size: .88rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #cfd9eb; background: #fff; color: var(--sc-text); border-radius: 12px; padding: 12px 13px; outline: none; transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sc-blue); box-shadow: 0 0 0 4px rgba(11,86,240,.1); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field .field-error { color: var(--sc-red); font-size: .78rem; min-height: 1em; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; color: var(--sc-muted); font-size: .82rem; }
.form-status { margin-top: 16px; padding: 12px 14px; border-radius: 12px; display: none; }
.form-status.is-visible { display: block; }
.form-status.success { color: #087149; background: #e7f9f2; border: 1px solid #b9ecd8; }
.form-status.error { color: #a62e3a; background: #fff0f2; border: 1px solid #ffcbd1; }
.demo-points { padding: 32px; }
.demo-point { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--sc-border); }
.demo-point:last-child { border-bottom: 0; }
.demo-point .card-icon { width: 48px; height: 48px; margin: 0; }
.demo-point h3 { margin: 0 0 4px; color: var(--sc-navy); font-size: 1rem; }
.demo-point p { margin: 0; color: var(--sc-muted); font-size: .86rem; }
.step-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step-card { padding: 24px 18px; text-align: center; }
.step-number { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px; color: #fff; background: var(--sc-blue); font-weight: 900; }
.step-card h3 { margin: 0 0 7px; font-size: .95rem; color: var(--sc-navy); }
.step-card p { margin: 0; color: var(--sc-muted); font-size: .78rem; }
.legal { max-width: 880px; }
.legal h2 { color: var(--sc-navy); margin-top: 42px; }
.legal p, .legal li { color: #4e5d78; }
.site-footer { padding: 64px 0 26px; color: #d4def5; background: linear-gradient(145deg, #061b51, #072b78); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 38px; }
.footer-brand p { color: #b9c7e7; max-width: 300px; font-size: .9rem; }
.footer-brand .brand { color: #fff; }
.footer-col h3 { margin: 0 0 16px; color: #fff; font-size: .9rem; }
.footer-col a { display: block; color: #bac8e7; margin: 9px 0; font-size: .86rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 24px; color: #9db0d8; font-size: .8rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.cookie-banner { position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 2500; max-width: 1100px; margin-inline: auto; background: rgba(13,23,60,.98); color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.28); display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 5px 0 0; color: #c7d3ed; font-size: .84rem; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.trial-prompt { position: fixed; right: 24px; bottom: 24px; z-index: 2300; width: min(390px, calc(100% - 48px)); background: #fff; border: 1px solid var(--sc-border); border-radius: 22px; padding: 24px; box-shadow: 0 28px 80px rgba(8,42,131,.24); }
.trial-prompt[hidden] { display: none; }
.trial-prompt h2 { margin: 0; color: var(--sc-navy); font-size: 1.35rem; line-height: 1.15; }
.trial-prompt p { margin: 10px 0 18px; color: var(--sc-muted); font-size: .88rem; }
.trial-prompt .close { position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; border: 0; border-radius: 10px; background: var(--sc-sky); color: var(--sc-blue); display: grid; place-items: center; }
.trial-prompt .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.lightbox { border: 0; padding: 0; background: transparent; width: min(1240px, calc(100% - 32px)); max-width: none; }
.lightbox::backdrop { background: rgba(4,14,42,.82); backdrop-filter: blur(5px); }
.lightbox-inner { position: relative; background: #fff; border-radius: 22px; padding: 12px; box-shadow: var(--shadow-lg); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 14px; }
.lightbox-close { position: absolute; right: 22px; top: 22px; width: 42px; height: 42px; border: 0; border-radius: 13px; background: rgba(13,23,60,.88); color: #fff; display: grid; place-items: center; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1080px) {
  :root { --container: min(100% - 32px, 980px); }
  .site-nav { gap: 0; }
  .site-nav a { padding-inline: 9px; }
  .nav-actions .btn { padding-inline: 14px; }
  .hero-grid, .page-hero .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead, .hero-copy h1 { margin-inline: auto; }
  .hero-actions, .hero-badges, .micro-proof { justify-content: center; }
  .hero-visual { max-width: 780px; min-height: auto; margin-inline: auto; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--sc-border); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .role-grid { grid-template-columns: repeat(4,1fr); }
  .module-categories { grid-template-columns: repeat(2,1fr); }
  .workflow { grid-template-columns: repeat(4,1fr); row-gap: 28px; }
  .workflow-step::after { display: none; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); }
}
@media (max-width: 820px) {
  :root { --header-h: 68px; --container: min(100% - 28px, 720px); }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; border-bottom: 1px solid var(--sc-border); padding: 14px; display: grid; gap: 4px; transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .25s, opacity .25s; box-shadow: 0 20px 40px rgba(8,42,131,.12); }
  .site-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .site-nav a { padding: 13px 15px; }
  .nav-actions { display: none; }
  .site-nav .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 6px 4px; }
  .hero { padding-top: 62px; }
  .hero-copy h1, .page-hero h1 { font-size: clamp(2.5rem, 10vw, 4.2rem); }
  .floating-stat.one { left: 0; }
  .floating-stat.two { right: 0; }
  section { padding: 70px 0; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: initial; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .demo-band { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .demo-band .actions { justify-content: center; }
  .pricing-highlight { grid-template-columns: 1fr; padding: 28px; }
  .module-categories { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .inclusion-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .cookie-banner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --container: calc(100% - 22px); }
  .brand img { width: 38px; height: 38px; }
  .brand-name { font-size: .98rem; }
  .hero { padding: 50px 0 56px; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { display: grid; grid-template-columns: 1fr 1fr; }
  .badge { justify-content: center; }
  .floating-stat { display: none; }
  .trust-strip, .grid-2, .grid-3, .grid-4, .metric-row, .gallery, .form-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--sc-border); }
  .trust-item:last-child { border-bottom: 0; }
  .showcase-caption { align-items: flex-start; flex-direction: column; }
  .role-grid { grid-template-columns: repeat(2,1fr); }
  .workflow { grid-template-columns: repeat(2,1fr); }
  .step-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-actions .btn { flex: 1; }
}

/* School Connect public site v2 — device presentation and dynamic controls */
.brand-lockup { flex: 0 0 auto; overflow: hidden; }
.brand-lockup img { width: 218px; height: 48px; object-fit: contain; }
.footer-logo { display: inline-flex; padding: 5px 9px; background: #fff; border-radius: 12px; }
.footer-logo img { width: 205px; height: 42px; }
.section-action { margin-top: 30px; text-align: center; }
.parent-more { margin-top: 20px; }
.module-link { color: var(--sc-blue); font-weight: 850; display: inline-flex; align-items: center; gap: 7px; }

.device-tablet { position: relative; width: 100%; aspect-ratio: 16/10.25; padding: 17px 24px; border: 2px solid #37415d; border-radius: 30px; background: linear-gradient(145deg, #11182b, #2d3752); box-shadow: 0 34px 80px rgba(8, 31, 86, .26), inset 0 0 0 2px rgba(255,255,255,.08); transform: perspective(1400px) rotateY(-2deg); }
.device-tablet::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; pointer-events: none; }
.device-tablet button { display: block; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; border-radius: 15px; background: #eef4ff; cursor: zoom-in; }
.device-tablet img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 15px; }
.tablet-camera { position: absolute; top: 50%; left: 8px; z-index: 2; width: 5px; height: 5px; transform: translateY(-50%); border-radius: 50%; background: #53617e; box-shadow: 0 0 0 2px #080d19; }
.device-tablet-hero { transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg); }

.phone-stage { display: grid; place-items: center; min-height: 540px; background: radial-gradient(circle, rgba(42,112,245,.15), transparent 63%); border-radius: 48px; }
.device-phone { position: relative; width: min(280px, 78vw); aspect-ratio: 9/19.4; padding: 13px; border: 2px solid #30384d; border-radius: 43px; background: linear-gradient(145deg, #0b1020, #303950); box-shadow: 0 34px 80px rgba(5, 24, 67, .28), inset 0 0 0 2px rgba(255,255,255,.08); }
.device-phone-large { width: min(310px, 78vw); }
.phone-screen { width: 100%; height: 100%; overflow: hidden; border-radius: 31px; background-color: #eef4ff; background-repeat: no-repeat; background-size: cover; background-position: top center; }
.phone-screen-home { background-image: url("../img/parent/home-screen.webp"); }
.phone-screen-finance { background-image: url("../img/parent/finance-screen.webp"); }
.phone-speaker { position: absolute; top: 21px; left: 50%; z-index: 3; width: 62px; height: 17px; transform: translateX(-50%); border-radius: 20px; background: #080d17; box-shadow: inset 0 -1px 0 rgba(255,255,255,.1); }
.phone-showcase { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.phone-feature { display: grid; grid-template-columns: 240px 1fr; gap: 30px; align-items: center; padding: 30px; border: 1px solid var(--sc-border); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #f5f8ff); box-shadow: var(--shadow-sm); }
.phone-feature .device-phone { width: 220px; }
.phone-feature h3 { margin: 0 0 10px; color: var(--sc-navy); font-size: 1.35rem; }
.phone-feature p { margin: 0; color: var(--sc-muted); }

.store-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0 10px; }
.store-button { min-width: 178px; min-height: 58px; display: inline-flex; align-items: center; gap: 11px; padding: 8px 15px; border-radius: 13px; color: #fff; background: #07132e; border: 1px solid #21304e; box-shadow: 0 12px 26px rgba(7,19,46,.16); transition: transform .2s, box-shadow .2s; }
a.store-button:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(7,19,46,.22); }
.store-button.is-disabled { opacity: .55; cursor: not-allowed; }
.store-icon { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.store-button small, .store-button strong { display: block; line-height: 1.05; }
.store-button small { font-size: .62rem; color: #c8d3e9; }
.store-button strong { margin-top: 4px; font-size: 1rem; }
.store-note { margin: 8px 0 0; color: var(--sc-muted); font-size: .78rem; }
.download-card { padding: 34px; }
.download-card h2 { margin: 0; color: var(--sc-navy); font-size: 2rem; letter-spacing: -.04em; }
.download-card p { color: var(--sc-muted); }

.social-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.social-links a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); }
.social-links a:hover { background: #fff; color: var(--sc-blue); }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 2200; min-height: 54px; display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px; color: #fff; background: #16a765; box-shadow: 0 18px 46px rgba(6,114,64,.34); font-weight: 850; }
.whatsapp-float .icon { width: 26px; height: 26px; }
.whatsapp-float:hover { background: #108b54; transform: translateY(-2px); }

.pricing-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 34px; align-items: start; }
.calculator { position: sticky; top: calc(var(--header-h) + 22px); }
.calculator h2 { margin: 0 0 18px; font-size: 1.65rem; }
.calculator > .btn { width: 100%; margin-top: 20px; }
.calc-annual { padding: 10px 12px; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; background: rgba(255,255,255,.07); }
.calc-saving { margin: 12px 0 0; color: #a7f3d0; font-weight: 800; font-size: .86rem; }
.calc-disclaimer { margin: 13px 0 0; color: #91a7d3; font-size: .72rem; }
.annual-offer { max-width: 760px; margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 18px 20px; border: 1px solid #b9d0ff; border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); color: var(--sc-blue); }
.annual-offer strong { font-size: 1.06rem; }
.annual-offer > span { color: var(--sc-green); font-size: 1.4rem; font-weight: 900; }
.annual-offer small { flex-basis: 100%; color: var(--sc-muted); }
.annual-formula { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 14px; }
.annual-formula div { min-height: 132px; display: grid; align-content: center; padding: 22px; border: 1px solid var(--sc-border); border-radius: 18px; background: #fff; text-align: center; }
.annual-formula strong { color: var(--sc-blue); font-size: 1.5rem; }
.annual-formula span { color: var(--sc-navy); font-weight: 850; }
.annual-formula small { color: var(--sc-muted); }
.annual-formula i { color: var(--sc-blue); font-size: 1.5rem; font-style: normal; }
.formula-note { max-width: 800px; margin: 22px auto 0; text-align: center; color: var(--sc-muted); }

.discover-video { margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px; border: 1px solid #c7d8fa; border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.discover-video > div { display: flex; align-items: center; gap: 15px; }
.discover-video > div > .icon { width: 46px; height: 46px; color: var(--sc-blue); }
.discover-video strong, .discover-video small { display: block; }
.discover-video strong { color: var(--sc-navy); }
.discover-video small { color: var(--sc-muted); }
.is-disabled { opacity: .55; pointer-events: none; }

.form-heading { margin-bottom: 24px; }
.form-heading h2 { font-size: 2rem; }
.form-submit { width: 100%; margin-top: 18px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-field [aria-invalid="true"] { border-color: var(--sc-red); }

@media (max-width: 1080px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .calculator { position: static; }
  .phone-showcase { grid-template-columns: 1fr; }
  .role-grid-compact { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 820px) {
  .brand-lockup img { width: 185px; height: 44px; }
  .device-tablet { padding: 13px 18px; border-radius: 23px; }
  .phone-feature { grid-template-columns: 190px 1fr; }
  .phone-feature .device-phone { width: 180px; }
  .annual-formula { grid-template-columns: 1fr; }
  .annual-formula i { transform: rotate(90deg); text-align: center; }
  .discover-video { align-items: flex-start; flex-direction: column; }
  .role-grid-compact { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .brand-lockup img { width: 162px; height: 40px; }
  .device-tablet { padding: 10px 14px; border-radius: 18px; }
  .device-tablet::after { inset: 4px; border-radius: 13px; }
  .device-tablet button, .device-tablet img { border-radius: 9px; }
  .phone-stage { min-height: 460px; }
  .phone-feature { grid-template-columns: 1fr; text-align: center; }
  .phone-feature .device-phone { margin-inline: auto; }
  .store-buttons { display: grid; grid-template-columns: 1fr; }
  .store-button { width: 100%; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; padding: 13px; justify-content: center; }
  .whatsapp-float span { display: none; }
  .annual-offer { align-items: flex-start; flex-direction: column; }
  .annual-offer > span { display: none; }
  .role-grid-compact { grid-template-columns: repeat(2, 1fr); }
}
