:root {
    --ink: #0a1714;
    --ink-2: #10241f;
    --ink-3: #18352e;
    --paper: #f6f9f8;
    --paper-2: #edf4f2;
    --white: #ffffff;
    --line: #d7e3df;
    --line-dark: rgba(197, 226, 219, .16);
    --muted: #61736e;
    --muted-light: #a9beb8;
    --turquoise: #52897f;
    --turquoise-dark: #2d665c;
    --turquoise-deep: #1c4b43;
    --turquoise-bright: #75cdbb;
    --turquoise-soft: #b8e5dc;
    --success: #65c9a8;
    --danger: #a24a4a;
    --container: 1360px;
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 18px 55px rgba(15, 49, 41, .08);
    --shadow-deep: 0 38px 110px rgba(2, 18, 14, .22);
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open, body.cookie-modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { color: #fff; background: var(--turquoise); }

.site-noise { position: fixed; z-index: 999; inset: 0; pointer-events: none; opacity: .015; 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='.94' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.78'/%3E%3C/svg%3E"); }
.scroll-progress { position: fixed; z-index: 700; top: 0; left: 0; width: 100%; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--turquoise), var(--turquoise-bright)); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 122px 0; }
.section-label, .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--turquoise-dark); font-size: 11px; font-weight: 760; letter-spacing: .17em; text-transform: uppercase; }
.section-label::before, .eyebrow > span { width: 24px; height: 1px; content: ""; background: currentColor; }
.section-label.light { color: #9ed8cc; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .58fr); gap: 76px; align-items: end; margin-bottom: 58px; }
.section-heading h2 { max-width: 850px; margin: 16px 0 0; font-size: clamp(46px, 5.3vw, 74px); line-height: 1.02; letter-spacing: -.052em; font-weight: 650; text-wrap: balance; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.82; }

/* Header */
.site-header { position: fixed; z-index: 500; inset: 0 0 auto; color: #fff; border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(4, 20, 16, .28); backdrop-filter: blur(16px); transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.is-sticky, body:not(.home) .site-header { color: var(--ink); border-color: rgba(18, 53, 44, .09); background: rgba(255,255,255,.96); box-shadow: 0 12px 38px rgba(11, 36, 30, .07); }
.header-inner { min-height: 88px; display: grid; grid-template-columns: 220px 1fr auto; gap: 42px; align-items: center; }
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand img { width: 178px; height: 54px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; justify-content: center; gap: 30px; }
.main-nav a { position: relative; padding: 34px 0 30px; font-size: 13px; font-weight: 680; white-space: nowrap; }
.main-nav a::after { position: absolute; left: 0; bottom: 22px; width: 0; height: 1px; content: ""; background: currentColor; transition: width .22s ease; }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-login { font-size: 12px; font-weight: 700; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; color: currentColor; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .22s ease; }

/* Buttons */
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius-xs); font-size: 12px; font-weight: 760; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span, .service-card a span, .footer-project-link span { transition: transform .22s ease; }
.button:hover span, .service-card a:hover span, .footer-project-link:hover span { transform: translate(3px, -3px); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 11px; }
.button-primary { color: #061510; background: var(--turquoise-bright); box-shadow: 0 13px 32px rgba(79, 177, 157, .21); }
.button-primary:hover { background: #8ad8c9; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.045); }
.button-ghost:hover { border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.09); }
.button-dark { color: #fff; background: var(--ink); }
.button-light-outline { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.button-form { width: 100%; color: #061510; background: var(--turquoise-bright); }
.button-white { color: var(--ink); background: #fff; }

/* Hero */
.hero { position: relative; min-height: 920px; overflow: hidden; padding: 155px 0 0; color: #fff; background: linear-gradient(145deg, #061813 0%, #09221c 52%, #0c3028 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(153, 216, 203, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(153, 216, 203, .08) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 76% 47%, #000 0%, rgba(0,0,0,.9) 34%, transparent 80%); }
.hero::before { position: absolute; inset: auto 0 0; height: 260px; content: ""; background: linear-gradient(to bottom, transparent, rgba(3,16,12,.72)); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-a { width: 720px; height: 720px; right: -130px; top: -300px; background: radial-gradient(circle, rgba(91, 179, 161, .29), transparent 67%); }
.hero-glow-b { width: 560px; height: 560px; left: 24%; bottom: -410px; background: radial-gradient(circle, rgba(109, 204, 185, .15), transparent 70%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .92fr) minmax(590px, 1.08fr); gap: 78px; align-items: center; }
.hero-copy { max-width: 715px; padding: 74px 0 88px; }
.hero .eyebrow { color: #a7dcd1; }
.hero h1 { margin: 24px 0 28px; font-size: clamp(58px, 6.35vw, 96px); line-height: .96; letter-spacing: -.061em; font-weight: 650; text-wrap: balance; }
.hero-lead { max-width: 665px; margin: 0; color: #b5c9c3; font-size: 18px; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-proof > div { display: grid; grid-template-columns: 31px 1fr; gap: 10px; align-items: start; }
.hero-proof strong { color: var(--turquoise-bright); font-family: var(--mono); font-size: 10px; }
.hero-proof span { color: #8fa79f; font-size: 11px; line-height: 1.5; }
.hero-visual { position: relative; min-height: 620px; }
.system-stage { position: absolute; inset: 0; }
.dashboard-window { position: absolute; z-index: 4; top: 49%; left: 2%; width: 760px; overflow: hidden; border: 1px solid rgba(170, 226, 215, .18); border-radius: 18px; background: rgba(7, 31, 25, .9); box-shadow: 0 65px 150px rgba(0,0,0,.46); backdrop-filter: blur(20px); transform: translateY(-50%); transition: transform .16s ease; }
.dashboard-bar { height: 49px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; border-bottom: 1px solid rgba(255,255,255,.08); color: #7f9a92; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.dashboard-bar > b { justify-self: end; display: inline-flex; align-items: center; gap: 8px; color: #91d8c9; font-size: 8px; }
.dashboard-bar > b i { width: 6px; height: 6px; border-radius: 50%; background: #72cdb9; box-shadow: 0 0 0 5px rgba(114,205,185,.1); }
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.17); }
.dashboard-body { display: grid; grid-template-columns: 60px 1fr; min-height: 500px; }
.dashboard-nav { display: flex; flex-direction: column; align-items: center; gap: 23px; padding: 18px 0; border-right: 1px solid rgba(255,255,255,.07); background: rgba(3,18,14,.28); }
.dashboard-nav span { width: 31px; height: 31px; display: grid; place-items: center; margin-bottom: 7px; border-radius: 8px; color: #062019; background: var(--turquoise-bright); font-size: 9px; font-weight: 850; }
.dashboard-nav i { width: 17px; height: 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 5px; }
.dashboard-nav i.active { border-color: var(--turquoise-bright); background: rgba(117,205,187,.17); }
.dashboard-main { padding: 27px; }
.dashboard-title { display: flex; justify-content: space-between; align-items: start; }
.dashboard-title small, .dashboard-metrics small { display: block; color: #718c84; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.dashboard-title strong { display: block; margin-top: 5px; font-size: 18px; font-weight: 650; }
.dashboard-title > span { min-width: 82px; padding: 9px 12px; border: 1px solid rgba(117,205,187,.2); border-radius: 7px; color: #91d8c9; background: rgba(117,205,187,.08); font-family: var(--mono); font-size: 12px; text-align: center; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 25px; }
.dashboard-metrics article { min-height: 99px; padding: 15px; border: 1px solid rgba(255,255,255,.075); border-radius: 9px; background: rgba(255,255,255,.027); }
.dashboard-metrics strong { display: block; margin: 10px 0 3px; color: #e5f3ef; font-size: 24px; font-weight: 650; letter-spacing: -.03em; }
.dashboard-metrics span { color: #647f77; font-size: 8px; }
.dashboard-chart { margin-top: 11px; padding: 15px 15px 4px; border: 1px solid rgba(255,255,255,.075); border-radius: 9px; background: rgba(255,255,255,.02); }
.dashboard-chart > div { display: flex; justify-content: space-between; gap: 20px; color: #97aea8; font-size: 9px; }
.dashboard-chart small { color: #637c75; }
.dashboard-chart svg { width: 100%; height: 150px; margin-top: 5px; overflow: visible; }
.chart-grid-line { fill: none; stroke: rgba(255,255,255,.055); stroke-width: 1; }
.chart-area { fill: url(#heroArea); }
.chart-path { fill: none; stroke: var(--turquoise-bright); stroke-width: 2.2; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(117,205,187,.36)); }
.dashboard-statuses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.dashboard-statuses span { display: flex; align-items: center; gap: 7px; padding: 9px 10px; border: 1px solid rgba(255,255,255,.06); border-radius: 7px; color: #819b93; font-size: 8px; }
.dashboard-statuses i { width: 5px; height: 5px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(101,201,168,.09); }
.dashboard-statuses b { margin-left: auto; color: #9bcfc3; font-weight: 650; }
.server-stack { position: absolute; z-index: 6; right: 5px; bottom: 16px; width: 170px; padding: 14px; border: 1px solid rgba(158,221,208,.17); border-radius: 17px; background: rgba(6,30,24,.92); box-shadow: 0 32px 70px rgba(0,0,0,.36); transform: perspective(800px) rotateY(-10deg); }
.server-stack span { display: block; height: 34px; margin: 7px 0; border: 1px solid rgba(255,255,255,.08); border-radius: 6px; background: linear-gradient(90deg, rgba(117,205,187,.13), rgba(255,255,255,.025)); }
.server-stack span::before { width: 6px; height: 6px; display: block; margin: 13px; border-radius: 50%; content: ""; background: var(--success); box-shadow: 18px 0 0 rgba(117,205,187,.4); }
.server-stack b { position: absolute; inset: auto 50% -32px; width: 110px; height: 50px; border-radius: 50%; background: radial-gradient(circle, rgba(117,205,187,.22), transparent 68%); transform: translateX(-50%); }
.system-node { position: absolute; z-index: 7; display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid rgba(166,225,213,.18); border-radius: 8px; color: #abc5be; background: rgba(5,27,21,.88); box-shadow: 0 18px 42px rgba(0,0,0,.25); backdrop-filter: blur(12px); font-size: 9px; }
.system-node i { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 6px; color: #082019; background: var(--turquoise-bright); font-style: normal; font-size: 11px; }
.node-domain { right: 40px; top: 58px; }
.node-backup { left: -24px; bottom: 40px; }
.system-link { position: absolute; z-index: 2; height: 1px; background: linear-gradient(90deg, transparent, rgba(117,205,187,.5), transparent); transform-origin: left; }
.link-a { width: 180px; right: 116px; top: 118px; transform: rotate(19deg); }
.link-b { width: 160px; left: 80px; bottom: 108px; transform: rotate(-14deg); }
.hero-service-bar { position: relative; z-index: 12; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 24px; border: 1px solid rgba(255,255,255,.1); border-bottom: 0; background: rgba(5,25,20,.72); backdrop-filter: blur(16px); }
.hero-service-bar a { position: relative; min-height: 116px; display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 10px; padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.09); transition: background .2s ease; }
.hero-service-bar a:last-child { border-right: 0; }
.hero-service-bar a:hover { background: rgba(117,205,187,.07); }
.hero-service-bar span { grid-row: 1 / 3; color: #6fcab7; font-family: var(--mono); font-size: 9px; }
.hero-service-bar strong { font-size: 13px; font-weight: 700; }
.hero-service-bar small { margin-top: 5px; color: #718b84; font-size: 9px; }

/* Intro */
.intro-section { background: #fff; }
.intro-grid { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 65px; }
.intro-copy h2 { max-width: 1000px; margin: 0; font-size: clamp(48px, 6vw, 83px); line-height: 1.02; letter-spacing: -.058em; font-weight: 640; }
.intro-copy h2 span { color: var(--turquoise); }
.intro-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; max-width: 900px; margin: 50px 0 0 auto; }
.intro-columns p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.82; }

/* Services */
.services-section { background: linear-gradient(180deg, #f7faf9 0%, #eef5f3 100%); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.service-card { position: relative; overflow: hidden; min-height: 510px; display: flex; flex-direction: column; padding: 36px 38px 34px; border: 1px solid #d3e1dd; border-radius: var(--radius-sm); background: rgba(255,255,255,.88); box-shadow: 0 12px 34px rgba(15,49,41,.04); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.service-card::before { position: absolute; inset: 0; content: ""; pointer-events: none; opacity: 0; background: radial-gradient(420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(82,137,127,.14), transparent 48%); transition: opacity .25s ease; }
.service-card:hover { border-color: #aecdc5; transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.service-card:hover::before { opacity: 1; }
.service-icon { position: relative; z-index: 1; width: 76px; height: 76px; display: grid; place-items: center; margin-bottom: 48px; border: 1px solid #cce0db; border-radius: 13px; color: var(--turquoise-dark); background: linear-gradient(145deg, #fff, #e9f3f0); box-shadow: 0 18px 38px rgba(35,91,78,.09); }
.service-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-topline { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 25px; color: #84958f; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.service-topline small { color: var(--turquoise-dark); font-family: var(--font); font-weight: 760; }
.service-card h3 { position: relative; z-index: 1; max-width: 620px; margin: 20px 0 17px; font-size: clamp(32px, 3.2vw, 46px); line-height: 1.07; letter-spacing: -.047em; font-weight: 640; }
.service-card p { position: relative; z-index: 1; max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.76; }
.service-card ul { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 7px 10px; border: 1px solid #d7e4e0; border-radius: 5px; color: #547068; background: #f4f8f7; font-size: 10px; font-weight: 660; }
.service-card > a { position: relative; z-index: 1; width: max-content; display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 28px; color: var(--turquoise-dark); font-size: 12px; font-weight: 760; }

/* Ecosystem */
.ecosystem-section { overflow: hidden; background: #fff; }
.ecosystem-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 65px; align-items: center; }
.ecosystem-copy h2 { max-width: 610px; margin: 18px 0 24px; font-size: clamp(48px, 5vw, 72px); line-height: 1.02; letter-spacing: -.054em; font-weight: 650; }
.ecosystem-copy > p { max-width: 580px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.82; }
.ecosystem-points { display: grid; gap: 18px; margin: 36px 0; }
.ecosystem-points > div { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; }
.ecosystem-points i { color: var(--turquoise); font-family: var(--mono); font-style: normal; font-size: 9px; }
.ecosystem-points strong, .ecosystem-points small { display: block; }
.ecosystem-points strong { font-size: 13px; }
.ecosystem-points small { margin-top: 4px; color: #73847f; font-size: 11px; line-height: 1.65; }
.ecosystem-map { position: relative; min-height: 650px; border: 1px solid #d5e3df; border-radius: var(--radius-md); background: radial-gradient(circle at 50% 48%, rgba(82,137,127,.12), transparent 32%), linear-gradient(145deg, #f7faf9, #eef5f3); box-shadow: var(--shadow-soft); }
.ecosystem-map::before { position: absolute; inset: 0; border-radius: inherit; content: ""; opacity: .42; background-image: linear-gradient(rgba(82,137,127,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(82,137,127,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(circle at center, #000, transparent 74%); }
.ecosystem-core { position: absolute; z-index: 4; left: 50%; top: 50%; width: 220px; min-height: 170px; display: grid; place-items: center; align-content: center; padding: 25px; border: 1px solid rgba(166,220,208,.19); border-radius: 16px; color: #fff; background: linear-gradient(145deg, #0b241e, #1e4f45); box-shadow: 0 28px 65px rgba(15,55,46,.25); transform: translate(-50%, -50%); }
.ecosystem-core img { width: 108px; height: 38px; object-fit: contain; margin-bottom: 16px; padding: 4px 8px; border-radius: 5px; background: rgba(255,255,255,.94); }
.ecosystem-core span { font-size: 13px; font-weight: 760; }
.ecosystem-core small { margin-top: 6px; color: #91aea6; font-size: 9px; }
.ecosystem-item { position: absolute; z-index: 5; min-width: 190px; display: flex; align-items: center; gap: 12px; padding: 16px 17px; border: 1px solid #cbded9; border-radius: 9px; background: rgba(255,255,255,.92); box-shadow: 0 14px 36px rgba(19,60,51,.08); }
.ecosystem-item > i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; color: var(--turquoise-dark); background: #e7f2ef; font-style: normal; }
.ecosystem-item strong, .ecosystem-item small { display: block; }
.ecosystem-item strong { font-size: 12px; }
.ecosystem-item small { margin-top: 3px; color: #7d8e89; font-size: 9px; }
.item-web { left: 38px; top: 70px; }
.item-client { left: 18px; top: 255px; }
.item-project { left: 48px; bottom: 62px; }
.item-domain { right: 38px; top: 70px; }
.item-host { right: 18px; top: 255px; }
.item-server { right: 48px; bottom: 62px; }
.ecosystem-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.ecosystem-lines path { fill: none; stroke: #78b7aa; stroke-width: 1.5; stroke-dasharray: 4 7; opacity: .8; }

/* Advantages */
.advantages-section { background: linear-gradient(180deg, #f4f8f7, #fff); }
.advantage-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 18px; align-items: stretch; }
.advantage-stats { display: grid; gap: 1px; overflow: hidden; border: 1px solid #d2e1dd; border-radius: var(--radius-sm); background: #d2e1dd; }
.advantage-stats article { min-height: 168px; display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; padding: 30px 34px; background: #fff; }
.advantage-stats strong { color: var(--turquoise-dark); font-size: 58px; line-height: 1; letter-spacing: -.05em; font-weight: 650; }
.advantage-stats span { color: #64756f; font-size: 13px; line-height: 1.65; }
.advantage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; border: 1px solid #d2e1dd; border-radius: var(--radius-sm); background: #d2e1dd; }
.advantage-list article { min-height: 250px; padding: 34px; background: #fff; }
.advantage-list span { color: var(--turquoise); font-family: var(--mono); font-size: 9px; }
.advantage-list h3 { margin: 50px 0 12px; font-size: 28px; line-height: 1.12; letter-spacing: -.035em; }
.advantage-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

/* Infrastructure */
.infrastructure-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #071914 0%, #0b2821 56%, #123a31 100%); }
.infrastructure-grid-bg { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(158,218,205,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(158,218,205,.08) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to right, transparent, #000 34%, #000 100%); }
.infrastructure-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; gap: 75px; align-items: center; }
.infrastructure-copy h2 { max-width: 670px; margin: 18px 0 25px; font-size: clamp(48px, 5.3vw, 74px); line-height: 1.02; letter-spacing: -.055em; font-weight: 650; }
.infrastructure-copy > p { max-width: 610px; margin: 0; color: #adc2bc; font-size: 16px; line-height: 1.82; }
.infrastructure-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 31px 0 38px; }
.infrastructure-tags span { padding: 7px 10px; border: 1px solid rgba(169,224,213,.14); border-radius: 5px; color: #9fc4ba; background: rgba(255,255,255,.035); font-size: 10px; }
.infrastructure-console { padding: 24px; border: 1px solid rgba(170,224,212,.17); border-radius: var(--radius-md); background: rgba(5,24,19,.7); box-shadow: var(--shadow-deep); backdrop-filter: blur(18px); }
.infra-console-head { display: flex; justify-content: space-between; align-items: center; padding: 2px 2px 20px; border-bottom: 1px solid rgba(255,255,255,.08); color: #9bb5ae; font-family: var(--mono); font-size: 9px; }
.infra-console-head span { display: flex; align-items: center; gap: 8px; }
.infra-console-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(101,201,168,.09); }
.infra-console-head b { color: #85d2c2; font-size: 8px; }
.infra-console-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 18px 0 10px; }
.infra-console-grid article { min-height: 126px; padding: 18px; border: 1px solid rgba(255,255,255,.075); border-radius: 9px; background: rgba(255,255,255,.025); }
.infra-console-grid small { display: block; color: #78958d; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.infra-console-grid strong { display: block; margin: 14px 0 11px; font-size: 25px; font-weight: 630; }
.infra-console-grid span { display: flex; align-items: center; gap: 7px; color: #77948c; font-size: 8px; }
.infra-console-grid i { width: 5px; height: 5px; border-radius: 50%; background: var(--success); }
.infra-terminal { position: relative; min-height: 172px; padding: 20px; border: 1px solid rgba(255,255,255,.07); border-radius: 9px; background: #04110e; font-family: var(--mono); }
.infra-terminal > span { color: #74cbb8; font-size: 9px; }
.infra-terminal p { margin: 15px 0 0; color: #819d95; font-size: 10px; line-height: 1.75; white-space: pre-line; }
.infra-terminal > i { display: inline-block; width: 7px; height: 12px; margin-left: 4px; background: #74cbb8; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Process */
.process-section { background: #fff; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #d4e2de; border-radius: var(--radius-sm); background: #d4e2de; overflow: hidden; }
.process-step { position: relative; min-height: 370px; padding: 34px; background: #fff; }
.process-step::after { position: absolute; z-index: 2; top: 58px; right: -24px; width: 47px; height: 1px; content: ""; background: linear-gradient(90deg, var(--turquoise), transparent); }
.process-step:last-child::after { display: none; }
.process-step > div { display: flex; justify-content: space-between; align-items: start; }
.process-step > div span { color: var(--turquoise); font-family: var(--mono); font-size: 10px; }
.process-step > div i { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid #c7ddd7; border-radius: 10px; color: var(--turquoise-dark); background: #eef6f4; font-style: normal; font-size: 17px; }
.process-step h3 { margin: 95px 0 15px; font-size: 28px; line-height: 1.1; letter-spacing: -.035em; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.76; }
.process-step > small { display: block; margin-top: 25px; color: #83928e; font-size: 9px; font-weight: 670; letter-spacing: .05em; text-transform: uppercase; }

/* Support */
.support-section { padding-top: 34px; background: #fff; }
.support-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; gap: 75px; padding: 68px; border-radius: var(--radius-md); color: #fff; background: linear-gradient(130deg, #0c251f 0%, #17443a 68%, #2f6e61 100%); box-shadow: 0 28px 75px rgba(14,47,40,.16); }
.support-panel::after { position: absolute; right: -130px; top: -190px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; box-shadow: 0 0 0 65px rgba(255,255,255,.02), 0 0 0 130px rgba(255,255,255,.015); }
.support-copy { position: relative; z-index: 2; }
.support-copy h2 { max-width: 760px; margin: 18px 0 22px; font-size: clamp(45px, 4.8vw, 70px); line-height: 1.02; letter-spacing: -.054em; font-weight: 650; }
.support-copy p { max-width: 680px; margin: 0 0 32px; color: #b7cbc5; font-size: 15px; line-height: 1.82; }
.support-list { position: relative; z-index: 2; display: grid; align-content: center; }
.support-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.support-list > div:last-child { border-bottom: 0; }
.support-list i { color: #86d2c2; font-family: var(--mono); font-style: normal; font-size: 9px; }
.support-list strong, .support-list small { display: block; }
.support-list strong { font-size: 13px; }
.support-list small { margin-top: 4px; color: #9eb6b0; font-size: 10px; line-height: 1.6; }

/* FAQ */
.faq-section { background: linear-gradient(180deg, #f6f9f8, #fff); }
.faq-layout { display: grid; grid-template-columns: .73fr 1.27fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 125px; }
.faq-heading h2 { max-width: 560px; margin: 18px 0 21px; font-size: clamp(45px, 4.8vw, 68px); line-height: 1.03; letter-spacing: -.052em; font-weight: 650; }
.faq-heading p { max-width: 500px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.faq-list { border-top: 1px solid #d5e2df; }
.faq-list details { border-bottom: 1px solid #d5e2df; }
.faq-list summary { min-height: 86px; display: flex; justify-content: space-between; align-items: center; gap: 25px; list-style: none; cursor: pointer; font-size: 18px; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #ccddd9; border-radius: 8px; color: var(--turquoise-dark); background: #f3f8f7; font-size: 18px; transition: transform .22s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 780px; margin: -5px 55px 28px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

/* Contact */
.contact-section { padding-top: 40px; background: #fff; }
.contact-shell { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; padding: 68px; border-radius: var(--radius-md); color: #fff; background: linear-gradient(132deg, #071a15 0%, #12372e 70%, #23594d 100%); box-shadow: var(--shadow-deep); }
.contact-copy h2 { max-width: 650px; margin: 18px 0 22px; font-size: clamp(48px, 5.3vw, 76px); line-height: 1; letter-spacing: -.057em; font-weight: 650; }
.contact-copy > p { max-width: 590px; margin: 0; color: #afc4bd; font-size: 15px; line-height: 1.82; }
.contact-highlights { display: grid; gap: 12px; margin-top: 34px; color: #9fb6af; font-size: 11px; }
.contact-highlights span { display: flex; align-items: center; gap: 10px; }
.contact-highlights i { width: 6px; height: 6px; border-radius: 50%; background: var(--turquoise-bright); box-shadow: 0 0 0 5px rgba(117,205,187,.08); }
.contact-direct { display: grid; gap: 5px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.contact-direct > span { color: #708f87; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.contact-direct a { width: max-content; font-size: 13px; font-weight: 680; }
.contact-form { display: grid; gap: 15px; padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-sm); background: rgba(255,255,255,.065); backdrop-filter: blur(18px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.contact-form label { display: grid; gap: 7px; color: #a9c0ba; font-size: 10px; font-weight: 680; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 6px; outline: 0; color: #fff; background: rgba(4,20,16,.4); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { height: 49px; padding: 0 13px; }
.contact-form textarea { min-height: 140px; resize: vertical; padding: 13px; }
.contact-form select option { color: var(--ink); background: #fff; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #708b84; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(117,205,187,.72); background: rgba(4,20,16,.6); box-shadow: 0 0 0 3px rgba(117,205,187,.08); }
.honeypot { position: absolute !important; left: -9999px !important; }
.privacy-check { display: grid !important; grid-template-columns: 18px 1fr; gap: 10px !important; align-items: start; color: #8ba59e !important; font-weight: 500 !important; line-height: 1.6; }
.privacy-check input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--turquoise-bright); }
.privacy-check a { color: #cbe6df; text-decoration: underline; text-underline-offset: 3px; }
.form-message { padding: 13px 14px; border-radius: 6px; font-size: 11px; }
.form-message.success { color: #c9f0e3; background: rgba(68,159,129,.18); }
.form-message.error { color: #ffd4d4; background: rgba(166,69,69,.2); }

/* Footer */
.site-footer { margin-top: 110px; color: #b0c2bd; background: #061510; }
.footer-top { display: grid; grid-template-columns: 1.45fr repeat(3, .78fr) .9fr; gap: 45px; padding: 72px 0 60px; }
.brand-footer img { width: 170px; height: 50px; padding: 5px 8px; border-radius: 5px; background: rgba(255,255,255,.94); }
.footer-brand p { max-width: 350px; margin: 22px 0 24px; color: #7f9891; font-size: 12px; line-height: 1.8; }
.footer-project-link { display: inline-flex; align-items: center; gap: 10px; color: #cbe4de; font-size: 11px; font-weight: 700; }
.footer-column, .footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-column strong, .footer-contact strong { margin-bottom: 8px; color: #fff; font-size: 11px; }
.footer-column a, .footer-contact a, .footer-contact span, .footer-link-button { color: #80978f; font-size: 10px; transition: color .2s ease; }
.footer-column a:hover, .footer-contact a:hover, .footer-link-button:hover { color: #d4e9e4; }
.footer-link-button { padding: 0; border: 0; text-align: left; background: transparent; cursor: pointer; }
.footer-bottom { min-height: 74px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #627b74; font-size: 9px; }

/* Cookie */
.cookie-banner { position: fixed; z-index: 510; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; padding: 24px 26px; border: 1px solid #d5e1de; border-radius: 12px; background: rgba(255,255,255,.97); box-shadow: 0 25px 80px rgba(7,28,22,.19); backdrop-filter: blur(16px); }
.cookie-kicker { color: var(--turquoise-dark); font-size: 9px; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.cookie-banner h2 { margin: 5px 0; font-size: 20px; letter-spacing: -.03em; }
.cookie-banner p { max-width: 780px; margin: 0; color: #647872; font-size: 11px; line-height: 1.6; }
.cookie-banner a { display: inline-flex; margin-top: 6px; color: var(--turquoise-dark); font-size: 10px; font-weight: 720; }
.cookie-banner-actions, .cookie-modal-actions { display: flex; gap: 9px; }
.cookie-button { min-height: 40px; padding: 0 14px; border: 1px solid transparent; border-radius: 6px; cursor: pointer; font-size: 10px; font-weight: 720; }
.cookie-button.primary { color: #fff; background: var(--turquoise-dark); }
.cookie-button.secondary { color: var(--ink); border-color: #d4e1de; background: #fff; }
.cookie-modal { position: fixed; z-index: 520; inset: 0; display: grid; place-items: center; padding: 20px; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(3,19,15,.7); backdrop-filter: blur(5px); }
.cookie-modal-panel { position: relative; z-index: 2; width: min(680px,100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 34px; border-radius: 14px; background: #fff; box-shadow: 0 40px 100px rgba(0,0,0,.28); }
.cookie-modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: none; color: #6d807b; font-size: 28px; cursor: pointer; }
.cookie-modal-panel h2 { margin: 8px 0 10px; }
.cookie-modal-lead { margin: 0 0 25px; color: #677a75; font-size: 12px; line-height: 1.7; }
.cookie-option { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); cursor: pointer; }
.cookie-option:last-of-type { border-bottom: 1px solid var(--line); }
.cookie-option strong { font-size: 13px; }
.cookie-option p { margin: 4px 0 0; color: #71847f; font-size: 11px; line-height: 1.6; }
.cookie-option input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-switch { position: relative; width: 45px; height: 25px; border-radius: 20px; background: #cbd7d4; transition: background .2s ease; }
.cookie-switch::after { position: absolute; width: 19px; height: 19px; left: 3px; top: 3px; border-radius: 50%; content: ""; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.15); transition: transform .2s ease; }
.cookie-option input:checked + .cookie-switch, .cookie-switch.is-on { background: var(--turquoise); }
.cookie-option input:checked + .cookie-switch::after, .cookie-switch.is-on::after { transform: translateX(20px); }
.cookie-option.is-locked { cursor: default; }
.cookie-modal-actions { justify-content: flex-end; margin-top: 25px; }

/* Legal pages */
.legal-hero { padding: 165px 0 78px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg,#f7faf9,#fff); }
.legal-hero h1 { max-width: 930px; margin: 20px 0; font-size: clamp(52px,6vw,82px); line-height: .99; letter-spacing: -.055em; font-weight: 650; }
.legal-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.legal-wrap { display: grid; grid-template-columns: 260px minmax(0,820px); gap: 80px; align-items: start; }
.legal-nav { position: sticky; top: 110px; display: grid; gap: 6px; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper-2); }
.legal-nav a { padding: 8px 9px; border-radius: 6px; color: #56706a; font-size: 11px; }
.legal-nav a:hover { color: #fff; background: var(--turquoise); }
.legal-content section { padding: 0 0 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.legal-content h2 { margin: 0 0 18px; font-size: 31px; line-height: 1.18; letter-spacing: -.035em; }
.legal-content h3 { margin: 28px 0 10px; font-size: 19px; }
.legal-content p, .legal-content li { color: #526963; font-size: 14px; line-height: 1.82; }
.legal-content ul { padding-left: 20px; }
.legal-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 13px; }
.legal-table th, .legal-table td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { color: #294a44; background: var(--paper-2); }
.legal-note { padding: 18px; border-left: 3px solid var(--turquoise); border-radius: 0 8px 8px 0; color: #526963; background: var(--paper-2); font-size: 13px; line-height: 1.7; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .78s cubic-bezier(.22,.61,.36,1), transform .78s cubic-bezier(.22,.61,.36,1), clip-path .9s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal[data-reveal="slide-left"] { transform: translateX(50px); }
.reveal[data-reveal="slide-right"] { transform: translateX(-50px); }
.reveal[data-reveal="wipe"] { opacity: 1; transform: none; clip-path: inset(0 100% 0 0); }
.reveal.is-visible { opacity: 1; transform: translate(0,0); clip-path: inset(0 0 0 0); }
.stagger-grid > .reveal:nth-child(2) { transition-delay: .09s; }
.stagger-grid > .reveal:nth-child(3) { transition-delay: .18s; }
.stagger-grid > .reveal:nth-child(4) { transition-delay: .27s; }

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

@media (max-width: 1240px) {
    .header-inner { grid-template-columns: 195px 1fr auto; gap: 24px; }
    .main-nav { gap: 20px; }
    .hero-layout { grid-template-columns: .86fr 1.14fr; gap: 40px; }
    .dashboard-window { width: 710px; }
    .ecosystem-layout { grid-template-columns: .82fr 1.18fr; gap: 40px; }
    .ecosystem-map { transform: scale(.92); transform-origin: center; }
    .footer-top { grid-template-columns: 1.35fr repeat(3,.72fr); }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 1020px) {
    .container { width: min(calc(100% - 36px), var(--container)); }
    .section { padding: 96px 0; }
    .site-header, body.home .site-header { color: var(--ink); border-color: rgba(18,53,44,.09); background: rgba(255,255,255,.96); box-shadow: 0 10px 30px rgba(11,36,30,.06); }
    .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
    .brand img { width: 160px; height: 48px; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; z-index: 510; inset: 72px 0 0; display: flex; flex-direction: column; justify-content: flex-start; gap: 0; padding: 26px; color: var(--ink); background: #fff; transform: translateX(100%); transition: transform .28s ease; }
    .main-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 20px; }
    .main-nav a::after { display: none; }
    .menu-open .main-nav { transform: translateX(0); }
    .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
    .header-actions { display: none; }
    .hero { min-height: auto; padding-top: 105px; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-copy { max-width: 850px; padding: 58px 0 26px; }
    .hero-visual { min-height: 620px; }
    .dashboard-window { left: 50%; width: 760px; transform: translate(-50%, -50%); }
    .node-domain { right: 4%; }
    .node-backup { left: 3%; }
    .server-stack { right: 6%; }
    .hero-service-bar { grid-template-columns: repeat(2,1fr); }
    .hero-service-bar a:nth-child(2) { border-right: 0; }
    .hero-service-bar a:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
    .intro-grid, .ecosystem-layout, .infrastructure-layout, .faq-layout, .contact-shell { grid-template-columns: 1fr; }
    .intro-columns { margin-left: 0; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 470px; }
    .ecosystem-copy { max-width: 760px; }
    .ecosystem-map { width: 760px; max-width: 100%; margin: 0 auto; transform: none; }
    .advantage-layout { grid-template-columns: 1fr; }
    .process-track { grid-template-columns: repeat(2,1fr); }
    .process-step:nth-child(2)::after { display: none; }
    .support-panel { grid-template-columns: 1fr; gap: 35px; padding: 52px; }
    .faq-heading { position: static; }
    .contact-shell { gap: 45px; padding: 52px; }
    .footer-top { grid-template-columns: 1.2fr repeat(2,1fr); }
    .footer-contact { grid-column: auto; }
    .legal-wrap { grid-template-columns: 1fr; gap: 40px; }
    .legal-nav { position: static; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 76px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
    .section-heading h2 { font-size: 41px; line-height: 1.07; }
    .hero { padding-top: 75px; }
    .hero h1 { font-size: clamp(48px, 14vw, 67px); line-height: .98; letter-spacing: -.055em; }
    .hero-lead { font-size: 16px; line-height: 1.72; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .hero-proof { grid-template-columns: 1fr; gap: 12px; }
    .hero-visual { min-height: 385px; margin-top: 10px; }
    .dashboard-window { width: 760px; transform: translate(-50%, -50%) scale(.49) !important; }
    .server-stack, .system-node, .system-link { display: none; }
    .hero-service-bar { grid-template-columns: 1fr; margin-top: 0; }
    .hero-service-bar a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
    .hero-service-bar a:last-child { border-bottom: 0; }
    .intro-grid { grid-template-columns: 1fr; gap: 28px; }
    .intro-copy h2 { font-size: 42px; line-height: 1.07; }
    .intro-columns { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .service-card { min-height: 500px; padding: 28px 24px; }
    .service-icon { margin-bottom: 35px; }
    .service-card h3 { font-size: 34px; }
    .ecosystem-copy h2, .infrastructure-copy h2, .faq-heading h2 { font-size: 42px; line-height: 1.06; }
    .ecosystem-map { min-height: 700px; }
    .ecosystem-core { width: 180px; min-height: 145px; }
    .ecosystem-item { min-width: 150px; padding: 12px; }
    .ecosystem-item > i { width: 30px; height: 30px; }
    .item-web { left: 8px; top: 62px; }
    .item-client { left: 8px; top: 235px; }
    .item-project { left: 8px; bottom: 56px; }
    .item-domain { right: 8px; top: 62px; }
    .item-host { right: 8px; top: 235px; }
    .item-server { right: 8px; bottom: 56px; }
    .ecosystem-lines { opacity: .6; }
    .advantage-stats article { grid-template-columns: 90px 1fr; padding: 26px 24px; }
    .advantage-stats strong { font-size: 48px; }
    .advantage-list { grid-template-columns: 1fr; }
    .infrastructure-console { padding: 18px; }
    .infra-console-grid { grid-template-columns: 1fr; }
    .process-track { grid-template-columns: 1fr; }
    .process-step { min-height: 310px; }
    .process-step::after { display: none; }
    .process-step h3 { margin-top: 65px; }
    .support-panel { padding: 34px 26px; }
    .support-copy h2 { font-size: 41px; }
    .faq-list summary { min-height: 78px; font-size: 16px; }
    .contact-shell { padding: 32px 22px; border-radius: 16px; }
    .contact-copy h2 { font-size: 43px; }
    .contact-form { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 52px 0; }
    .footer-bottom { min-height: 88px; flex-direction: column; justify-content: center; align-items: flex-start; gap: 7px; }
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; gap: 17px; padding: 20px; }
    .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-banner-actions .primary { grid-column: 1 / -1; }
    .cookie-button { width: 100%; }
    .cookie-modal-panel { padding: 27px 20px 22px; }
    .cookie-modal-actions { display: grid; grid-template-columns: 1fr; }
    .legal-hero { padding: 125px 0 54px; }
    .legal-hero h1 { font-size: 48px; }
    .legal-nav { grid-template-columns: 1fr; }
    .legal-table { display: block; overflow-x: auto; }
}

/* =========================================================
   NEXUSio v10.1 – világosabb, prémium hero
   Csak a nyitó rész vizuális hangolása.
   ========================================================= */
body.home .site-header {
    color: var(--ink);
    border-color: rgba(18, 53, 44, .09);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 34px rgba(11, 36, 30, .055);
}

body.home .site-header.is-sticky {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 14px 42px rgba(11, 36, 30, .08);
}

.hero {
    color: var(--ink);
    background:
        radial-gradient(circle at 83% 28%, rgba(117, 205, 187, .20), transparent 31%),
        radial-gradient(circle at 12% 8%, rgba(82, 137, 127, .10), transparent 29%),
        linear-gradient(140deg, #fbfdfc 0%, #f2f8f6 52%, #e9f3f0 100%);
}

.hero-grid {
    opacity: .52;
    background-image:
        linear-gradient(rgba(49, 105, 93, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49, 105, 93, .055) 1px, transparent 1px);
    mask-image: radial-gradient(circle at 76% 45%, #000 0%, rgba(0,0,0,.92) 36%, transparent 82%);
}

.hero::before {
    height: 240px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.92));
}

.hero-glow-a {
    background: radial-gradient(circle, rgba(104, 190, 172, .20), transparent 68%);
}

.hero-glow-b {
    background: radial-gradient(circle, rgba(82, 137, 127, .09), transparent 72%);
}

.hero .eyebrow {
    color: var(--turquoise-dark);
}

.hero h1 {
    color: #0b1c18;
    text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

.hero-lead {
    color: #506963;
}

.hero .button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
    box-shadow: 0 16px 34px rgba(45, 102, 92, .20);
}

.hero .button-primary:hover {
    background: linear-gradient(135deg, #265d53, #477e75);
}

.hero .button-ghost {
    color: var(--ink-2);
    border-color: #bdd3ce;
    background: rgba(255,255,255,.64);
    box-shadow: 0 10px 28px rgba(24, 66, 56, .055);
}

.hero .button-ghost:hover {
    color: var(--turquoise-deep);
    border-color: #8fb8af;
    background: #fff;
}

.hero-proof {
    border-top-color: #cfe0dc;
}

.hero-proof strong {
    color: var(--turquoise-dark);
}

.hero-proof span {
    color: #627a74;
}

.hero-visual::before {
    position: absolute;
    inset: 7% -4% 4% 2%;
    border: 1px solid rgba(82,137,127,.10);
    border-radius: 28px;
    content: "";
    background:
        radial-gradient(circle at 54% 50%, rgba(117,205,187,.18), transparent 42%),
        rgba(255,255,255,.44);
    box-shadow: 0 30px 90px rgba(31,82,70,.10);
    backdrop-filter: blur(10px);
}

.dashboard-window {
    border-color: rgba(160, 222, 209, .28);
    box-shadow: 0 45px 105px rgba(19, 55, 47, .28);
}

.server-stack {
    box-shadow: 0 28px 65px rgba(19, 55, 47, .24);
}

.system-node {
    box-shadow: 0 16px 36px rgba(19, 55, 47, .18);
}

.hero-service-bar {
    overflow: hidden;
    margin-top: 34px;
    border: 1px solid #d2e2de;
    border-bottom: 1px solid #d2e2de;
    border-radius: 12px 12px 0 0;
    color: var(--ink);
    background: rgba(255,255,255,.90);
    box-shadow: 0 24px 70px rgba(18, 57, 48, .10);
}

.hero-service-bar a {
    border-right-color: #dce8e5;
}

.hero-service-bar a:hover {
    background: #eef6f4;
}

.hero-service-bar span {
    color: var(--turquoise);
}

.hero-service-bar small {
    color: #6a817b;
}

@media (max-width: 1020px) {
    .hero-service-bar a:nth-child(-n+2) {
        border-bottom-color: #dce8e5;
    }
}

@media (max-width: 720px) {
    .hero-visual::before {
        inset: 5% 0 3%;
        border-radius: 18px;
    }
    .hero-service-bar a {
        border-bottom-color: #dce8e5;
    }
}

/* =========================================================
   NEXUSio v10.2 – valódi mobil / tablet reszponzív javítás
   ========================================================= */
@media (max-width: 1020px) {
    html, body { max-width: 100%; overflow-x: hidden; }
    .site-header { overflow: visible; }
    .header-inner { min-height: 68px; padding: 0; }
    .brand img { width: 154px; height: 44px; background: transparent !important; }
    .menu-toggle { position: relative; z-index: 1302; display: block; width: 44px; height: 44px; border-radius: 8px; }

    .main-nav {
        position: fixed;
        z-index: 1300;
        inset: 68px 0 0;
        width: 100%;
        height: calc(100dvh - 68px);
        min-height: calc(100vh - 68px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 28px 24px calc(32px + env(safe-area-inset-bottom));
        overflow-y: auto;
        overscroll-behavior: contain;
        color: var(--ink);
        background: rgba(255,255,255,.985);
        box-shadow: none;
        backdrop-filter: blur(20px);
        transform: translate3d(100%,0,0);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform .3s cubic-bezier(.22,.75,.24,1), opacity .22s ease, visibility 0s linear .3s;
    }
    .menu-open .main-nav {
        transform: translate3d(0,0,0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 0s;
    }
    .main-nav::before {
        display: block;
        margin: 0 0 18px;
        color: var(--turquoise-dark);
        content: "MENÜ";
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .2em;
    }
    .main-nav a {
        display: flex;
        align-items: center;
        min-height: 64px;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #e2ebe8;
        color: var(--ink);
        font-size: clamp(20px, 5vw, 27px);
        font-weight: 650;
        letter-spacing: -.025em;
        line-height: 1.15;
    }
    .main-nav a::before {
        width: 26px;
        flex: 0 0 26px;
        color: var(--turquoise);
        content: "↗";
        font-size: 13px;
        font-weight: 500;
    }
    .menu-open .site-header { background: #fff !important; }

    .hero-layout { display: block; }
    .hero-copy { max-width: 100%; }
    .hero-copy.reveal, .hero-visual.reveal, .hero-service-bar.reveal {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
    }
    .hero-visual { width: 100%; }
    .dashboard-window { max-width: none; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .site-noise { display: none; }
    .section { padding: 68px 0; }
    .section-label, .eyebrow { font-size: 10px; letter-spacing: .14em; }
    .section-heading h2,
    .intro-copy h2,
    .ecosystem-copy h2,
    .infrastructure-copy h2,
    .faq-heading h2,
    .support-copy h2,
    .contact-copy h2 {
        font-size: clamp(34px, 10.4vw, 46px);
        line-height: 1.04;
        letter-spacing: -.045em;
        overflow-wrap: anywhere;
    }

    .hero {
        min-height: auto;
        padding: 92px 0 0;
        overflow: hidden;
    }
    .hero-grid { opacity: .23; background-size: 42px 42px; }
    .hero-copy { padding: 34px 0 24px; }
    .hero h1 {
        max-width: 100%;
        margin: 18px 0 22px;
        font-size: clamp(44px, 12.5vw, 58px);
        line-height: .98;
        letter-spacing: -.058em;
        text-wrap: pretty;
        overflow-wrap: normal;
        word-break: normal;
    }
    .hero-lead { max-width: 100%; font-size: 16px; line-height: 1.58; }
    .hero-actions { gap: 10px; margin-top: 28px; }
    .hero-actions .button { min-height: 50px; }
    .hero-proof { gap: 14px; margin-top: 30px; padding-top: 22px; }
    .hero-proof > div { grid-template-columns: 28px 1fr; }
    .hero-proof span { font-size: 12px; }

    .hero-visual { min-height: 305px; margin-top: 8px; }
    .hero-visual::before { inset: 4% -14px 2%; }
    .dashboard-window {
        top: 50%;
        left: 50%;
        width: 760px;
        transform: translate(-50%, -50%) scale(.39) !important;
        transform-origin: center;
    }
    .hero-service-bar { margin-top: 12px; border-radius: 10px 10px 0 0; }
    .hero-service-bar a { min-height: 90px; padding: 18px 20px; }

    .intro-grid { gap: 22px; }
    .intro-columns { margin-top: 24px; }
    .intro-columns p { font-size: 15px; line-height: 1.7; }

    .service-grid { gap: 14px; }
    .service-card { min-height: auto; padding: 26px 22px 28px; }
    .service-icon { margin-bottom: 25px; }
    .service-card h3 { font-size: clamp(28px, 8.2vw, 36px); line-height: 1.05; overflow-wrap: anywhere; }
    .service-card p { font-size: 15px; line-height: 1.68; }

    .ecosystem-map {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0 0;
    }
    .ecosystem-lines { display: none; }
    .ecosystem-core,
    .ecosystem-item,
    .item-web,.item-client,.item-project,.item-domain,.item-host,.item-server {
        position: relative;
        inset: auto;
        width: 100%;
        min-width: 0;
        min-height: 0;
        transform: none;
    }
    .ecosystem-core { order: -1; min-height: 132px; }
    .ecosystem-item { padding: 15px; }

    .advantage-stats article { grid-template-columns: 72px 1fr; padding: 22px 18px; }
    .advantage-stats strong { font-size: 40px; }
    .process-step { min-height: auto; padding: 26px 22px 28px; }
    .process-step h3 { margin-top: 45px; }

    .support-panel { padding: 30px 22px; }
    .contact-shell { padding: 28px 18px; }
    .contact-form { padding: 18px; }

    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        max-height: min(72dvh, 610px);
        overflow-y: auto;
        padding: 18px;
        border-radius: 14px;
        box-shadow: 0 24px 70px rgba(8,35,28,.22);
    }
    .cookie-banner h2 { margin: 8px 0 6px; font-size: 25px; line-height: 1.15; }
    .cookie-banner p { font-size: 14px; line-height: 1.55; }
    .cookie-banner-actions { gap: 8px; }
    .cookie-button { min-height: 48px; }
}

@media (max-width: 390px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .brand img { width: 142px; }
    .hero h1 { font-size: 42px; }
    .main-nav { padding-inline: 18px; }
    .main-nav a { min-height: 58px; font-size: 21px; }
    .cookie-banner-actions { grid-template-columns: 1fr; }
    .cookie-banner-actions .primary { grid-column: auto; }
}

/* NEXUSio frontend v11 – web / app / backend extension */
.service-grid-extended { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-grid-extended .service-card { min-height: 490px; }
.service-grid-extended .service-card h3 { max-width: 360px; }

.platform-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(137deg, #071813 0%, #0b2b23 58%, #17473c 100%); }
.platform-grid-bg { position: absolute; inset: 0; opacity: .17; pointer-events: none; background-image: linear-gradient(rgba(158,218,205,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(158,218,205,.08) 1px, transparent 1px); background-size: 58px 58px; mask-image: radial-gradient(circle at 72% 48%, #000 0%, rgba(0,0,0,.9) 42%, transparent 85%); }
.platform-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.platform-copy h2 { max-width: 720px; margin: 18px 0 25px; font-size: clamp(48px, 5.2vw, 74px); line-height: 1.02; letter-spacing: -.055em; font-weight: 650; }
.platform-copy > p { max-width: 640px; margin: 0; color: #aec6bf; font-size: 16px; line-height: 1.82; }
.platform-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 31px 0 38px; }
.platform-tags span { padding: 7px 10px; border: 1px solid rgba(169,224,213,.14); border-radius: 5px; color: #a8cdc4; background: rgba(255,255,255,.035); font-size: 10px; font-family: var(--mono); }
.platform-console { overflow: hidden; border: 1px solid rgba(170,224,212,.17); border-radius: var(--radius-md); background: rgba(4,22,17,.76); box-shadow: var(--shadow-deep); backdrop-filter: blur(18px); }
.platform-console-head { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.08); color: #8fb1a8; font-family: var(--mono); font-size: 10px; }
.platform-console-head span { display: inline-flex; align-items: center; gap: 9px; }
.platform-console-head span i { width: 7px; height: 7px; border-radius: 50%; background: var(--turquoise-bright); box-shadow: 0 0 0 5px rgba(117,205,187,.09); }
.platform-console-head b { color: #b7ded5; font-size: 9px; letter-spacing: .12em; }
.platform-projects { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.07); }
.platform-projects article { min-height: 118px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 20px; background: rgba(5,28,22,.96); }
.platform-projects small, .platform-projects strong { display: block; }
.platform-projects small { margin-bottom: 7px; color: #6f958b; font-family: var(--mono); font-size: 8px; letter-spacing: .11em; }
.platform-projects strong { color: #f2f8f6; font-size: 13px; font-weight: 650; }
.platform-projects article > span { color: #84aaa0; font-family: var(--mono); font-size: 9px; }
.platform-status { display: inline-flex; align-items: center; gap: 7px; color: #9ed8ca !important; }
.platform-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.platform-terminal { margin: 20px; padding: 21px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: rgba(1,13,10,.58); font-family: var(--mono); }
.platform-terminal > span { color: #91d5c6; font-size: 10px; }
.platform-terminal p { margin: 14px 0 0; color: #799990; font-size: 10px; line-height: 1.9; }

@media (max-width: 1180px) {
    .service-grid-extended { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .platform-layout { grid-template-columns: 1fr 1fr; gap: 42px; }
}
@media (max-width: 1020px) {
    .platform-layout { grid-template-columns: 1fr; }
    .platform-copy { max-width: 760px; }
    .platform-console { max-width: 760px; width: 100%; }
}
@media (max-width: 680px) {
    .service-grid-extended { grid-template-columns: 1fr; }
    .service-grid-extended .service-card { min-height: 0; }
    .platform-copy h2 { font-size: 42px; line-height: 1.06; }
    .platform-projects { grid-template-columns: 1fr; }
    .platform-projects article { min-height: 102px; }
    .platform-terminal { margin: 14px; padding: 17px; }
}
