:root {
  --bg: #09090d;
  --bg-soft: #101017;
  --surface: rgba(255,255,255,.055);
  --surface-strong: #17171f;
  --surface-raised: #1d1d28;
  --text: #f6f5fb;
  --muted: #a8a7b5;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.2);
  --primary: #7c5cff;
  --primary-2: #9b86ff;
  --accent: #c8ff4d;
  --accent-ink: #12150a;
  --danger: #ff6b7a;
  --success: #74e7ad;
  --shadow: 0 30px 80px rgba(0,0,0,.38);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1240px;
  --header-h: 76px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f5f4f1;
  --bg-soft: #ebe9e4;
  --surface: rgba(15,14,20,.055);
  --surface-strong: #ffffff;
  --surface-raised: #f8f7f4;
  --text: #15141b;
  --muted: #696773;
  --line: rgba(15,14,20,.12);
  --line-strong: rgba(15,14,20,.22);
  --shadow: 0 30px 80px rgba(50,40,75,.14);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--accent-ink); }

.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; width: 340px; height: 340px; border-radius: 50%; pointer-events: none; z-index: -1;
  transform: translate(-50%, -50%); filter: blur(1px);
  background: radial-gradient(circle, rgba(124,92,255,.12), transparent 68%);
  opacity: 0; transition: opacity .3s ease;
}
body:hover .cursor-glow { opacity: 1; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin: 0 auto; }
.section { padding: 118px 0; position: relative; }
.section-kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; }
h1,h2,h3,h4 { font-family: "Manrope", sans-serif; margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(3.25rem, 7.5vw, 7.35rem); line-height: .96; max-width: 1050px; }
h2 { font-size: clamp(2.35rem, 5vw, 4.85rem); line-height: 1.02; }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.1; }
p { color: var(--muted); line-height: 1.7; }
code { color: var(--accent); font-size: .88em; }
.skip-link { position: fixed; left: 20px; top: -60px; z-index: 10000; background: var(--accent); color: var(--accent-ink); padding: 12px 16px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 1000;
  border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled { background: color-mix(in srgb, var(--bg) 78%, transparent); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: .08em; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; background: var(--text); color: var(--bg); border-radius: 11px; letter-spacing: -.05em; }
.brand-word { font-size: .96rem; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: var(--muted); font-size: .94rem; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.icon-button svg { width: 18px; }
.menu-toggle { display: none; }
.mobile-menu { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .25s ease; }
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu-inner { display: grid; gap: 0; padding: 16px 0 24px; }
.mobile-menu a { font-family: "Manrope"; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .button { margin-top: 18px; }

.button {
  min-height: 48px; border: 1px solid transparent; border-radius: 999px; padding: 0 21px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800;
  cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button-small { min-height: 42px; padding: 0 17px; font-size: .9rem; }
.button-large { min-height: 58px; padding: 0 27px; }
.button-primary { background: var(--accent); color: var(--accent-ink); }
.button-primary:hover { background: color-mix(in srgb, var(--accent) 86%, white); }
.button-secondary { background: var(--text); color: var(--bg); }
.button-ghost { border-color: var(--line); background: var(--surface); color: var(--text); }
.button-ghost:hover { border-color: var(--line-strong); background: var(--surface-raised); }
.button-light { background: #fff; color: #111; }
.text-link { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }

.hero { min-height: 100svh; padding: 160px 0 38px; position: relative; overflow: hidden; }
.hero::before { content:""; position: absolute; inset: 0; pointer-events:none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 72%); opacity: .2; }
.hero-orb { position:absolute; border-radius:50%; filter: blur(90px); pointer-events:none; }
.hero-orb-a { width: 520px; height: 520px; background: rgba(124,92,255,.2); right: -80px; top: 100px; }
.hero-orb-b { width: 420px; height: 420px; background: rgba(200,255,77,.08); left: -180px; top: 40%; }
.hero-grid { display:grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr); align-items:center; gap: 70px; position:relative; z-index:1; }
.hero-copy { padding-top: 20px; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; border:1px solid var(--line); background:var(--surface); padding:9px 13px; border-radius:999px; font-size:.82rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; margin-bottom:24px; }
.eyebrow.light { background: rgba(255,255,255,.12); border-color:rgba(255,255,255,.2); }
.live-dot { width:8px; height:8px; background:var(--accent); border-radius:50%; box-shadow:0 0 0 5px rgba(200,255,77,.12); }
.text-gradient { background: linear-gradient(100deg, var(--primary-2), var(--accent) 85%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-lede { max-width: 710px; font-size: clamp(1.08rem, 1.6vw, 1.3rem); margin: 30px 0 34px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; }
.trust-row { display:flex; align-items:center; gap:15px; margin-top:38px; }
.avatar-stack { display:flex; padding-left:10px; }
.avatar-stack span { width:38px; height:38px; margin-left:-10px; border-radius:50%; display:grid; place-items:center; background:var(--surface-raised); border:2px solid var(--bg); font-size:.7rem; font-weight:800; }
.avatar-stack span:nth-child(2){ background:#7047eb; color:white; }
.avatar-stack span:nth-child(3){ background:#d2ff67; color:#131313; }
.stars { color:var(--accent); letter-spacing:.08em; font-size:.83rem; }
.trust-row p { margin:2px 0 0; font-size:.84rem; }

.hero-visual { min-height:650px; position:relative; }
.hero-photo { position:absolute; inset: 15px 5px 70px 60px; border-radius: 38px; background-size:cover; background-position:center; filter:saturate(.7) contrast(1.05); box-shadow:var(--shadow); }
.hero-photo::after { content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(180deg, rgba(9,9,13,.04), rgba(9,9,13,.68)); }
.glass-panel { background: rgba(16,16,23,.78); border:1px solid rgba(255,255,255,.16); backdrop-filter:blur(20px); box-shadow:0 24px 70px rgba(0,0,0,.35); }
.dashboard-card { position:absolute; width:min(440px,90%); left:0; bottom:0; border-radius:25px; padding:23px; color:#fff; }
.dash-top { display:flex; align-items:flex-start; justify-content:space-between; gap:15px; }
.mini-label { display:block; text-transform:uppercase; letter-spacing:.11em; font-size:.67rem; color:#aaa9b4; font-weight:800; margin-bottom:6px; }
.dash-top strong { font-size:1.15rem; }
.status-pill { display:flex; align-items:center; gap:7px; padding:7px 10px; background:rgba(116,231,173,.12); color:#8af0ba; border-radius:999px; font-size:.72rem; font-weight:800; }
.status-pill span { width:7px; height:7px; background:#74e7ad; border-radius:50%; }
.dash-progress { height:7px; background:rgba(255,255,255,.1); border-radius:99px; margin:22px 0; overflow:hidden; }
.dash-progress span { height:100%; display:block; border-radius:inherit; background:linear-gradient(90deg,var(--primary),var(--accent)); }
.dash-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,.1); }
.dash-metrics div { display:grid; gap:2px; }
.dash-metrics strong { font-family:"Manrope"; font-size:1.25rem; }
.dash-metrics span { color:#9d9ca8; font-size:.73rem; }
.dash-list { padding-top:11px; }
.dash-list > div { display:grid; grid-template-columns:22px 1fr auto; align-items:center; gap:8px; padding:8px 0; font-size:.8rem; }
.dash-list svg { width:16px; color:#74e7ad; }
.dash-list small { color:#878691; }
.dash-list .active svg { color:var(--accent); animation:spin 2s linear infinite; }
.dash-list .active small { color:var(--accent); }
@keyframes spin { to { transform:rotate(360deg); } }
.floating-note { position:absolute; max-width:220px; display:flex; align-items:center; gap:11px; padding:13px 15px; border:1px solid rgba(255,255,255,.16); background:rgba(20,20,28,.76); backdrop-filter:blur(18px); color:white; border-radius:16px; box-shadow:var(--shadow); font-size:.74rem; line-height:1.35; }
.floating-note svg { color:var(--accent); flex:0 0 auto; width:20px; }
.floating-note span { color:#bbb9c5; }
.floating-note strong { color:white; display:block; }
.floating-note-a { right:-18px; top:110px; }
.floating-note-b { right:10px; bottom:75px; }
.platform-strip { margin-top:80px; border-top:1px solid var(--line); padding-top:25px; display:grid; grid-template-columns:auto 1fr; align-items:center; gap:25px; position:relative; z-index:1; overflow:hidden; }
.platform-strip > span { color:var(--muted); font-size:.74rem; text-transform:uppercase; letter-spacing:.12em; font-weight:800; white-space:nowrap; }
.platform-marquee { overflow:hidden; mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track { width:max-content; display:flex; gap:45px; animation:marquee 24s linear infinite; }
.marquee-track b { color:color-mix(in srgb,var(--text) 72%,transparent); font-family:"Manrope"; letter-spacing:-.03em; }
@keyframes marquee { to { transform:translateX(-50%); } }

.intro-section { padding-bottom:60px; }
.intro-grid { display:grid; grid-template-columns: .35fr 1fr; gap:80px; align-items:start; }
.intro-copy h2 span { color:var(--muted); }
.intro-copy p { max-width:780px; font-size:1.12rem; margin:28px 0 0; }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:48px; }
.section-head h2 { max-width:850px; margin-top:13px; }
.section-head > p { max-width:370px; margin:0 0 8px; }
.services-section { background:var(--bg-soft); }
.service-category-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px; }
.service-category-tabs button { border:1px solid var(--line); background:transparent; border-radius:999px; padding:10px 16px; color:var(--muted); font-weight:700; cursor:pointer; }
.service-category-tabs button.active { background:var(--text); color:var(--bg); border-color:var(--text); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.service-card { min-height:340px; display:flex; flex-direction:column; padding:25px; border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); position:relative; overflow:hidden; transition:transform .35s ease,border-color .35s ease,background .35s ease; }
.service-card::before { content:""; position:absolute; width:180px; height:180px; right:-80px; top:-80px; background:radial-gradient(circle,rgba(124,92,255,.18),transparent 70%); opacity:0; transition:opacity .35s ease; }
.service-card:hover { transform:translateY(-7px); border-color:var(--line-strong); background:var(--surface-raised); }
.service-card:hover::before { opacity:1; }
.service-card[hidden] { display:none; }
.service-top { display:flex; justify-content:space-between; align-items:start; }
.service-icon { width:50px; height:50px; border-radius:15px; display:grid; place-items:center; background:var(--surface-raised); border:1px solid var(--line); }
.service-icon svg { width:23px; }
.popular-badge { background:var(--accent); color:var(--accent-ink); border-radius:999px; padding:7px 10px; font-size:.67rem; text-transform:uppercase; letter-spacing:.08em; font-weight:900; }
.service-category { color:var(--primary-2); text-transform:uppercase; letter-spacing:.11em; font-size:.68rem; font-weight:900; margin:28px 0 9px; }
.service-card h3 { font-size:1.45rem; }
.service-card > p { font-size:.92rem; margin:13px 0 24px; }
.service-meta { margin-top:auto; display:flex; justify-content:space-between; gap:15px; align-items:end; padding-top:18px; border-top:1px solid var(--line); }
.service-price small, .service-time small { color:var(--muted); display:block; font-size:.66rem; text-transform:uppercase; letter-spacing:.09em; margin-bottom:5px; }
.service-price strong { font-family:"Manrope"; font-size:1.25rem; }
.service-time { text-align:right; font-size:.82rem; }
.service-action { width:40px; height:40px; border-radius:50%; border:1px solid var(--line); background:transparent; display:grid; place-items:center; cursor:pointer; }
.service-action:hover { background:var(--accent); color:var(--accent-ink); border-color:var(--accent); }

.feature-stack { display:grid; gap:90px; }
.feature-band { min-height:560px; display:grid; grid-template-columns:1.05fr .95fr; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:var(--surface); }
.feature-band.reverse { grid-template-columns:.95fr 1.05fr; }
.feature-band.reverse .feature-image { order:2; }
.feature-image { min-height:500px; background-size:cover; background-position:center; position:relative; }
.feature-image::after { content:""; position:absolute; inset:0; background:linear-gradient(120deg,transparent 40%,rgba(9,9,13,.25)); }
.feature-content { padding:clamp(35px,6vw,78px); display:flex; flex-direction:column; justify-content:center; position:relative; }
.feature-number { position:absolute; top:28px; right:33px; color:var(--line-strong); font-family:"Manrope"; font-size:3.6rem; font-weight:800; }
.feature-content h3 { font-size:clamp(2rem,4vw,3.6rem); margin:14px 0 21px; }
.feature-content p { font-size:1.05rem; }
.check-list { list-style:none; padding:0; margin:22px 0 0; display:grid; gap:12px; }
.check-list li { position:relative; padding-left:28px; font-weight:700; }
.check-list li::before { content:"✓"; position:absolute; left:0; color:var(--accent); }

.work-section { background:var(--bg-soft); }
.work-grid { display:grid; grid-template-columns:1.15fr .85fr; grid-auto-rows:430px; gap:18px; }
.work-card { position:relative; overflow:hidden; border-radius:var(--radius); border:1px solid var(--line); background-size:cover; background-position:center; min-height:390px; isolation:isolate; }
.work-card:nth-child(3) { grid-column:1 / -1; }
.work-card::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(7,7,10,.02) 20%,rgba(7,7,10,.9) 100%); z-index:-1; }
.work-card::after { content:""; position:absolute; inset:0; background:var(--primary); mix-blend-mode:color; opacity:.08; z-index:-1; transition:opacity .4s ease; }
.work-card:hover::after { opacity:.28; }
.work-content { position:absolute; left:0; right:0; bottom:0; padding:30px; color:white; display:grid; grid-template-columns:1fr auto; gap:20px; align-items:end; }
.work-content h3 { font-size:clamp(1.6rem,3vw,2.4rem); }
.work-content p { color:rgba(255,255,255,.7); margin:7px 0 0; max-width:650px; }
.work-result { background:rgba(255,255,255,.12); backdrop-filter:blur(14px); border:1px solid rgba(255,255,255,.2); padding:12px 15px; border-radius:14px; text-align:right; white-space:nowrap; }
.work-result small { display:block; color:rgba(255,255,255,.65); margin-bottom:4px; }
.work-result strong { color:var(--accent); }
.content-note { font-size:.8rem; margin:18px 0 0; }

.process-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; align-items:start; }
.process-sticky { position:sticky; top:130px; }
.process-sticky h2 { margin:14px 0 22px; }
.process-sticky p { font-size:1.05rem; max-width:500px; margin-bottom:30px; }
.process-steps { border-top:1px solid var(--line); }
.process-step { display:grid; grid-template-columns:50px 1fr 55px; gap:25px; align-items:center; padding:32px 0; border-bottom:1px solid var(--line); }
.process-step > span { font-family:"Manrope"; color:var(--primary-2); font-weight:800; }
.process-step h3 { margin-bottom:8px; }
.process-step p { margin:0; }
.process-step > svg { width:30px; color:var(--muted); justify-self:end; }

.calculator-section { background:linear-gradient(145deg,var(--primary),#4a2fc5); color:white; overflow:hidden; }
.calculator-section::after { content:""; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(200,255,77,.18); filter:blur(100px); right:-200px; top:-150px; }
.calculator-wrap { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; position:relative; z-index:1; }
.calculator-copy .section-kicker { color:var(--accent); }
.calculator-copy h2 { margin:14px 0 22px; }
.calculator-copy p { color:rgba(255,255,255,.72); font-size:1.05rem; }
.estimate-trust { display:flex; gap:11px; align-items:center; margin-top:32px; font-weight:700; }
.estimate-trust svg { color:var(--accent); }
.calculator { background:#fff; color:#15141b; border-radius:28px; padding:32px; box-shadow:0 35px 80px rgba(20,8,70,.3); display:grid; gap:25px; }
.calculator label { display:grid; gap:10px; font-weight:800; }
.calculator select, .order-form select, .order-form input, .order-form textarea { width:100%; border:1px solid #d9d7df; background:#f7f6f9; color:#191820; border-radius:13px; padding:14px 15px; outline:none; transition:border-color .2s ease,box-shadow .2s ease; }
.calculator select:focus, .order-form select:focus, .order-form input:focus, .order-form textarea:focus { border-color:var(--primary); box-shadow:0 0 0 4px rgba(124,92,255,.12); }
.segmented { display:grid; grid-template-columns:repeat(3,1fr); background:#f1f0f4; padding:5px; border-radius:13px; }
.segmented button { border:0; background:transparent; padding:10px; border-radius:9px; cursor:pointer; color:#696773; font-weight:800; }
.segmented button.active { background:#15141b; color:white; }
.calculator input[type="range"] { width:100%; accent-color:var(--primary); }
.switch-line { grid-template-columns:1fr auto!important; align-items:center; cursor:pointer; }
.switch-line > span:first-child { display:grid; }
.switch-line small { color:#777480; font-weight:500; margin-top:3px; }
.switch-line input, .switch-only input { position:absolute; opacity:0; pointer-events:none; }
.switch { width:50px; height:29px; border-radius:999px; background:#d7d4dd; display:block; position:relative; transition:.2s ease; }
.switch::after { content:""; position:absolute; width:23px; height:23px; top:3px; left:3px; background:white; border-radius:50%; box-shadow:0 2px 7px rgba(0,0,0,.2); transition:.2s ease; }
input:checked + .switch { background:var(--primary); }
input:checked + .switch::after { transform:translateX(21px); }
.estimate-result { background:#15141b; color:white; border-radius:18px; padding:22px; display:grid; gap:6px; }
.estimate-result span { color:#9d9ba5; font-size:.77rem; text-transform:uppercase; letter-spacing:.09em; font-weight:800; }
.estimate-result strong { font-family:"Manrope"; font-size:clamp(1.6rem,3vw,2.35rem); color:var(--accent); }
.estimate-result small { color:#96939e; }
.calculator .button { width:100%; }

.testimonial-section { overflow:hidden; }
.swiper-controls { display:flex; gap:8px; }
.swiper-controls button { width:48px; height:48px; display:grid; place-items:center; border:1px solid var(--line); background:var(--surface); border-radius:50%; cursor:pointer; }
.testimonial-swiper { overflow:visible; }
.testimonial-card { height:auto; border:1px solid var(--line); background:var(--surface); padding:32px; border-radius:var(--radius); display:flex; flex-direction:column; min-height:330px; }
.quote-mark { color:var(--accent); font-family:Georgia,serif; font-size:5rem; line-height:.7; }
.testimonial-card blockquote { margin:25px 0 36px; font-family:"Manrope"; font-size:1.35rem; line-height:1.45; letter-spacing:-.025em; }
.testimonial-person { margin-top:auto; padding-top:18px; border-top:1px solid var(--line); display:grid; gap:3px; }
.testimonial-person span { color:var(--muted); font-size:.85rem; }

.faq-section { background:var(--bg-soft); }
.faq-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:90px; }
.faq-intro { position:sticky; top:130px; align-self:start; }
.faq-intro h2 { margin:14px 0 20px; }
.accordion { border-top:1px solid var(--line); }
.accordion-item { border-bottom:1px solid var(--line); }
.accordion-button { width:100%; display:grid; grid-template-columns:1fr auto; align-items:center; gap:20px; text-align:left; border:0; background:transparent; padding:27px 0; cursor:pointer; font-family:"Manrope"; font-weight:800; font-size:1.12rem; }
.accordion-button svg { transition:transform .25s ease; }
.accordion-item.open .accordion-button svg { transform:rotate(45deg); }
.accordion-panel { display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s ease; }
.accordion-panel > div { overflow:hidden; }
.accordion-panel p { margin:0; padding:0 45px 25px 0; }
.accordion-item.open .accordion-panel { grid-template-rows:1fr; }

.final-cta { padding-bottom:80px; }
.final-cta-card { min-height:440px; border-radius:var(--radius-lg); background:#15141b; color:white; padding:clamp(35px,6vw,75px); display:grid; grid-template-columns:1fr auto; align-items:end; gap:50px; position:relative; overflow:hidden; }
.final-cta-card::before { content:""; position:absolute; width:450px; height:450px; border-radius:50%; background:var(--primary); filter:blur(100px); left:-170px; top:-160px; opacity:.6; }
.final-cta-card::after { content:""; position:absolute; width:380px; height:380px; border-radius:50%; background:var(--accent); filter:blur(100px); right:-180px; bottom:-210px; opacity:.24; }
.cta-grid-bg { position:absolute; inset:0; opacity:.13; background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px); background-size:55px 55px; mask-image:linear-gradient(90deg,transparent,black); }
.final-cta-card > *:not(.cta-grid-bg) { position:relative; z-index:1; }
.final-cta-card h2 { max-width:880px; margin:17px 0 20px; }
.final-cta-card p { color:rgba(255,255,255,.68); max-width:700px; }

.site-footer { padding:70px 0 24px; border-top:1px solid var(--line); }
.footer-top { display:grid; grid-template-columns:1.4fr repeat(3,.65fr); gap:55px; }
.footer-brand p { max-width:290px; }
.footer-col { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.footer-col strong { font-family:"Manrope"; margin-bottom:6px; }
.footer-col a,.footer-col span { color:var(--muted); font-size:.9rem; }
.footer-col a:hover { color:var(--text); }
.social-row { display:flex; gap:8px; margin-top:8px; }
.social-row a { width:36px; height:36px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; }
.social-row svg { width:16px; }
.footer-bottom { border-top:1px solid var(--line); margin-top:55px; padding-top:22px; display:flex; justify-content:space-between; align-items:center; gap:20px; }
.footer-bottom p { font-size:.78rem; margin:0; }
.company-disclosure:empty { display:none; }
.privacy-settings { border:0; background:transparent; color:var(--muted); text-decoration:underline; cursor:pointer; }

.order-dialog, .cookie-dialog { width:min(1120px,calc(100% - 24px)); max-width:none; max-height:calc(100svh - 24px); border:0; padding:0; border-radius:28px; background:transparent; color:#17161d; box-shadow:var(--shadow); }
.order-dialog::backdrop, .cookie-dialog::backdrop { background:rgba(5,5,8,.8); backdrop-filter:blur(10px); }
.dialog-shell { display:grid; grid-template-columns:.78fr 1.22fr; background:#fff; border-radius:28px; overflow:hidden; min-height:700px; position:relative; }
.dialog-aside { background:#15141b; color:white; padding:45px; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; }
.dialog-aside::before { content:""; position:absolute; width:330px; height:330px; border-radius:50%; background:var(--primary); filter:blur(80px); left:-170px; top:120px; }
.dialog-aside::after { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:50px 50px; opacity:.4; }
.dialog-aside > * { position:relative; z-index:1; }
.dialog-aside h2 { margin:10px 0 16px; font-size:3.25rem; }
.dialog-aside p { color:rgba(255,255,255,.68); }
.dialog-proof { display:flex; gap:12px; color:#c8c6d0; font-size:.82rem; align-items:center; }
.dialog-proof svg { color:var(--accent); }
.dialog-close { position:absolute; right:18px; top:18px; z-index:5; width:42px; height:42px; display:grid; place-items:center; border:1px solid #dfdde4; background:#fff; color:#15141b; border-radius:50%; cursor:pointer; }
.order-form { padding:58px 48px 40px; display:grid; gap:18px; overflow:auto; }
.form-grid { display:grid; gap:16px; }
.form-grid.two { grid-template-columns:1fr 1fr; }
.order-form label { display:grid; gap:8px; font-size:.82rem; color:#55525e; font-weight:800; }
.order-form label > span { color:var(--danger); }
.order-form textarea { resize:vertical; min-height:130px; }
.consent-check { grid-template-columns:auto 1fr!important; align-items:start; font-weight:500!important; line-height:1.5; }
.consent-check input { width:17px!important; height:17px; margin-top:2px; accent-color:var(--primary); }
.consent-check span { color:#65616d!important; }
.consent-check a { color:#15141b; text-decoration:underline; }
.honeypot { position:absolute!important; left:-10000px!important; }
.form-status { min-height:20px; font-size:.85rem; font-weight:700; }
.form-status.success { color:#16804c; }
.form-status.error { color:#c12843; }
.submit-order { width:100%; }
.form-fallback { margin:0; font-size:.78rem; text-align:center; }

.cookie-banner { position:fixed; left:20px; right:20px; bottom:20px; z-index:2000; width:min(1000px,calc(100% - 40px)); margin:auto; background:color-mix(in srgb,var(--surface-strong) 92%,transparent); border:1px solid var(--line-strong); border-radius:20px; box-shadow:var(--shadow); backdrop-filter:blur(18px); padding:18px; display:none; grid-template-columns:1fr auto; align-items:center; gap:24px; }
.cookie-banner.show { display:grid; }
.cookie-banner strong { font-family:"Manrope"; }
.cookie-banner p { margin:4px 0 0; font-size:.82rem; }
.cookie-actions { display:flex; gap:8px; }
.cookie-actions .button { min-height:42px; font-size:.78rem; padding:0 14px; }
.cookie-dialog { width:min(600px,calc(100% - 24px)); }
.cookie-dialog-card { position:relative; background:var(--surface-strong); color:var(--text); border-radius:26px; padding:35px; }
.cookie-dialog-card h2 { margin:10px 0 25px; }
.cookie-setting { display:grid; grid-template-columns:1fr auto; align-items:center; gap:25px; padding:19px 0; border-top:1px solid var(--line); }
.cookie-setting p { margin:5px 0 0; font-size:.82rem; }
.always-on { color:var(--muted); font-size:.75rem; font-weight:800; }
.switch-only { cursor:pointer; }
.cookie-dialog-card > .button { width:100%; margin:20px 0 14px; }
.cookie-dialog-card > .text-link { display:block; text-align:center; font-size:.82rem; }
.noscript { position:fixed; left:20px; right:20px; bottom:20px; z-index:9999; padding:15px; background:#fff0bd; color:#211b05; border-radius:12px; text-align:center; }

/* Legal pages */
.legal-page { padding-top:var(--header-h); }
.legal-hero { padding:100px 0 60px; border-bottom:1px solid var(--line); background:var(--bg-soft); }
.legal-hero h1 { font-size:clamp(2.7rem,6vw,5.5rem); margin-top:14px; }
.legal-hero p { max-width:760px; font-size:1.05rem; }
.legal-layout { display:grid; grid-template-columns:250px 1fr; gap:80px; padding:70px 0 110px; }
.legal-nav { position:sticky; top:110px; align-self:start; display:grid; gap:9px; }
.legal-nav a { color:var(--muted); font-size:.85rem; }
.legal-nav a:hover { color:var(--text); }
.legal-content { max-width:820px; }
.legal-content h2 { font-size:2rem; margin:48px 0 16px; letter-spacing:-.03em; }
.legal-content h2:first-child { margin-top:0; }
.legal-content h3 { font-size:1.25rem; margin:30px 0 12px; letter-spacing:-.02em; }
.legal-content p,.legal-content li { color:var(--muted); line-height:1.75; }
.legal-content ul { padding-left:20px; }
.legal-note { border:1px solid var(--line); background:var(--surface); border-radius:16px; padding:18px; margin:24px 0; }
.legal-meta { display:flex; flex-wrap:wrap; gap:18px; color:var(--muted); font-size:.82rem; }



/* Product imagery is intentionally people-free; all visual cards protect against text overflow. */
html, body { max-width:100%; overflow-x:hidden; }
.hero-grid > *, .feature-band > *, .work-content > *, .section-head > * { min-width:0; }
.proof-row { flex-wrap:wrap; gap:10px; }
.proof-chip { display:inline-flex; align-items:center; gap:8px; min-height:40px; padding:9px 12px; border:1px solid var(--line); border-radius:999px; background:var(--surface); color:var(--muted); font-size:.78rem; font-weight:800; }
.proof-chip svg { width:16px; color:var(--accent); }
.feature-band { grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); }
.feature-band.reverse { grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); }
.feature-content { min-width:0; overflow:hidden; }
.feature-content h3 { max-width:100%; font-size:clamp(2rem,3.35vw,3.2rem); line-height:1.08; overflow-wrap:anywhere; hyphens:auto; }
.feature-content p, .check-list li { overflow-wrap:anywhere; }
.work-content { min-width:0; }
.work-content > div:first-child { min-width:0; }
.work-content h3, .work-content p { overflow-wrap:anywhere; }
.work-actions { display:grid; justify-items:end; gap:10px; }
.work-enquire { display:inline-flex; align-items:center; justify-content:center; gap:7px; min-height:40px; padding:0 13px; border:1px solid rgba(255,255,255,.25); border-radius:999px; background:rgba(10,10,14,.55); backdrop-filter:blur(12px); color:#fff; font:800 .72rem/1 "DM Sans",sans-serif; cursor:pointer; white-space:nowrap; }
.work-enquire:hover { background:var(--accent); border-color:var(--accent); color:var(--accent-ink); }
.work-enquire svg { width:15px; }
.order-form { position:relative; }
.selected-request { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:13px 15px; border:1px solid #dedbe5; border-radius:14px; background:#f7f6f9; }
.selected-request span { color:#6a6672; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.selected-request strong { max-width:65%; color:#17161d; font-family:"Manrope"; text-align:right; overflow-wrap:anywhere; }
.form-loading { position:absolute; inset:0; z-index:8; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:35px; background:rgba(255,255,255,.94); backdrop-filter:blur(12px); }
.form-loading[hidden] { display:none; }
.form-loading strong { margin-top:18px; font-family:"Manrope"; font-size:1.25rem; color:#17161d; }
.form-loading p { margin:7px 0 0; color:#6a6672; }
.form-spinner { width:50px; height:50px; border-radius:50%; border:4px solid #e7e4ec; border-top-color:var(--primary); animation:form-spin .8s linear infinite; }
@keyframes form-spin { to { transform:rotate(360deg); } }
.order-form.is-sending > *:not(.form-loading) { pointer-events:none; }


@media (max-width: 1220px) and (min-width: 861px) {
  .feature-content { padding:54px 42px; }
  .feature-content h3 { font-size:clamp(2rem,3.2vw,2.75rem); }
  .feature-number { font-size:3rem; right:24px; }
}

@media (max-width: 1100px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:grid; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:900px; }
  .hero-visual { max-width:700px; width:100%; margin:0 auto; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .calculator-wrap { gap:40px; }
  .footer-top { grid-template-columns:1.2fr repeat(3,.7fr); gap:30px; }
}

@media (max-width: 860px) {
  :root { --header-h:68px; }
  .section { padding:85px 0; }
  .nav-actions .button { display:none; }
  .mobile-menu .button { display:flex; }
  .hero { padding-top:125px; }
  .hero-visual { min-height:590px; }
  .hero-photo { inset:0 0 90px 30px; }
  .floating-note-a { right:0; }
  .intro-grid,.process-grid,.faq-grid,.calculator-wrap { grid-template-columns:1fr; gap:48px; }
  .process-sticky,.faq-intro { position:static; }
  .feature-band,.feature-band.reverse { grid-template-columns:1fr; }
  .feature-band.reverse .feature-image { order:0; }
  .feature-image { min-height:380px; }
  .work-grid { grid-template-columns:1fr; grid-auto-rows:auto; }
  .work-card:nth-child(3) { grid-column:auto; }
  .work-card { min-height:430px; }
  .calculator { padding:25px; }
  .final-cta-card { grid-template-columns:1fr; align-items:end; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .dialog-shell { grid-template-columns:1fr; }
  .dialog-aside { min-height:330px; padding:35px; }
  .dialog-aside h2 { font-size:2.6rem; }
  .dialog-proof { display:none; }
  .order-form { padding:45px 30px 35px; }
  .legal-layout { grid-template-columns:1fr; gap:35px; }
  .legal-nav { position:static; grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 640px) {
  .shell { width:min(calc(100% - 24px),var(--shell)); }
  .section { padding:72px 0; }
  h1 { font-size:clamp(3rem,15vw,4.6rem); }
  h2 { font-size:clamp(2.25rem,11vw,3.5rem); }
  .brand-word { font-size:.85rem; }
  .hero { padding-top:110px; }
  .hero-actions { display:grid; }
  .button-large { width:100%; }
  .trust-row { align-items:flex-start; }
  .hero-visual { min-height:530px; }
  .hero-photo { inset:0 0 110px 0; border-radius:25px; }
  .dashboard-card { width:calc(100% - 8px); padding:18px; }
  .floating-note { display:none; }
  .platform-strip { grid-template-columns:1fr; gap:15px; margin-top:50px; }
  .section-head { display:grid; gap:18px; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { min-height:320px; }
  .feature-stack { gap:30px; }
  .feature-band { border-radius:22px; }
  .feature-image { min-height:280px; }
  .feature-content { padding:34px 24px; }
  .feature-number { font-size:2.5rem; right:20px; top:17px; }
  .work-content { grid-template-columns:1fr; padding:22px; }
  .work-actions { justify-items:start; }
  .work-result { justify-self:start; text-align:left; white-space:normal; }
  .work-enquire { white-space:normal; text-align:left; }
  .process-step { grid-template-columns:38px 1fr; gap:13px; }
  .process-step > svg { display:none; }
  .calculator { border-radius:22px; padding:20px; }
  .segmented { grid-template-columns:1fr; }
  .cookie-banner { left:12px; right:12px; bottom:12px; width:auto; grid-template-columns:1fr; }
  .cookie-actions { display:grid; grid-template-columns:1fr 1fr; }
  .cookie-actions .cookie-accept { grid-column:1/-1; }
  .footer-top { grid-template-columns:1fr; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { align-items:flex-start; flex-direction:column; }
  .form-grid.two { grid-template-columns:1fr; }
  .order-dialog { max-height:calc(100svh - 10px); width:calc(100% - 10px); }
  .dialog-aside { min-height:270px; padding:30px 24px; }
  .dialog-aside h2 { font-size:2.2rem; }
  .order-form { padding:42px 20px 28px; }
  .legal-nav { grid-template-columns:1fr; }
}

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

.enquiry-note { display:flex; align-items:flex-start; gap:11px; padding:14px 15px; border:1px solid var(--line); border-radius:14px; background:var(--surface); color:var(--muted); font-size:.82rem; line-height:1.5; }
.enquiry-note svg { width:18px; height:18px; flex:0 0 auto; color:var(--accent-strong); margin-top:1px; }
