:root {
  --bg: #05070b;
  --bg-soft: #080c13;
  --panel: #0b1018;
  --panel-2: #0e1520;
  --text: #f5f7fb;
  --muted: #9aa7b8;
  --muted-2: #718096;
  --line: rgba(255,255,255,.10);
  --line-bright: rgba(76,174,255,.26);
  --blue: #1f8cff;
  --blue-2: #56c7ff;
  --blue-3: #0d5fff;
  --green: #20d477;
  --shadow: 0 24px 80px rgba(0,0,0,.44);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(25,109,255,.11), transparent 35%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: rgba(31,140,255,.55); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 9999;
  padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--blue);
  transform: translateY(-160%); transition: transform .2s ease; text-decoration: none; font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5,7,11,.68);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(5,7,11,.93); border-color: var(--line); box-shadow: 0 8px 35px rgba(0,0,0,.23); }
.nav-shell { min-height: var(--header-h); display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; min-width: 0; }
.brand-symbol {
  display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px;
  overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 15px;
  background: #020305; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 8px 30px rgba(0,0,0,.3);
}
.brand-symbol img { width: 72%; height: 72%; object-fit: cover; border-radius: 0; }
.brand-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: .96rem; letter-spacing: .025em; text-transform: uppercase; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: #7f8da0; font-size: .67rem; letter-spacing: .17em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.desktop-nav a { position: relative; color: #aab4c2; font-size: .86rem; font-weight: 700; text-decoration: none; transition: color .2s ease; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; background: var(--blue-2); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-header { margin-left: 8px; }
.menu-btn {
  display: none; margin-left: auto; width: 46px; height: 46px; padding: 11px;
  border: 1px solid var(--line); border-radius: 14px; color: #fff; background: rgba(255,255,255,.035);
}
.menu-btn span { display: block; width: 100%; height: 2px; border-radius: 4px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-btn span + span { margin-top: 6px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav {
  position: fixed; top: var(--header-h); right: 0; left: 0;
  display: grid; gap: 7px; max-height: calc(100dvh - var(--header-h)); padding: 18px 20px 24px;
  overflow: auto; visibility: hidden; opacity: 0; transform: translateY(-16px);
  border-bottom: 1px solid var(--line); background: rgba(5,7,11,.985);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.mobile-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-nav a { padding: 13px 14px; border-radius: 12px; color: #d4dce7; text-decoration: none; font-weight: 750; }
.mobile-nav a:hover { background: rgba(255,255,255,.05); }
.mobile-nav .mobile-contact { margin-top: 5px; color: #fff; text-align: center; background: linear-gradient(135deg, var(--blue-3), var(--blue)); box-shadow: 0 14px 30px rgba(18,111,255,.22); }

/* Buttons and type */
.btn {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px;
  padding: 0 21px; border: 1px solid transparent; border-radius: 14px;
  color: #fff; font-size: .91rem; font-weight: 850; letter-spacing: -.01em; text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #095dff 0%, #208eff 62%, #42b4ff 135%); box-shadow: 0 16px 38px rgba(13,103,255,.28), inset 0 1px 0 rgba(255,255,255,.26); }
.btn-primary:hover { box-shadow: 0 20px 48px rgba(13,103,255,.37), inset 0 1px 0 rgba(255,255,255,.28); }
.btn-ghost, .btn-outline { border-color: rgba(255,255,255,.17); background: rgba(255,255,255,.025); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.btn-ghost:hover, .btn-outline:hover { border-color: rgba(80,178,255,.52); background: rgba(31,140,255,.07); }
.btn-outline { min-height: 44px; padding-inline: 17px; font-size: .82rem; }
.btn-outline svg { width: 17px; fill: currentColor; stroke: none; }
.btn-block { width: 100%; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--blue-2); font-size: .73rem; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: currentColor; box-shadow: 0 0 12px currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--text); line-height: 1.08; letter-spacing: -.045em; }
h1 { margin-bottom: 24px; font-size: clamp(3.25rem, 6.7vw, 6.8rem); font-weight: 880; }
h2 { margin-bottom: 22px; font-size: clamp(2.35rem, 4.8vw, 4.85rem); font-weight: 850; }
h3 { margin-bottom: 15px; font-size: 1.35rem; font-weight: 830; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.lead { color: #a9b6c6; font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--blue-2); font-weight: 850; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Hero */
.hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + 76px) 0 54px; overflow: hidden; isolation: isolate; }
.hero::before {
  position: absolute; inset: 0; z-index: -3; content: "";
  background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.4) 55%, transparent 100%);
}
.hero-orb { position: absolute; z-index: -2; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { top: 7%; right: -14%; width: 720px; height: 720px; background: radial-gradient(circle, rgba(0,121,255,.16), rgba(0,121,255,.04) 45%, transparent 69%); }
.hero-orb-two { bottom: -300px; left: -310px; width: 680px; height: 680px; background: radial-gradient(circle, rgba(23,86,255,.11), transparent 68%); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(390px,.82fr); gap: clamp(50px,7vw,112px); align-items: center; }
.hero-copy { min-width: 0; }
.hero-eyebrow { margin-bottom: 23px; }
.hero h1 { max-width: 790px; }
.hero-lead { max-width: 690px; margin-bottom: 31px; color: #aeb9c8; font-size: clamp(1.08rem,1.5vw,1.28rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; max-width: 660px; margin-top: 42px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-proof div { min-width: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: .94rem; }
.hero-proof span { margin-top: 4px; color: #78879a; font-size: .76rem; }
.hero-visual { position: relative; width: min(100%, 510px); aspect-ratio: 1; justify-self: end; }
.portrait-halo { position: absolute; inset: -6%; border: 1px solid rgba(81,177,255,.2); border-radius: 50%; box-shadow: 0 0 110px rgba(0,121,255,.12), inset -26px 0 64px rgba(0,110,255,.1); }
.portrait-halo::before, .portrait-halo::after { position: absolute; content: ""; border-radius: inherit; }
.portrait-halo::before { inset: 8%; border: 1px solid rgba(255,255,255,.055); }
.portrait-halo::after { top: 10%; right: -1%; bottom: 10%; width: 12px; background: linear-gradient(180deg, transparent, #32a7ff, transparent); filter: blur(7px); }
.portrait-frame { position: absolute; inset: 4%; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: #000; box-shadow: var(--shadow); }
.portrait-frame::after { position: absolute; inset: 0; content: ""; border-radius: inherit; box-shadow: inset -36px 0 55px rgba(0,107,255,.1), inset 0 -30px 60px rgba(0,0,0,.16); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.visual-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; max-width: 220px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(8,12,19,.83); box-shadow: 0 14px 35px rgba(0,0,0,.34); backdrop-filter: blur(15px); }
.visual-card p { margin: 0; line-height: 1.25; }
.visual-card strong, .visual-card small { display: block; }
.visual-card strong { font-size: .8rem; }
.visual-card small { margin-top: 4px; color: #7f8da0; font-size: .67rem; }
.visual-card-top { top: 12%; right: -6%; }
.visual-card-bottom { bottom: 7%; left: -8%; }
.visual-icon { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 9px; color: #07111f; background: var(--blue-2); font-size: .85rem; font-weight: 950; }
.visual-pulse { position: relative; width: 11px; height: 11px; flex: 0 0 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px rgba(32,212,119,.65); }
.visual-pulse::after { position: absolute; inset: -6px; content: ""; border: 1px solid rgba(32,212,119,.42); border-radius: 50%; animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
.value-strip { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 78px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(8,12,18,.72); box-shadow: 0 20px 60px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.value-item { display: flex; min-width: 0; align-items: center; gap: 13px; padding: 21px 20px; }
.value-item + .value-item { border-left: 1px solid var(--line); }
.value-icon { display: grid; place-items: center; width: 43px; height: 43px; flex: 0 0 43px; border: 1px solid rgba(66,176,255,.19); border-radius: 13px; color: var(--blue-2); background: rgba(31,140,255,.08); }
.value-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-item p { min-width: 0; margin: 0; line-height: 1.34; }
.value-item strong, .value-item small { display: block; }
.value-item strong { font-size: .79rem; }
.value-item small { margin-top: 4px; color: #768598; font-size: .68rem; }

/* Sections */
.section-services { border-top: 1px solid rgba(255,255,255,.055); background: linear-gradient(180deg,#06090e,#070b11 50%,#06090f); }
.section-heading { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(280px,.6fr); gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading > p { margin: 0 0 8px; color: #8e9cad; }
.section-heading h2 { margin-bottom: 0; }
.section-heading.compact { margin-bottom: 48px; }
.section-heading.center { display: block; max-width: 850px; margin: 0 auto 55px; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center > p { max-width: 710px; margin: 20px auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.service-card { position: relative; display: flex; min-width: 0; min-height: 100%; flex-direction: column; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012)); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card::after { position: absolute; top: -110px; right: -100px; width: 250px; height: 250px; content: ""; border-radius: 50%; background: radial-gradient(circle,rgba(26,135,255,.12),transparent 67%); opacity: 0; transition: opacity .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(77,172,255,.32); box-shadow: 0 22px 55px rgba(0,0,0,.28); }
.service-card:hover::after { opacity: 1; }
.service-featured { border-color: rgba(44,157,255,.31); background: linear-gradient(145deg,rgba(27,112,255,.095),rgba(255,255,255,.018) 52%); }
.featured-label { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border: 1px solid rgba(91,189,255,.26); border-radius: 999px; color: #9ddcff; background: rgba(31,140,255,.08); font-size: .61rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 29px; }
.service-number { color: #5e6a7b; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.service-icon { display: grid; place-items: center; width: 49px; height: 49px; border: 1px solid rgba(71,174,255,.2); border-radius: 15px; color: var(--blue-2); background: rgba(31,140,255,.075); }
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card > p { color: #96a3b4; font-size: .91rem; }
.service-card ul, .price-card ul { display: grid; gap: 9px; margin: 9px 0 28px; padding: 0; list-style: none; }
.service-card li, .price-card li { position: relative; padding-left: 22px; color: #aeb9c7; font-size: .82rem; }
.service-card li::before, .price-card li::before { position: absolute; top: .62em; left: 0; width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 12px rgba(79,191,255,.45); }
.service-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); color: #748295; font-size: .72rem; }
.service-footer strong { color: #fff; font-size: .9rem; }
.service-footer a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-2); font-weight: 900; text-decoration: none; white-space: nowrap; }
.service-footer b { font-size: 1rem; }

/* Showcase */
.showcase-section { overflow: hidden; background: radial-gradient(circle at 78% 45%,rgba(8,105,255,.12),transparent 30%),#05080d; }
.showcase-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(500px,1.12fr); gap: clamp(55px,7vw,100px); align-items: center; }
.showcase-copy h2 { font-size: clamp(2.45rem,4.3vw,4.5rem); }
.showcase-list { display: grid; gap: 7px; margin: 34px 0; }
.showcase-list > div { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.showcase-list > div:last-child { border-bottom: 1px solid var(--line); }
.showcase-list > div > span { padding-top: 2px; color: var(--blue-2); font-size: .7rem; font-weight: 900; letter-spacing: .11em; }
.showcase-list p { margin: 0; line-height: 1.42; }
.showcase-list strong, .showcase-list small { display: block; }
.showcase-list strong { font-size: .92rem; }
.showcase-list small { margin-top: 6px; color: #8290a2; font-size: .78rem; }
.browser-stage { position: relative; min-width: 0; padding: 28px 0 34px 30px; }
.browser-window { position: relative; width: 100%; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: #090d14; box-shadow: 0 38px 90px rgba(0,0,0,.5), 0 0 70px rgba(0,100,255,.08); transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }
.browser-bar { display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 15px; border-bottom: 1px solid var(--line); background: #0d121a; }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #394352; }
.browser-bar i:first-child { background: #f15d61; }.browser-bar i:nth-child(2){background:#e6b44e}.browser-bar i:nth-child(3){background:#49bd7b}
.browser-bar span { display: block; width: 42%; margin-left: 14px; padding: 5px 10px; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; color: #5e6a7a; background: #080c12; font-size: .56rem; }
.browser-content { padding: 19px; }
.browser-nav { display: flex; align-items: center; gap: 13px; height: 26px; }
.mini-logo { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; color: #fff; background: #126ef4; font-size: .66rem; font-weight: 950; }
.browser-nav > span:not(.mini-logo) { width: 36px; height: 5px; border-radius: 5px; background: #242c38; }
.browser-nav > span:nth-child(4) { margin-left: auto; }
.browser-nav b { width: 58px; height: 19px; border-radius: 6px; background: linear-gradient(90deg,#0a62ed,#289cff); }
.browser-hero { display: grid; grid-template-columns: 1fr .72fr; gap: 24px; align-items: center; min-height: 245px; margin-top: 18px; padding: 29px; border: 1px solid rgba(255,255,255,.055); border-radius: 17px; background: radial-gradient(circle at 80% 20%,rgba(24,111,255,.12),transparent 38%),#080c12; }
.browser-copy > i { display: block; width: 82px; height: 5px; margin-bottom: 17px; border-radius: 9px; background: #1c8eff; }
.browser-copy h3 { width: 92%; height: 22px; margin: 8px 0; border-radius: 6px; background: #e6ebf3; }
.browser-copy h3.short { width: 66%; }
.browser-copy p { width: 86%; height: 7px; margin: 17px 0 0; border-radius: 7px; background: #384251; }
.browser-copy p.short { width: 62%; margin-top: 8px; }
.browser-copy div { display: flex; gap: 9px; margin-top: 22px; }
.browser-copy b { display: block; width: 83px; height: 25px; border-radius: 7px; background: linear-gradient(90deg,#0d63ee,#269dff); }
.browser-copy b:last-child { width: 69px; border: 1px solid #313a47; background: transparent; }
.browser-image { display: grid; place-items: center; aspect-ratio: 1; border: 1px solid rgba(66,171,255,.2); border-radius: 50%; background: radial-gradient(circle at 40% 35%,#273a52,#07101c 55%,#020407); box-shadow: 0 0 48px rgba(0,113,255,.16); }
.browser-image span { width: 46%; height: 55%; border-radius: 46% 46% 40% 40%; background: linear-gradient(180deg,#64758a,#182333); clip-path: polygon(20% 0,80% 0,100% 35%,83% 100%,17% 100%,0 35%); opacity: .85; }
.browser-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.browser-cards i { height: 74px; border: 1px solid rgba(255,255,255,.06); border-radius: 11px; background: linear-gradient(145deg,#0d131d,#090d14); }
.quality-chip { position: absolute; display: flex; align-items: center; gap: 11px; max-width: 200px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(7,11,17,.9); box-shadow: 0 18px 45px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
.quality-chip b { color: var(--blue-2); font-size: .82rem; white-space: nowrap; }
.quality-chip span { color: #8d9aab; font-size: .67rem; line-height: 1.2; }
.quality-one { bottom: 2px; left: 0; }.quality-two{top: 7px;right: -8px}

/* Process */
.process-section { border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); background: linear-gradient(180deg,#080c12,#06090e); }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.process-card { position: relative; min-width: 0; padding: 30px 26px 30px 0; border-top: 1px solid var(--line); }
.process-card + .process-card { padding-left: 26px; border-left: 1px solid var(--line); }
.process-card > span { display: block; margin-bottom: 24px; color: #586577; font-size: .68rem; font-weight: 900; letter-spacing: .16em; }
.process-dot { position: relative; width: 10px; height: 10px; margin-bottom: 28px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px rgba(31,140,255,.55); }
.process-card h3 { font-size: 1.12rem; }
.process-card p { margin-bottom: 0; color: #8795a7; font-size: .83rem; }
.process-note { display: flex; align-items: center; gap: 13px; margin-top: 25px; padding: 16px 18px; border: 1px solid rgba(68,176,255,.18); border-radius: 14px; background: rgba(31,140,255,.045); }
.process-note > span { display: grid; place-items: center; width: 27px; height: 27px; flex: 0 0 27px; border-radius: 50%; color: #061523; background: var(--blue-2); font-size: .75rem; font-weight: 950; }
.process-note p { margin: 0; color: #9eabbc; font-size: .78rem; }
.process-note strong { color: #eaf2fb; }

/* About */
.about-section { overflow: hidden; background: radial-gradient(circle at 18% 50%,rgba(0,113,255,.12),transparent 28%),#05080d; }
.about-grid { display: grid; grid-template-columns: minmax(380px,.82fr) minmax(0,1.18fr); gap: clamp(65px,8vw,125px); align-items: center; }
.about-visual { position: relative; width: min(100%, 500px); justify-self: center; }
.about-photo { position: relative; width: 84%; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 25px rgba(31,140,255,.025),0 0 0 26px rgba(55,165,255,.12),var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.brand-stamp { position: absolute; right: 0; bottom: -7%; display: grid; place-items: center; width: 38%; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 26px; background: #020305; box-shadow: 0 24px 55px rgba(0,0,0,.43); }
.brand-stamp img { width: 100%; height: 100%; object-fit: contain; }
.about-copy blockquote { margin: 32px 0; padding: 19px 22px; border-left: 3px solid var(--blue); border-radius: 0 14px 14px 0; color: #ecf4fd; background: rgba(31,140,255,.055); font-size: 1.05rem; font-weight: 800; line-height: 1.55; }
.about-details { display: grid; gap: 0; }
.about-details > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 17px 0; border-top: 1px solid var(--line); }
.about-details > div:last-child { border-bottom: 1px solid var(--line); }
.about-details strong { font-size: .81rem; }
.about-details span { color: #8492a4; font-size: .78rem; }

/* Pricing */
.pricing-section { background: linear-gradient(180deg,#070b11,#090d14 48%,#070a0f); }
.pricing-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)) minmax(260px,.72fr); gap: 18px; align-items: stretch; }
.price-card, .price-side { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(150deg,rgba(255,255,255,.04),rgba(255,255,255,.012)); }
.price-card { display: flex; min-height: 100%; flex-direction: column; padding: 31px; }
.price-featured { border-color: rgba(47,157,255,.36); background: linear-gradient(150deg,rgba(21,111,255,.11),rgba(255,255,255,.015) 58%); box-shadow: 0 28px 70px rgba(0,50,130,.14); }
.price-badge { position: absolute; top: 21px; right: 21px; padding: 6px 9px; border: 1px solid rgba(92,192,255,.28); border-radius: 999px; color: #a8dfff; background: rgba(31,140,255,.08); font-size: .61rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.plan-kicker { margin-bottom: 13px; color: var(--blue-2); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.price-card h3 { font-size: 1.52rem; }
.price { margin: 7px 0 20px; }
.price small, .price strong { display: block; }
.price small { margin-bottom: 3px; color: #667488; font-size: .72rem; text-transform: uppercase; }
.price strong { font-size: clamp(2rem,3vw,2.7rem); letter-spacing: -.045em; }
.price-card > p:not(.plan-kicker) { color: #8e9bad; font-size: .86rem; }
.price-card ul { margin: 8px 0 29px; }
.price-card .btn { margin-top: auto; }
.price-side { display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: radial-gradient(circle at 85% 12%,rgba(31,140,255,.16),transparent 36%),#080c12; }
.price-side-logo { position: absolute; top: -12px; right: -12px; width: 130px; height: 130px; opacity: .12; transform: rotate(8deg); }
.price-side-logo img { width: 100%; height: 100%; object-fit: cover; }
.price-side .eyebrow { position: relative; }
.price-side h3 { max-width: 260px; font-size: 1.7rem; }
.price-side > p:not(.eyebrow) { color: #8a98a9; font-size: .84rem; }
.honesty-note { display: grid; gap: 4px; margin-top: 30px; padding-top: 19px; border-top: 1px solid var(--line); }
.honesty-note b { font-size: .74rem; }.honesty-note span{color:#748396;font-size:.7rem}

/* FAQ */
.faq-section { background: #05080d; }
.faq-grid { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(60px,8vw,120px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 45px); }
.faq-intro p:not(.eyebrow) { color: #8f9cad; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 4px; cursor: pointer; color: #e8eef6; font-size: .98rem; font-weight: 780; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { position: relative; width: 20px; height: 20px; flex: 0 0 20px; }
summary span::before, summary span::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; content: ""; background: var(--blue-2); transform: translate(-50%,-50%); transition: transform .2s ease; }
summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
details > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s ease; }
details[open] > div { grid-template-rows: 1fr; }
details > div > p { min-height: 0; margin: 0; overflow: hidden; color: #8e9bad; font-size: .85rem; }
details[open] > div > p { padding: 0 4px 23px; }

/* Contact */
.contact-section { padding-top: 82px; background: linear-gradient(180deg,#05080d,#030509); }
.contact-shell { position: relative; display: grid; grid-template-columns: minmax(0,.85fr) minmax(420px,1.15fr); gap: clamp(50px,7vw,95px); padding: clamp(35px,5vw,65px); overflow: hidden; border: 1px solid rgba(69,174,255,.23); border-radius: var(--radius-xl); background: radial-gradient(circle at 0 0,rgba(25,116,255,.16),transparent 35%),linear-gradient(145deg,#0a1019,#070a10); box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.contact-shell::before { position: absolute; top: -180px; left: -180px; width: 420px; height: 420px; content: ""; border: 1px solid rgba(50,162,255,.1); border-radius: 50%; box-shadow: 0 0 0 45px rgba(30,137,255,.025),0 0 0 90px rgba(30,137,255,.018); }
.contact-copy { position: relative; }
.contact-copy h2 { font-size: clamp(2.5rem,4.6vw,4.6rem); }
.contact-copy > p:not(.eyebrow) { color: #97a5b6; font-size: 1rem; }
.contact-direct { display: grid; gap: 10px; margin-top: 34px; }
.contact-direct a { display: grid; gap: 3px; padding: 13px 0; border-top: 1px solid var(--line); text-decoration: none; }
.contact-direct a:last-child { border-bottom: 1px solid var(--line); }
.contact-direct small { color: #6e7d91; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct strong { font-size: .84rem; overflow-wrap: anywhere; }
.contact-form { position: relative; min-width: 0; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: rgba(3,6,10,.62); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.form-grid label { min-width: 0; }
.form-grid label > span { display: block; margin: 0 0 7px; color: #aab5c3; font-size: .72rem; font-weight: 750; }
.form-grid .full { grid-column: 1/-1; }
input, select, textarea { width: 100%; min-width: 0; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; outline: none; color: #eef4fb; background: #090e16; transition: border-color .2s ease, box-shadow .2s ease; }
input, select { height: 47px; padding: 0 13px; }
textarea { min-height: 125px; padding: 12px 13px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #566477; }
input:focus, select:focus, textarea:focus { border-color: rgba(65,170,255,.65); box-shadow: 0 0 0 4px rgba(31,140,255,.08); }
select { color-scheme: dark; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 14px; color: #7e8c9e; font-size: .68rem; }
.consent input { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; accent-color: var(--blue); }
.consent a { color: #b5dfff; }
.form-status { min-height: 20px; margin: 0 0 7px; color: #ffb5b5; font-size: .69rem; }
.form-footnote { margin: 12px 0 0; color: #667589; font-size: .63rem; text-align: center; }

/* Footer */
.site-footer { padding: 72px 0 26px; border-top: 1px solid var(--line); background: #030509; }
.footer-top { display: grid; grid-template-columns: 1.45fr .65fr 1fr .9fr; gap: 45px; }
.footer-brand .brand { margin-bottom: 19px; }
.footer-brand > p { max-width: 330px; color: #758396; font-size: .8rem; }
.footer-brand > img { width: 116px; height: 116px; object-fit: contain; margin-bottom: 18px; border-radius: 19px; }
.footer-col h3 { margin: 5px 0 17px; color: #dce5ef; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: #788699; font-size: .76rem; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-top: 50px; padding-top: 23px; border-top: 1px solid var(--line); color: #5f6d7f; font-size: .66rem; }
.footer-bottom p { max-width: 720px; margin: 0; }
.whatsapp-float { position: fixed; right: max(16px,env(safe-area-inset-right)); bottom: max(16px,env(safe-area-inset-bottom)); z-index: 95; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; background: #19c96f; box-shadow: 0 17px 45px rgba(25,201,111,.35), inset 0 1px 0 rgba(255,255,255,.28); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 22px 55px rgba(25,201,111,.45); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }

/* Legal pages */
.legal-hero { padding: calc(var(--header-h) + 80px) 0 62px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 75% 10%,rgba(22,130,255,.13),transparent 30%),#060910; }
.legal-hero h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(2.7rem,6vw,5.3rem); }
.legal-hero .lead { max-width: 780px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; color: #7c8b9e; font-size: .75rem; }
.legal-layout { display: grid; grid-template-columns: 245px minmax(0,1fr); gap: 60px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 24px); padding: 17px; border: 1px solid var(--line); border-radius: 18px; background: #0a0f17; }
.legal-nav strong { display: block; margin: 3px 8px 12px; font-size: .8rem; }
.legal-nav a { display: block; padding: 7px 8px; border-radius: 9px; color: #7f8da0; font-size: .74rem; text-decoration: none; }
.legal-nav a:hover { color: #fff; background: rgba(255,255,255,.045); }
.legal-content { max-width: 870px; min-width: 0; }
.legal-content section { margin-bottom: 42px; scroll-margin-top: calc(var(--header-h) + 30px); }
.legal-content h2 { margin-bottom: 14px; font-size: 1.75rem; }
.legal-content h3 { margin-top: 24px; font-size: 1.08rem; }
.legal-content p, .legal-content li { color: #98a5b6; }
.legal-content ul { padding-left: 21px; }
.legal-content li { margin: 8px 0; }
.legal-content a { color: #9cdcff; overflow-wrap: anywhere; }
.legal-box { margin: 22px 0; padding: 19px; border: 1px solid rgba(53,165,255,.2); border-radius: 16px; background: rgba(31,140,255,.05); }
.legal-box p:last-child { margin-bottom: 0; }
.legal-back { margin-top: 26px; }
.error-page { display: grid; min-height: 100svh; place-items: center; padding: 40px 20px; text-align: center; background: radial-gradient(circle at 50% 35%,rgba(22,134,255,.14),transparent 30%),#05070b; }
.error-page img { width: 105px; height: 105px; object-fit: contain; margin: 0 auto 23px; border-radius: 20px; }
.error-code { color: #8edfff; font-size: clamp(5rem,15vw,10rem); font-weight: 950; line-height: .85; letter-spacing: -.08em; }
.error-page h1 { margin-top: 24px; font-size: clamp(2rem,5vw,3.5rem); }
.error-page p { max-width: 620px; margin-inline: auto; color: #93a2b5; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.2,.75,.2,1), transform .65s cubic-bezier(.2,.75,.2,1); transition-delay: var(--delay,0ms); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: .8rem; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(350px,.78fr); gap: 48px; }
  .value-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .value-item:nth-child(3), .value-item:nth-child(4) { border-top: 1px solid var(--line); }
  .value-item:nth-child(3) { border-left: 0; }
  .pricing-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .price-side { grid-column: 1/-1; min-height: 280px; }
  .footer-top { grid-template-columns: 1.3fr .7fr 1fr; }
  .footer-col:last-child { grid-column: 2/4; }
}

@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .desktop-nav, .btn-header { display: none; }
  .menu-btn { display: block; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 58px); }
  .hero-grid, .showcase-grid, .about-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-eyebrow, .hero-actions { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-proof { margin-inline: auto; text-align: left; }
  .hero-visual { width: min(500px,82vw); margin: 25px auto 0; justify-self: center; }
  .value-strip { margin-top: 65px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 720px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .showcase-grid { gap: 55px; }
  .browser-stage { width: min(720px,100%); margin-inline: auto; }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-card:nth-child(3) { padding-left: 0; border-left: 0; }
  .process-card:nth-child(3), .process-card:nth-child(4) { border-top: 1px solid var(--line); }
  .about-grid { gap: 70px; }
  .about-visual { width: min(480px,86vw); }
  .faq-intro { position: static; }
  .contact-shell { gap: 45px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { display: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 26px,var(--max)); }
  .section { padding: 82px 0; }
  .nav-shell { gap: 12px; }
  .brand-symbol { width: 43px; height: 43px; flex-basis: 43px; border-radius: 13px; }
  .brand-copy strong { font-size: .85rem; }
  .brand-copy small { font-size: .56rem; letter-spacing: .14em; }
  .hero { padding: calc(var(--header-h) + 42px) 0 35px; }
  .hero h1 { font-size: clamp(2.65rem,13.4vw,4.3rem); }
  .hero-lead { font-size: 1rem; line-height: 1.7; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 29px; }
  .hero-proof div:last-child { grid-column: 1/-1; }
  .hero-visual { width: min(440px,86vw); margin-top: 42px; }
  .visual-card { max-width: 178px; padding: 9px 10px; border-radius: 12px; }
  .visual-card-top { top: 7%; right: -4%; }.visual-card-bottom{bottom:2%;left:-4%}
  .visual-card strong { font-size: .68rem; }.visual-card small{font-size:.58rem}
  .visual-icon { width: 25px; height: 25px; flex-basis: 25px; }
  .value-strip { grid-template-columns: 1fr; margin-top: 58px; border-radius: 18px; }
  .value-item { padding: 17px; }
  .value-item + .value-item { border-top: 1px solid var(--line); border-left: 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, h2 { font-size: clamp(2.2rem,10vw,3.55rem); }
  .service-card { padding: 23px; border-radius: 20px; }
  .service-footer { align-items: flex-start; flex-direction: column; }
  .featured-label { top: 16px; right: 16px; }
  .browser-stage { padding: 12px 0 34px; }
  .browser-window { transform: none; border-radius: 17px; }
  .browser-content { padding: 11px; }
  .browser-hero { min-height: 190px; padding: 18px; gap: 13px; }
  .quality-one { left: 4px; }.quality-two{right:4px;top:-8px}
  .quality-chip { max-width: 160px; padding: 8px 9px; }
  .quality-chip span { font-size: .58rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card, .process-card + .process-card { padding: 24px 0; border-left: 0; }
  .process-card + .process-card { border-top: 1px solid var(--line); }
  .process-card:nth-child(3) { border-top: 1px solid var(--line); }
  .about-grid { gap: 55px; }
  .about-details > div { grid-template-columns: 1fr; gap: 5px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-side { grid-column: auto; min-height: 300px; }
  .price-card, .price-side { padding: 24px; border-radius: 20px; }
  .price-badge { position: static; align-self: flex-start; margin: -2px 0 15px; }
  .faq-grid { gap: 42px; }
  summary { font-size: .9rem; }
  .contact-section { padding-top: 60px; }
  .contact-shell { width: calc(100% - 18px); padding: 25px 16px; border-radius: 24px; }
  .contact-copy { padding-inline: 4px; }
  .contact-form { padding: 18px; border-radius: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .legal-hero { padding-top: calc(var(--header-h) + 55px); }
  .legal-content h2 { font-size: 1.45rem; }
  .whatsapp-float { width: 54px; height: 54px; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 20px,var(--max)); }
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(2.45rem,13vw,3.4rem); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div:last-child { grid-column: auto; }
  .visual-card-top { right: -1%; }.visual-card-bottom{left:-1%}
  .value-item small { font-size: .64rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
}

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

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: absolute; }
  .whatsapp-float { display: none; }
}

@media (max-width: 680px) {
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-copy { display: contents; }
  .hero-eyebrow { order: 1; align-self: center; }
  .hero h1 { order: 2; width: 100%; margin-bottom: 18px; text-align: center; }
  .hero-lead { order: 3; width: 100%; margin-bottom: 22px; text-align: center; }
  .hero-visual { order: 4; width: min(255px, 72vw); margin: 4px auto 28px; }
  .hero-actions { order: 5; width: 100%; }
  .hero-proof { order: 6; width: 100%; }
  .visual-card { display: none; }
}
