:root {
  --ink: #07111f;
  --ink-2: #0b1728;
  --panel: #101f33;
  --paper: #f5f8fc;
  --white: #ffffff;
  --text: #172033;
  --muted: #647188;
  --line: #dce4ef;
  --cyan: #4de5ff;
  --lime: #c8ff4a;
  --violet: #8b7bff;
  --accent: #4de5ff;
  --accent-rgb: 77, 229, 255;
  --shadow: 0 24px 70px rgba(7, 17, 31, .13);
  --radius: 24px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--text); background: var(--paper); font-family: var(--font); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open, body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { touch-action: manipulation; }
button { cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgba(77, 229, 255, .65); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 10px 16px; border-radius: 10px; color: var(--ink); background: var(--lime); font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--tight { padding: 72px 0; }
.section--white { background: var(--white); }
.section--ink { color: var(--white); background: var(--ink); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--eyebrow, #0d7285); font-size: .77rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.section-head > div { max-width: 760px; }
.section-title { margin: 0; font: 700 clamp(2.1rem, 4vw, 3.55rem)/1.04 var(--display); letter-spacing: -.045em; }
.section-copy { max-width: 690px; margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; }
.section--ink .section-copy, .dark-copy { color: #a9b8cc; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #0d7285; font-weight: 800; }
.text-link:hover { gap: 13px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--lime); box-shadow: 0 12px 32px rgba(200, 255, 74, .18); }
.btn-primary:hover { background: #d7ff79; }
.btn-secondary { color: var(--white); border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06); }
.btn-secondary:hover { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .1); }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-dark:hover { background: #142640; }
.btn svg { width: 18px; height: 18px; }

/* Header */
.announcement { color: #d8e2ef; background: #050c16; border-bottom: 1px solid rgba(255,255,255,.08); }
.announcement .container { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: .78rem; text-align: center; }
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); }
.header { position: sticky; z-index: 1000; top: 0; color: var(--white); background: rgba(7, 17, 31, .91); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; font: 700 1.28rem var(--display); letter-spacing: -.03em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: linear-gradient(135deg, var(--cyan), var(--lime)); border-radius: 12px; box-shadow: 0 8px 24px rgba(77,229,255,.2); }
.brand-mark svg { width: 21px; height: 21px; }
.brand-word span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link { color: #cbd7e5; font-size: .9rem; font-weight: 700; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-services { position: relative; }
.mega { position: absolute; top: calc(100% + 26px); left: 50%; width: min(860px, 86vw); padding: 24px; opacity: 0; visibility: hidden; transform: translate(-50%, 10px); color: var(--text); background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); transition: .2s; }
.nav-services:hover .mega, .nav-services:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mega-group { padding: 14px; border-radius: 14px; background: #f6f9fd; }
.mega-group strong { display: block; margin-bottom: 9px; color: #0b7184; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.mega-group a { display: block; padding: 5px 0; color: #526077; font-size: .82rem; font-weight: 650; }
.mega-group a:hover { color: var(--ink); }
.nav-cta { min-height: 42px; padding: 0 17px; border-radius: 12px; }
.menu-toggle { width: 44px; height: 44px; display: none; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; color: white; background: rgba(255,255,255,.05); }
.menu-toggle svg { width: 22px; height: 22px; }

/* Hero */
.hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::before { position: absolute; width: 650px; height: 650px; right: -230px; top: -260px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(77,229,255,.16), transparent 68%); }
.hero::after { position: absolute; inset: 0; pointer-events: none; content: ""; opacity: .18; 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: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.hero-shell { position: relative; z-index: 1; min-height: 700px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; padding-top: 74px; padding-bottom: 86px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 7px 12px; color: #d4deec; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.hero-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.hero h1 { max-width: 760px; margin: 22px 0; font: 700 clamp(3rem, 6.1vw, 6rem)/.95 var(--display); letter-spacing: -.065em; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 650px; margin: 0; color: #acbbce; font-size: clamp(1.02rem, 1.6vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 38px; color: #91a3b9; font-size: .78rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { width: 18px; height: 18px; display: inline-grid; place-items: center; color: var(--ink); content: "✓"; background: var(--lime); border-radius: 50%; font-size: .66rem; font-weight: 900; }
.spark-console { position: relative; padding: 16px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 28px; box-shadow: 0 35px 100px rgba(0,0,0,.4); transform: rotate(1.5deg); }
.spark-console::before { position: absolute; z-index: -1; inset: 45px -18px -18px 45px; content: ""; background: linear-gradient(135deg, rgba(77,229,255,.28), rgba(139,123,255,.16)); border-radius: 28px; filter: blur(3px); }
.console-inner { overflow: hidden; color: var(--text); background: #f8fbff; border-radius: 18px; }
.console-head { min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: #758197; border-bottom: 1px solid var(--line); font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.console-status { display: inline-flex; align-items: center; gap: 7px; color: #147252; }
.console-status i { width: 7px; height: 7px; border-radius: 50%; background: #2bd58b; }
.console-body { padding: 20px; }
.console-label { margin-bottom: 13px; color: #8792a5; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.console-row { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; padding: 13px; border: 1px solid #e2e9f2; border-radius: 14px; background: white; transition: .2s; }
.console-row + .console-row { margin-top: 9px; }
.console-row:hover { transform: translateX(4px); border-color: rgba(13,114,133,.35); }
.console-icon { width: 42px; height: 42px; display: grid; place-items: center; color: #0b6374; background: #e8fbff; border-radius: 12px; font: 800 .8rem var(--display); }
.console-row strong { display: block; font-size: .86rem; }
.console-row small { display: block; color: #8490a3; font-size: .7rem; }
.console-row b { color: #0d7285; font-size: .72rem; }
.console-order { margin-top: 13px; padding: 18px; color: white; background: var(--ink); border-radius: 15px; }
.console-order span { display: block; color: #90a2b8; font-size: .73rem; }
.console-order strong { font-size: .95rem; }
.console-order button { float: right; margin-top: -30px; padding: 7px 10px; color: var(--ink); border: 0; background: var(--lime); border-radius: 8px; font-size: .7rem; font-weight: 800; }
.brand-rail { position: relative; z-index: 2; color: #98a9bd; background: #091525; border-top: 1px solid rgba(255,255,255,.07); }
.brand-rail .container { min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 40px; overflow: hidden; }
.brand-rail span { flex: 0 0 auto; font: 700 .78rem var(--display); letter-spacing: .1em; text-transform: uppercase; }

/* Cards */
.category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.category-card { position: relative; min-height: 220px; grid-column: span 4; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s, box-shadow .25s, border-color .25s; }
.category-card:nth-child(1), .category-card:nth-child(6) { grid-column: span 6; }
.category-card:hover { transform: translateY(-6px); border-color: rgba(var(--cat-rgb, 77,229,255),.45); box-shadow: var(--shadow); }
.category-card::after { position: absolute; width: 180px; height: 180px; right: -60px; bottom: -80px; content: ""; border-radius: 50%; background: rgba(var(--cat-rgb, 77,229,255), .12); }
.category-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 34px; color: var(--cat, #0d7285); background: rgba(var(--cat-rgb, 77,229,255), .12); border-radius: 14px; font: 800 .8rem var(--display); }
.category-card h3 { margin: 0 0 7px; font: 700 1.2rem var(--display); }
.category-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.category-card .arrow { position: absolute; z-index: 1; right: 24px; top: 24px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; display: flex; min-height: 260px; flex-direction: column; padding: 26px; overflow: hidden; color: var(--white); background: #101f33; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); transition: .25s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(var(--service-rgb, 77,229,255), .55); }
.service-card::after { position: absolute; width: 180px; height: 180px; right: -65px; bottom: -85px; content: ""; border-radius: 50%; background: rgba(var(--service-rgb, 77,229,255), .18); }
.service-code { width: 44px; height: 44px; display: grid; place-items: center; color: var(--service, var(--cyan)); background: rgba(var(--service-rgb, 77,229,255), .1); border: 1px solid rgba(var(--service-rgb, 77,229,255), .22); border-radius: 13px; font: 800 .76rem var(--display); }
.service-card h3 { margin: auto 0 5px; font: 700 1.28rem var(--display); }
.service-card p { max-width: 80%; margin: 0; color: #94a6bc; font-size: .83rem; }
.service-card .arrow { position: absolute; z-index: 1; right: 24px; bottom: 25px; color: var(--service, var(--cyan)); }
.catalog-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.catalog-group { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 20px; scroll-margin-top: 115px; }
.catalog-group-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 20px; }
.catalog-group h3 { margin: 0; font: 700 1.2rem var(--display); }
.catalog-group small { color: var(--muted); font-size: .72rem; }
.catalog-links { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-links a { padding: 8px 11px; color: #536178; background: #f3f7fb; border: 1px solid #e5ebf3; border-radius: 9px; font-size: .76rem; font-weight: 700; transition: .2s; }
.catalog-links a:hover { color: var(--ink); border-color: rgba(var(--cat-rgb,77,229,255),.5); background: rgba(var(--cat-rgb,77,229,255),.1); }
.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.catalog-search { width: min(560px, 100%); min-height: 56px; display: grid; grid-template-columns: 34px 1fr; align-items: center; padding: 0 14px; color: #6d7b90; background: #f6f9fd; border: 1px solid var(--line); border-radius: 16px; transition: border-color .2s, box-shadow .2s, background .2s; }
.catalog-search:focus-within { color: #0d7285; background: white; border-color: #75cbd9; box-shadow: 0 0 0 4px rgba(77,229,255,.12); }
.catalog-search > span { font-size: 1.45rem; line-height: 1; }
.catalog-search input { width: 100%; min-width: 0; height: 54px; color: var(--text); border: 0; outline: 0; background: transparent; }
.catalog-search input::placeholder { color: #8a96a8; }
.catalog-count { flex: 0 0 auto; color: var(--muted); font-size: .78rem; font-weight: 800; }
.catalog-empty { display: none; margin: 24px 0 0; padding: 22px; color: var(--muted); text-align: center; background: #f6f9fd; border: 1px dashed #cbd6e4; border-radius: 16px; }
.catalog-empty.show { display: block; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: process; }
.process-card { position: relative; padding-top: 28px; border-top: 1px solid var(--line); counter-increment: process; }
.process-card::before { position: absolute; right: 0; top: 18px; color: #dce4ef; content: "0" counter(process); font: 700 2.5rem var(--display); }
.process-card .mini-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 40px; color: var(--ink); background: var(--lime); border-radius: 13px; font-weight: 900; }
.process-card h3 { margin: 0 0 8px; font: 700 1.1rem var(--display); }
.process-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); color: white; background: linear-gradient(130deg, #10223a, #07111f); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); }
.stat { padding: 32px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.09); }
.stat strong { display: block; color: var(--cyan); font: 700 2rem var(--display); }
.stat span { color: #9eb0c4; font-size: .8rem; }

/* Service pages */
.service-hero { position: relative; overflow: hidden; color: white; background: var(--ink); }
.service-hero::after { position: absolute; width: 500px; height: 500px; right: -90px; top: -180px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),.25), transparent 70%); }
.service-hero-shell { position: relative; z-index: 1; min-height: 520px; display: grid; grid-template-columns: 1fr 360px; align-items: center; gap: 70px; padding-top: 76px; padding-bottom: 78px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: #8295ac; font-size: .78rem; }
.breadcrumbs a:hover { color: white; }
.service-hero h1 { max-width: 790px; margin: 0; font: 700 clamp(2.7rem, 5.4vw, 5rem)/.98 var(--display); letter-spacing: -.06em; }
.service-hero h1 span { color: var(--accent); }
.service-lead { max-width: 720px; margin: 22px 0 0; color: #aebdd0; font-size: 1.07rem; }
.service-hero h1, .page-hero h1, .section-title { overflow-wrap: anywhere; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.service-badge-card { position: relative; padding: 30px; color: white; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 28px; backdrop-filter: blur(10px); }
.service-badge-card::before { position: absolute; inset: -1px; pointer-events: none; content: ""; border-radius: inherit; background: linear-gradient(135deg, rgba(var(--accent-rgb),.35), transparent 45%); mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); mask-composite: exclude; padding: 1px; }
.service-badge-code { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 54px; color: var(--accent); background: rgba(var(--accent-rgb), .12); border: 1px solid rgba(var(--accent-rgb), .3); border-radius: 21px; font: 800 1.1rem var(--display); }
.service-badge-card small { color: #8799af; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-badge-card strong { display: block; margin-top: 5px; font: 700 1.4rem var(--display); }
.trust-strip { color: #c8d4e2; background: #0a1728; border-top: 1px solid rgba(255,255,255,.07); }
.trust-grid { min-height: 76px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 9px; font-size: .78rem; font-weight: 700; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.08); }
.trust-item i { width: 18px; height: 18px; display: grid; place-items: center; color: var(--ink); background: var(--accent); border-radius: 50%; font-size: .62rem; font-style: normal; }
.service-intro { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: start; }
.service-intro h2 { margin: 0; font: 700 clamp(2rem, 4vw, 3.2rem)/1.05 var(--display); letter-spacing: -.045em; }
.service-intro p { margin: 0 0 14px; color: var(--muted); }
.pricing-shell { display: grid; grid-template-columns: 280px minmax(0, 1fr); align-items: start; gap: 42px; }
.pricing-shell > *, [data-pricing], .pricing-panel, .price-grid, .package-card, .monthly-card { min-width: 0; }
.pricing-aside { position: sticky; top: 110px; }
.pricing-aside h2 { margin: 0 0 14px; font: 700 2.3rem/1.05 var(--display); letter-spacing: -.04em; }
.pricing-aside p { color: var(--muted); font-size: .9rem; }
.pricing-note { margin-top: 24px; padding: 16px; color: #57657a; background: white; border: 1px solid var(--line); border-radius: 14px; font-size: .76rem; }
.pricing-tabs { display: flex; max-width: 100%; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; padding: 7px; background: #eaf0f7; border-radius: 15px; }
.pricing-tab { min-height: 40px; padding: 0 15px; color: #647188; border: 0; background: transparent; border-radius: 10px; font-size: .78rem; font-weight: 800; }
.pricing-tab.active { color: white; background: var(--ink); box-shadow: 0 8px 20px rgba(7,17,31,.14); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: panelIn .25s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(5px); } }
.panel-head { margin: 0 0 20px; }
.panel-head h3 { margin: 0 0 5px; font: 700 1.3rem var(--display); }
.panel-head p { margin: 0; color: var(--muted); font-size: .84rem; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.package-card, .monthly-card { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 25px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 38px rgba(7,17,31,.06); transition: transform .2s, border-color .2s, box-shadow .2s; }
.package-card:hover, .monthly-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb),.55); box-shadow: var(--shadow); }
.package-card.featured, .monthly-card.featured { border-color: rgba(var(--accent-rgb),.55); }
.package-card.featured::before, .monthly-card.featured::before { position: absolute; top: 0; right: 0; padding: 6px 11px; color: var(--ink); content: "Popular"; background: var(--accent); border-radius: 0 19px 0 12px; font-size: .66rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.package-name { margin: 0 0 4px; font: 700 1.08rem var(--display); }
.package-desc { min-height: 42px; margin: 0; color: var(--muted); font-size: .78rem; }
.package-price { margin: 24px 0 17px; }
.package-price-value { font: 700 2.35rem var(--display); letter-spacing: -.05em; }
.package-price-unit { color: var(--muted); font-size: .72rem; }
.package-features { display: grid; gap: 9px; margin: 0 0 24px; padding: 0; list-style: none; }
.package-feature { display: flex; gap: 9px; color: #56637a; font-size: .77rem; }
.package-feature::before { width: 18px; height: 18px; display: inline-grid; flex: 0 0 auto; place-items: center; color: var(--ink); content: "✓"; background: rgba(var(--accent-rgb),.5); border-radius: 50%; font-size: .62rem; font-weight: 900; }
.package-actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: auto; }
.package-actions .btn { min-height: 44px; padding: 0 14px; border-radius: 11px; font-size: .75rem; }
.pay-btn { color: var(--ink); border: 1px solid var(--line); background: #f5f8fc; }
.custom-price { min-height: 300px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 45px; color: white; background: linear-gradient(135deg, #10243c, #07111f); border: 1px solid rgba(255,255,255,.09); border-radius: 26px; }
.custom-price h3 { margin: 0 0 10px; font: 700 2rem var(--display); }
.custom-price p { max-width: 650px; margin: 0; color: #a7b7ca; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 20px; }
.feature-card span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 40px; color: var(--ink); background: rgba(var(--accent-rgb),.45); border-radius: 12px; font-weight: 900; }
.feature-card h3 { margin: 0 0 7px; font: 700 1.04rem var(--display); }
.feature-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.related-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card { padding: 20px; background: white; border: 1px solid var(--line); border-radius: 16px; transition: .2s; }
.related-card:hover { transform: translateY(-3px); border-color: rgba(var(--accent-rgb),.5); }
.related-card small { display: block; margin-bottom: 5px; color: var(--muted); font-size: .67rem; text-transform: uppercase; }
.related-card strong { font: 700 .95rem var(--display); }

/* Inner pages */
.page-hero { color: white; background: var(--ink); }
.page-hero .container { min-height: 430px; display: flex; align-items: end; padding-top: 90px; padding-bottom: 76px; }
.page-hero h1 { max-width: 880px; margin: 0; font: 700 clamp(3rem, 6vw, 5.3rem)/.97 var(--display); letter-spacing: -.06em; }
.page-hero p { max-width: 690px; margin: 22px 0 0; color: #aab9cc; font-size: 1.06rem; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.about-grid h2 { margin: 0; font: 700 2.8rem/1.05 var(--display); letter-spacing: -.05em; }
.about-grid p { margin: 0 0 18px; color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: 20px; }
.value-card b { color: #c7d2e0; font: 700 2.2rem var(--display); }
.value-card h3 { margin: 36px 0 8px; font: 700 1.1rem var(--display); }
.value-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { display: flex; min-height: 240px; flex-direction: column; padding: 28px; color: white; background: #102039; border: 1px solid rgba(255,255,255,.09); border-radius: 22px; transition: .2s; }
.contact-card:hover { transform: translateY(-5px); border-color: rgba(77,229,255,.4); }
.contact-card .contact-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); background: var(--cyan); border-radius: 13px; font-weight: 900; }
.contact-card h3 { margin: auto 0 4px; font: 700 1.2rem var(--display); }
.contact-card p { margin: 0; color: #9dafc5; font-size: .82rem; }
.contact-card strong { display: block; margin-top: 12px; overflow-wrap: anywhere; color: var(--lime); font-size: .84rem; }
.brief-card { padding: 38px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.brief-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 25px; }
.brief-item { padding: 20px; border: 1px solid var(--line); border-radius: 15px; }
.brief-item strong { display: block; margin-bottom: 4px; font-size: .82rem; }
.brief-item span { color: var(--muted); font-size: .78rem; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.article-meta { color: #0d7285; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2 { margin: 18px 0 10px; font: 700 1.35rem/1.15 var(--display); }
.article-card p { margin: 0 0 20px; color: var(--muted); font-size: .84rem; }
.article-body { max-width: 820px; margin: auto; }
.article-body section { scroll-margin-top: 110px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.article-body h2 { margin: 0 0 14px; font: 700 1.8rem var(--display); }
.article-body p, .article-body li { color: var(--muted); }
.policy { max-width: 850px; margin: auto; padding: 44px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.policy h2 { margin: 34px 0 8px; font: 700 1.3rem var(--display); }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: var(--muted); font-size: .9rem; }
.status-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: white; background: var(--ink); }
.status-card { width: min(570px, 100%); padding: 44px; text-align: center; background: #101f33; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.status-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 25px; color: var(--ink); background: var(--lime); border-radius: 20px; font-size: 1.8rem; font-weight: 900; }
.status-card h1 { margin: 0; font: 700 2.2rem var(--display); }
.status-card p { color: #9dafc5; }

/* FAQ, CTA, footer */
.faq-list { max-width: 850px; margin: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--text); border: 0; text-align: left; background: transparent; font-weight: 800; }
.faq-question span:last-child { width: 30px; height: 30px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 45px 24px 0; color: var(--muted); font-size: .9rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.cta-panel { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 58px; color: white; background: linear-gradient(125deg, #102744, #07111f); border: 1px solid rgba(255,255,255,.08); border-radius: 30px; }
.cta-panel::after { position: absolute; width: 280px; height: 280px; right: -90px; top: -120px; content: ""; border-radius: 50%; background: rgba(77,229,255,.16); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 700px; margin: 0; font: 700 clamp(2rem,4vw,3.4rem)/1 var(--display); letter-spacing: -.05em; }
.cta-panel p { max-width: 600px; margin: 14px 0 0; color: #a6b7ca; }
.footer { padding: 74px 0 28px; color: white; background: #050c16; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.footer-about p { max-width: 370px; margin: 18px 0 0; color: #8293a8; font-size: .83rem; }
.footer h3 { margin: 4px 0 17px; color: #e8eef6; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #8596aa; font-size: .8rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; color: #65778d; border-top: 1px solid rgba(255,255,255,.08); font-size: .73rem; }
.floating-dock { position: fixed; z-index: 900; right: 20px; bottom: 92px; display: grid; gap: 9px; }
.float-btn { width: 48px; height: 48px; display: grid; place-items: center; color: white; background: #10223a; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; box-shadow: 0 15px 35px rgba(7,17,31,.24); transition: .2s; }
.float-btn:hover { transform: translateY(-3px); color: var(--ink); background: var(--lime); }
.float-btn svg { width: 20px; height: 20px; }

/* Modal */
.modal { position: fixed; z-index: 3000; inset: 0; display: none; place-items: center; padding: 20px; background: rgba(3,8,15,.78); backdrop-filter: blur(8px); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(540px, 100%); max-height: min(760px, calc(100vh - 32px)); padding: 34px; overflow-y: auto; color: var(--text); background: white; border-radius: 26px; box-shadow: 0 40px 120px rgba(0,0,0,.4); animation: modalIn .22s ease both; }
@keyframes modalIn { from { opacity: 0; transform: translateY(8px) scale(.98); } }
.modal-close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; border: 1px solid var(--line); background: #f6f8fb; border-radius: 11px; }
.modal-card h2 { margin: 0; font: 700 1.8rem var(--display); }
.modal-card > p { margin: 8px 0 22px; color: var(--muted); font-size: .86rem; }
.modal-options { display: grid; gap: 10px; }
.modal-option { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; transition: .2s; }
.modal-option:hover { transform: translateX(3px); border-color: #9bcdd5; background: #f5fcfd; }
.modal-option-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: #dffaff; border-radius: 11px; font-size: .72rem; font-weight: 900; }
.modal-option strong { display: block; font-size: .84rem; }
.modal-option small { display: block; overflow-wrap: anywhere; color: var(--muted); font-size: .7rem; }
.modal-option b { color: #0d7285; font-size: .72rem; }
.payment-status { display: none; margin-top: 12px; padding: 11px; color: #7d5700; background: #fff5d8; border-radius: 10px; font-size: .75rem; }
.payment-status.show { display: block; }

@media (max-width: 1050px) {
  .nav-links { position: absolute; inset: 100% 0 auto; max-height: calc(100vh - 70px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; overflow: auto; background: #07111f; border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 26px 60px rgba(0,0,0,.28); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-services > .nav-link::after { content: "Browse on the homepage"; float: right; color: #66798f; font-size: .62rem; }
  .mega { display: none; }
  .nav-cta { margin-top: 14px; }
  .menu-toggle { display: grid; }
  .hero-shell { grid-template-columns: 1fr; gap: 55px; }
  .spark-console { width: min(640px, 100%); transform: none; }
  .service-hero-shell { grid-template-columns: 1fr 280px; gap: 40px; }
  .pricing-shell { grid-template-columns: 1fr; }
  .pricing-aside { position: static; }
  .service-intro { gap: 40px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .announcement .container { min-height: 40px; }
  .nav { min-height: 70px; }
  .nav-links { inset: 100% 0 auto; max-height: calc(100vh - 70px); }
  .hero-shell { min-height: auto; padding-top: 60px; padding-bottom: 68px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 12px 20px; }
  .console-row { grid-template-columns: 40px 1fr; }
  .console-row b { display: none; }
  .console-order button { float: none; margin: 12px 0 0; }
  .brand-rail .container { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .category-grid, .service-grid, .process-grid, .feature-grid, .value-grid, .contact-grid, .article-grid, .catalog-groups { grid-template-columns: 1fr; }
  .catalog-tools { align-items: stretch; flex-direction: column; }
  .catalog-search { width: 100%; }
  .category-card, .category-card:nth-child(1), .category-card:nth-child(6) { grid-column: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,.09); }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.09); }
  .service-hero-shell { min-height: auto; grid-template-columns: 1fr; padding-top: 58px; padding-bottom: 65px; }
  .service-hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .service-lead { font-size: 1rem; }
  .service-hero-actions { align-items: stretch; flex-direction: column; }
  .service-hero-actions .btn { width: 100%; }
  .service-badge-card { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 12px 0; }
  .trust-item { min-height: 46px; }
  .trust-item + .trust-item { border-left: 0; }
  .trust-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,.08); }
  .pricing-shell { gap: 30px; }
  .pricing-aside h2 { font-size: 2rem; }
  .pricing-note { margin-top: 18px; }
  .price-grid { grid-template-columns: minmax(0, 1fr); }
  .pricing-tabs { margin-inline: -4px; overflow-x: auto; overscroll-behavior-inline: contain; flex-wrap: nowrap; scroll-padding-inline: 7px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .pricing-tab { flex: 0 0 auto; scroll-snap-align: start; }
  .panel-head h3 { overflow-wrap: anywhere; }
  .package-card, .monthly-card { min-height: 0; padding: 22px; }
  .package-desc { min-height: 0; }
  .package-price { margin: 20px 0 16px; }
  .package-actions { grid-template-columns: 1fr; }
  .package-actions .btn { width: 100%; }
  .custom-price { align-items: start; flex-direction: column; padding: 30px; }
  .related-row { grid-template-columns: repeat(2, 1fr); }
  .page-hero .container { min-height: 350px; padding-bottom: 55px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-intro { grid-template-columns: 1fr; gap: 24px; }
  .brief-grid { grid-template-columns: 1fr; }
  .policy { padding: 28px; }
  .cta-panel { align-items: start; flex-direction: column; padding: 36px 28px; }
  .cta-panel .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .floating-dock { right: 12px; bottom: 82px; }
  .float-btn { width: 44px; height: 44px; }
}

@media (max-width: 440px) {
  .brand-word { font-size: 1.1rem; }
  .hero h1, .service-hero h1, .page-hero h1 { font-size: 2.75rem; }
  .stats, .related-row, .footer-grid { grid-template-columns: 1fr; }
  .stat:nth-child(even) { border-left: 0; }
  .stat + .stat { border-top: 1px solid rgba(255,255,255,.09); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item:nth-child(even) { border-left: 0; }
  .section { padding: 58px 0; }
  .service-hero-shell { padding-top: 46px; padding-bottom: 52px; }
  .package-card, .monthly-card { padding: 19px; border-radius: 17px; }
  .package-price-value { font-size: 2.1rem; }
  .custom-price { padding: 24px 20px; }
  .custom-price .btn { width: 100%; }
  .modal-card { padding: 28px 20px 22px; }
}

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