:root {
  --ink: #071915;
  --ink-2: #102c25;
  --pine: #17483b;
  --accent: #d6ff71;
  --accent-2: #b9ec46;
  --paper: #f3f5ee;
  --white: #fff;
  --muted: #60706a;
  --line: #dbe1d9;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(7, 25, 21, .11);
  --shell: min(1180px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
svg { display: block; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; border-radius: 10px; background: var(--accent); color: var(--ink); font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 16px; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, .brand { font-family: "Manrope", "DM Sans", sans-serif; }
h1, h2 { letter-spacing: -.055em; }
h2 { margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 4.75rem); line-height: 1.02; }
h3 { letter-spacing: -.03em; }
em { color: var(--accent); font-style: normal; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(243,245,238,.9); border-color: rgba(7,25,21,.1); box-shadow: 0 8px 36px rgba(7,25,21,.06); backdrop-filter: blur(16px); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; line-height: 1; }
.site-header.scrolled .brand { color: var(--ink); }
.brand-mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand > span { display: grid; gap: 3px; }
.brand strong { font-size: .9rem; letter-spacing: -.02em; }
.brand small { font-size: .67rem; font-weight: 800; letter-spacing: .28em; color: var(--accent); }
.site-header.scrolled .brand small { color: var(--pine); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a { position: relative; color: rgba(255,255,255,.72); font-size: .92rem; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.site-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--accent); transition: right .2s ease; }
.site-nav > a:hover { color: var(--white); }
.site-nav > a:hover::after { right: 0; }
.site-nav > .button::after { display: none; }
.site-nav > a.button { color: var(--ink); }
.site-header.scrolled .site-nav > a { color: #40524b; }
.site-header.scrolled .site-nav > a:hover { color: var(--ink); }
.nav-services { position: relative; }
.nav-services summary { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72); font-size: .92rem; font-weight: 600; cursor: pointer; list-style: none; transition: color .2s ease; }
.nav-services summary::-webkit-details-marker { display: none; }
.nav-services summary::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.nav-services[open] summary::after { transform: translateY(2px) rotate(225deg); }
.nav-services summary:hover,.nav-services[open] summary { color: var(--white); }
.site-header.scrolled .nav-services summary { color: #40524b; }
.site-header.scrolled .nav-services summary:hover,.site-header.scrolled .nav-services[open] summary { color: var(--ink); }
.nav-services-menu { width: 410px; position: absolute; top: calc(100% + 22px); left: -24px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 13px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 24px 70px rgba(3,18,14,.2); }
.nav-services-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -24px; height: 24px; }
.nav-services-menu a { display: grid; gap: 2px; padding: 12px; border-radius: 12px; color: var(--ink); text-decoration: none; transition: background .2s ease; }
.nav-services-menu a:hover { background: #eef2e9; }
.nav-services-menu strong { font-size: .8rem; }
.nav-services-menu small { color: var(--muted); font-size: .64rem; }
.menu-toggle { display: none; }

.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 0; border-radius: 999px; padding: 0 24px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 44px; padding: 0 19px; font-size: .87rem; }
.button-dark { background: var(--accent); color: var(--ink); }
.site-header.scrolled .button-dark { background: var(--ink); color: var(--white); }
.site-header.scrolled .site-nav > a.button { color: var(--white); }
.button-accent { background: var(--accent); color: var(--ink); box-shadow: 0 12px 34px rgba(214,255,113,.15); }
.button-accent:hover { background: var(--accent-2); box-shadow: 0 16px 42px rgba(214,255,113,.23); }
.button span { font-size: 1.1em; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-block: 7px; border-bottom: 1px solid rgba(7,25,21,.35); font-weight: 700; text-decoration: none; transition: color .2s ease, border-color .2s ease; }
.text-link:hover { color: var(--pine); border-color: currentColor; }
.text-link.light { color: var(--white); border-color: rgba(255,255,255,.4); }

.hero { min-height: 780px; position: relative; overflow: hidden; color: var(--white); background: var(--ink); padding: 156px 0 38px; }
.hero::before { content: ""; position: absolute; width: 780px; height: 780px; right: -160px; top: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(59,122,101,.28), transparent 68%); pointer-events: none; }
.hero::after { content: ""; position: absolute; left: -250px; bottom: -390px; width: 720px; height: 720px; border: 1px solid rgba(214,255,113,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(214,255,113,.018), 0 0 0 180px rgba(214,255,113,.012); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: rgba(255,255,255,.65); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 1px; background: var(--accent); }
.eyebrow.dark { color: var(--pine); }
.eyebrow.dark span { background: var(--pine); }
.hero h1 { max-width: 750px; margin-bottom: 28px; font-size: clamp(3.3rem, 6vw, 6.35rem); line-height: .96; }
.hero-intro { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.7); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 57px 0 0; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.13); list-style: none; }
.hero-proof li { color: rgba(255,255,255,.64); font-size: .82rem; line-height: 1.35; }
.hero-proof span { display: block; margin-bottom: 7px; color: var(--accent); font-family: "Manrope",sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .15em; }

.hero-system { position: relative; min-height: 535px; border: 1px solid rgba(255,255,255,.13); border-radius: 34px; background: linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.028)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 45px 100px rgba(0,0,0,.25); backdrop-filter: blur(12px); overflow: hidden; }
.hero-system::before { content: ""; position: absolute; inset: 56px 0 70px; background: radial-gradient(circle at center,rgba(214,255,113,.11),transparent 56%); }
.hero-photo-card::before { display: none; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(4,16,13,.18),rgba(4,16,13,.04) 42%,rgba(4,16,13,.88) 100%); }
.hero-photo-caption { position: absolute; left: 32px; right: 32px; bottom: 105px; z-index: 4; }
.hero-photo-caption span { display: block; margin-bottom: 9px; color: var(--accent); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-photo-caption strong { display: block; color: var(--white); font-family: "Manrope",sans-serif; font-size: clamp(1.65rem,3vw,2.35rem); letter-spacing: -.04em; line-height: 1.08; text-shadow: 0 4px 24px rgba(0,0,0,.45); }
.system-topline, .system-footer { position: relative; z-index: 4; display: flex; align-items: center; justify-content: space-between; }
.system-topline { height: 58px; padding: 0 22px; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.48); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.system-topline strong { display: flex; align-items: center; gap: 8px; color: var(--accent); font-size: .68rem; }
.system-topline i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(214,255,113,.1); }
.system-orbit { position: relative; height: 405px; }
.orbit-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 250px; height: 250px; }
.ring-two { width: 390px; height: 390px; border-style: dashed; animation: rotate 30s linear infinite; }
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
.core-node { position: absolute; left: 50%; top: 50%; z-index: 2; width: 132px; height: 132px; display: grid; place-items: center; align-content: center; gap: 9px; border: 1px solid rgba(214,255,113,.3); border-radius: 50%; color: var(--accent); background: rgba(7,25,21,.83); box-shadow: 0 0 60px rgba(214,255,113,.1); transform: translate(-50%,-50%); }
.core-node svg { width: 43px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.core-node svg circle { fill: currentColor; stroke: none; }
.core-node span { color: var(--white); font-size: .75rem; font-weight: 800; }
.satellite { position: absolute; z-index: 3; min-width: 126px; padding: 11px 13px 11px 33px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(12,39,32,.92); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.satellite i { position: absolute; left: 14px; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(214,255,113,.09); }
.satellite span, .satellite b { display: block; line-height: 1.3; }
.satellite span { color: rgba(255,255,255,.54); font-size: .65rem; }
.satellite b { color: var(--white); font-size: .76rem; }
.satellite-a { top: 15%; left: 8%; }
.satellite-b { top: 17%; right: 5%; }
.satellite-c { bottom: 12%; right: 13%; }
.system-footer { position: absolute; left: 0; right: 0; bottom: 0; height: 72px; padding: 0 22px; border-top: 1px solid rgba(255,255,255,.14); background: rgba(4,16,13,.6); backdrop-filter: blur(10px); }
.system-footer div { display: grid; gap: 1px; }
.system-footer small { color: rgba(255,255,255,.38); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.system-footer strong { color: rgba(255,255,255,.84); font-size: .72rem; }
.hero-footnote { position: relative; z-index: 2; display: flex; align-items: center; gap: 13px; margin-top: 56px; color: rgba(255,255,255,.4); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-footnote i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.section { padding: 130px 0; }
.intro-section { background: var(--paper); }
.section-heading { margin-bottom: 62px; }
.split-heading { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; }
.split-heading > p { max-width: 470px; margin-bottom: 8px; color: var(--muted); font-size: 1.05rem; }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { min-height: 560px; display: flex; flex-direction: column; position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: rgba(255,255,255,.54); text-decoration: none; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.service-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: var(--shadow); }
.service-card-featured { color: var(--white); background: var(--pine); border-color: var(--pine); }
.service-card-featured:hover { background: var(--ink-2); }
.card-number { position: absolute; right: 18px; top: 18px; z-index: 3; padding: 7px 10px; border-radius: 999px; color: var(--white); background: rgba(7,25,21,.72); backdrop-filter: blur(8px); font-family: "Manrope",sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
.service-card-featured .card-number { color: rgba(255,255,255,.38); }
.service-card-featured .card-number { color: var(--ink); background: var(--accent); }
.service-image { width: calc(100% + 60px); height: 205px; display: block; margin: -30px -30px 28px; object-fit: cover; object-position: center; border-bottom: 1px solid rgba(7,25,21,.08); }
.service-card-featured .service-image { object-position: center 43%; }
.service-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 65px; border-radius: 18px; color: var(--pine); background: #e5eadf; }
.service-card-featured .service-icon { color: var(--ink); background: var(--accent); }
.service-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.card-kicker { margin-bottom: 8px; color: var(--pine); font-size: .69rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-card-featured .card-kicker { color: var(--accent); }
.service-card h3 { margin-bottom: 15px; font-size: 1.65rem; line-height: 1.12; }
.service-card p:not(.card-kicker) { margin-bottom: 22px; color: var(--muted); font-size: .95rem; }
.service-card-featured p:not(.card-kicker) { color: rgba(255,255,255,.66); }
.card-price { display:inline-flex; align-self:flex-start; margin:0 0 22px; padding:8px 11px; border:1px solid rgba(23,72,59,.18); border-radius:999px; color:var(--pine); background:rgba(214,255,113,.2); font-size:.72rem; font-weight:800; line-height:1.2; }
.service-card-featured .card-price { color:var(--ink); border-color:transparent; background:var(--accent); }
.card-link { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: auto; padding: 17px 0 0; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; font-size: .87rem; font-weight: 800; cursor: pointer; text-align: left; text-decoration: none; }
.service-card-featured .card-link { color: var(--white); border-color: rgba(255,255,255,.15); }
.card-link span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); transition: transform .2s ease; }
.card-link:hover span { transform: rotate(45deg); }
.more-services { display: grid; grid-template-columns: 160px 1fr; align-items: start; gap: 28px; margin-top: 22px; padding: 24px 29px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.42); }
.more-services > p { margin: 0; color: var(--pine); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.more-services ul { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.more-services li { border: 1px solid var(--line); border-radius: 13px; color: var(--muted); background: var(--white); overflow: hidden; }
.more-services li a { min-height:100%; display:flex; flex-direction:column; padding-bottom:15px; color:inherit; text-decoration:none; }
.more-services li img { width: 100%; height: 105px; display: block; margin-bottom:0; object-fit: cover; }
.more-services li span { display:block; padding:13px 14px 0; color:var(--ink); font-size:.88rem; font-weight:800; line-height:1.2; }
.more-services li small { display:block; padding:3px 14px 0; color:var(--muted); font-size:.66rem; line-height:1.35; }
.more-services li .mini-price { display:block; margin-top:auto; padding:10px 14px 0; color:var(--pine); font-size:.7rem; font-weight:800; line-height:1.2; }
.pricing-overview-note { margin:17px 0 0; color:var(--muted); font-size:.72rem; line-height:1.5; }

.dark-section { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.dark-section::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,.15) 1px,transparent 0); background-size: 34px 34px; mask-image: linear-gradient(90deg,black,transparent 55%); }
.dark-section .shell { position: relative; z-index: 1; }
.dark-intro { max-width: 760px; }
.dark-intro h2 { font-size: clamp(3rem,6vw,5.5rem); }
.value-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; margin-top: 82px; }
.value-visual { min-height: 560px; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; background: linear-gradient(180deg,rgba(3,18,14,.16),rgba(3,18,14,.96)),url('assets/it-betreuung-v2.webp') center/cover no-repeat; box-shadow: 0 30px 90px rgba(0,0,0,.22); overflow: hidden; }
.value-visual::after { content:""; position:absolute; inset:0; opacity:.18; background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size:50px 50px; mask-image:linear-gradient(0deg,black,transparent 72%); pointer-events:none; }
.value-visual-top,.value-visual-copy,.value-steps { position: relative; z-index: 1; }
.value-visual-top { display:flex; align-items:center; justify-content:space-between; gap:18px; }
.value-live { display:inline-flex; align-items:center; gap:8px; padding:9px 12px; border:1px solid rgba(255,255,255,.15); border-radius:999px; color:rgba(255,255,255,.82); background:rgba(7,25,21,.7); backdrop-filter:blur(12px); font-size:.68rem; font-weight:800; }
.value-live i { width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 5px rgba(214,255,113,.12); }
.value-visual-top > small { color:rgba(255,255,255,.55); font-size:.62rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.value-visual-copy { margin-top:auto; padding:70px 0 22px; }
.value-visual-copy small { display:block; margin-bottom:11px; color:var(--accent); font-size:.65rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.value-visual-copy strong { display:block; font-family:"Manrope",sans-serif; font-size:clamp(2.4rem,4.5vw,4.25rem); line-height:.93; letter-spacing:-.055em; }
.value-steps { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.value-step { display:grid; grid-template-columns:34px 1fr; gap:10px; align-items:center; padding:12px; border:1px solid rgba(255,255,255,.13); border-radius:13px; background:rgba(7,25,21,.72); backdrop-filter:blur(12px); }
.value-step > span { width:31px; height:31px; display:grid; place-items:center; border-radius:9px; color:var(--ink); background:var(--accent); font-family:"Manrope",sans-serif; font-size:.58rem; font-weight:800; }
.value-step strong { display:block; font-size:.73rem; }.value-step small { display:block; margin-top:2px; color:rgba(255,255,255,.48); font-size:.57rem; }
.value-list { border-top: 1px solid rgba(255,255,255,.15); }
.value-list article { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.value-list article > span { color: var(--accent); font-family: "Manrope",sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.value-list h3 { margin-bottom: 8px; font-size: 1.28rem; }
.value-list p { margin: 0; color: rgba(255,255,255,.56); font-size: .92rem; }

.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin: 0; padding: 0; list-style: none; }
.process-grid li > span { display: inline-grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--pine); font-family: "Manrope",sans-serif; font-size: .72rem; font-weight: 800; }
.process-line { width: 100%; height: 1px; margin: 26px 0; background: var(--line); }
.process-grid h3 { margin-bottom: 10px; font-size: 1.2rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.about-section { background: #e8ece4; }
.about-layout { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 110px; }
.about-card { min-height: 590px; position: relative; display: grid; place-items: center; border-radius: var(--radius-lg); color: var(--accent); background: var(--pine); overflow: hidden; box-shadow: var(--shadow); }
.about-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,transparent 48%,rgba(4,16,13,.78) 100%); }
.about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-monogram { position: relative; z-index: 2; font-family: "Manrope",sans-serif; font-size: clamp(6rem,13vw,10rem); font-weight: 800; letter-spacing: -.12em; line-height: 1; transform: translateX(-.05em); }
.about-location { position: absolute; left: 28px; bottom: 27px; z-index: 3; display: flex; align-items: center; gap: 12px; color: var(--white); font-size: .8rem; font-weight: 700; line-height: 1.2; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.about-location i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(214,255,113,.1); }
.about-location small { color: rgba(255,255,255,.45); font-weight: 500; }
.about-pattern { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(45deg,transparent 47%,var(--accent) 48%,var(--accent) 49%,transparent 50%); background-size: 38px 38px; }
.about-copy { max-width: 560px; }
.about-copy h2 { margin-bottom: 34px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; }
.about-copy .about-lead { color: var(--ink) !important; font-size: 1.23rem !important; line-height: 1.55; }
.about-copy blockquote { margin: 35px 0; padding: 22px 0 22px 24px; border-left: 3px solid var(--accent-2); font-family: "Manrope",sans-serif; font-size: 1.25rem; font-weight: 700; line-height: 1.45; }

.region-section { padding-top: 110px; padding-bottom: 110px; }
.region-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 60px; padding: 58px 62px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.47); }
.region-layout h2 { margin-bottom: 24px; font-size: clamp(2.5rem,4vw,4rem); }
.region-layout > div > p:last-child { max-width: 500px; margin-bottom: 0; color: var(--muted); }
.region-network { min-height:330px; position:relative; display:flex; flex-direction:column; justify-content:space-between; padding:28px; border-radius:25px; color:var(--white); background:var(--ink); box-shadow:0 24px 65px rgba(7,25,21,.14); overflow:hidden; }
.region-network::before { content:""; position:absolute; inset:0; opacity:.22; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:44px 44px; mask-image:linear-gradient(135deg,black,transparent 78%); }
.region-network-head,.region-cities,.region-coverage { position:relative; z-index:1; }
.region-network-head { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.region-network-head strong { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; }
.region-network-head span { display:inline-flex; align-items:center; gap:8px; color:rgba(255,255,255,.55); font-size:.65rem; font-weight:700; }
.region-network-head span::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 5px rgba(214,255,113,.12); }
.region-cities { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:35px 0; }
.region-city { position:relative; padding:17px; border:1px solid rgba(255,255,255,.13); border-radius:15px; color:inherit; background:rgba(255,255,255,.055); text-decoration:none; transition:transform .2s ease,border-color .2s ease,background .2s ease; }
.region-city:hover { border-color:rgba(214,255,113,.45); background:rgba(214,255,113,.08); transform:translateY(-3px); }
.region-city:not(:last-child)::after { content:""; width:10px; position:absolute; right:-11px; top:50%; border-top:1px dashed var(--accent); }
.region-city small { display:block; margin-bottom:22px; color:var(--accent); font-family:"Manrope",sans-serif; font-size:.58rem; font-weight:800; letter-spacing:.12em; }
.region-city strong { display:block; font-size:.9rem; }.region-city span { display:block; margin-top:4px; color:rgba(255,255,255,.48); font-size:.62rem; }
.region-coverage { display:flex; align-items:center; justify-content:space-between; gap:20px; padding-top:17px; border-top:1px solid rgba(255,255,255,.13); }
.region-coverage strong { font-size:.8rem; }.region-coverage span { color:rgba(255,255,255,.48); font-size:.64rem; }

.lead-section { background: var(--paper); padding-top: 95px; }
.lead-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 80px; }
.lead-copy { position: sticky; top: 120px; padding-top: 22px; }
.lead-copy h2 { margin-bottom: 28px; font-size: clamp(2.8rem,4.8vw,4.8rem); }
.lead-copy > p:not(.eyebrow) { color: var(--muted); }
.lead-contact-list { display: grid; gap: 13px; margin-top: 40px; }
.lead-contact-list a { display: grid; padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.lead-contact-list small { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lead-contact-list strong { font-size: .92rem; }

#lead-tree { scroll-margin-top: 110px; }
.lt-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 22px 80px rgba(7,25,21,.07); overflow: hidden; }
.lt-head { padding: 34px 36px 24px; border-bottom: 1px solid var(--line); }
.lt-head-tag { display: block; margin-bottom: 8px; color: var(--pine); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lt-head h2 { margin: 0; font-size: clamp(1.55rem,3vw,2.1rem); letter-spacing: -.035em; line-height: 1.15; }
.lt-head p { margin: 9px 0 0; color: var(--muted); font-size: .9rem; }
.lt-body { padding: 28px 36px 34px; }
.lt-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.lt-choice { min-height: 130px; position: relative; display: grid; align-content: space-between; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; color: var(--ink); background: #f8faf6; cursor: pointer; text-align: left; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.lt-choice:hover, .lt-choice:focus-visible { border-color: var(--pine); box-shadow: 0 12px 28px rgba(7,25,21,.08); outline: none; transform: translateY(-2px); }
.lt-choice-index { color: var(--pine); font-family: "Manrope",sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .13em; }
.lt-choice strong { padding-right: 25px; font-size: 1rem; line-height: 1.25; }
.lt-choice::after { content: "↗"; position: absolute; right: 16px; bottom: 17px; color: var(--pine); font-weight: 800; }
.lt-choice span:last-child { display: block; max-width: 90%; color: var(--muted); font-size: .76rem; font-weight: 500; line-height: 1.4; }
.lt-progress { height: 4px; margin-bottom: 25px; border-radius: 99px; background: #e4e9e1; overflow: hidden; }
.lt-progress b { display: block; height: 100%; border-radius: inherit; background: var(--pine); transition: width .25s ease; }
.lt-form-heading { margin-bottom: 22px; }
.lt-form-heading small { color: var(--pine); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.lt-form-heading h3 { margin: 5px 0; font-size: 1.55rem; }
.lt-form-heading p { margin: 0; color: var(--muted); font-size: .86rem; }
.lt-form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.lt-field { display: flex; flex-direction: column; gap: 7px; color: var(--ink); font-size: .76rem; font-weight: 800; }
.lt-field.full, .lt-check.full { grid-column: 1/-1; }
.lt-field input, .lt-field textarea, .lt-field select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cdd6ca; border-radius: 10px; color: var(--ink); background: #fbfcfa; font-size: .88rem; font-weight: 500; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.lt-field textarea { resize: vertical; }
.lt-field input:focus, .lt-field textarea:focus, .lt-field select:focus { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(23,72,59,.1); }
.lt-checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.lt-check { display: flex; align-items: flex-start; gap: 9px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; color: #344740; background: #fbfcfa; font-size: .76rem; font-weight: 600; line-height: 1.4; }
.lt-check input { margin-top: 2px; accent-color: var(--pine); }
.lt-check a { color: var(--pine); }
.inline-legal { display: inline; margin: 0; padding: 0; border: 0; color: var(--pine); background: transparent; font-size: inherit; font-weight: 800; text-decoration: underline; cursor: pointer; }
.lt-nav { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 24px; }
.lt-back { padding: 10px 0; border: 0; color: var(--muted); background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; }
.lt-primary { min-height: 48px; padding: 0 20px; border: 0; border-radius: 999px; color: var(--white); background: var(--ink); font-size: .8rem; font-weight: 800; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.lt-primary:hover { background: var(--pine); transform: translateY(-1px); }
.lt-primary:disabled { opacity: .55; cursor: wait; transform: none; }
.lt-note { display: block; margin-top: 10px; color: #73817c; font-size: .68rem; font-weight: 500; }
.lt-error { margin: 10px 0 0; color: #a72b2b; font-size: .76rem; font-weight: 700; }
.lt-summary { display: grid; grid-template-columns: minmax(125px,.4fr) 1fr; margin: 0; border: 1px solid var(--line); border-radius: 13px; background: #f8faf6; overflow: hidden; }
.lt-summary dt, .lt-summary dd { margin: 0; padding: 10px 13px; border-bottom: 1px solid var(--line); font-size: .76rem; }
.lt-summary dt { color: var(--muted); font-weight: 700; }
.lt-summary dd { color: var(--ink); font-weight: 600; white-space: pre-wrap; }
.lt-summary dt:last-of-type, .lt-summary dd:last-of-type { border-bottom: 0; }
.lt-success { padding: 35px 10px 25px; text-align: center; }
.lt-success-mark { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; color: var(--ink); background: var(--accent); font-size: 1.4rem; font-weight: 900; }
.lt-success h3 { margin-bottom: 10px; font-size: 1.6rem; }
.lt-success p { max-width: 480px; margin: 0 auto; color: var(--muted); font-size: .9rem; }
.lt-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.faq-section { padding-top: 80px; background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; font-family: "Manrope",sans-serif; font-size: 1.02rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; top: 18px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: "DM Sans",sans-serif; font-size: 1.15rem; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary::after { background: var(--accent); transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -5px 55px 25px 0; color: var(--muted); font-size: .9rem; }

.contact-section { padding: 0 0 80px; background: var(--white); }
.contact-card { min-height: 390px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 70px; position: relative; padding: 65px 72px; border-radius: var(--radius-lg); color: var(--white); background: var(--ink); overflow: hidden; }
.contact-card::after { content: ""; position: absolute; right: -100px; top: -160px; width: 480px; height: 480px; border: 1px solid rgba(214,255,113,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(214,255,113,.025),0 0 0 140px rgba(214,255,113,.015); }
.contact-card > * { position: relative; z-index: 2; }
.contact-card h2 { font-size: clamp(2.8rem,5vw,5rem); }
.contact-actions { display: grid; justify-items: start; gap: 22px; }
.contact-actions a { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 800; text-decoration: none; }
.contact-actions a:hover { color: var(--accent); }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.65); background: #04100d; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 60px; padding-bottom: 55px; }
.footer-brand { color: var(--white); }
.footer-main > p { max-width: 330px; margin: 0; font-size: .86rem; }
.footer-links { display: grid; justify-items: end; gap: 6px; }
.footer-links a { color: var(--white); font-size: .85rem; font-weight: 700; text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.footer-bottom button { padding: 0; border: 0; color: inherit; background: none; cursor: pointer; }
.footer-bottom button:hover { color: var(--white); }

.mobile-contact { display: none; }
.legal-dialog { width: min(840px,calc(100% - 32px)); max-height: min(84vh,900px); padding: 0; border: 0; border-radius: 22px; color: var(--ink); background: var(--white); box-shadow: 0 35px 120px rgba(0,0,0,.32); }
.legal-dialog::backdrop { background: rgba(3,14,11,.75); backdrop-filter: blur(5px); }
.dialog-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--white); }
.dialog-head h2 { font-size: 1.45rem; letter-spacing: -.03em; }
.dialog-head button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.55rem; line-height: 1; cursor: pointer; }
.dialog-content { padding: 26px; }
.dialog-content section + section { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.dialog-content h3 { margin-bottom: 20px; font-size: 1.4rem; }
.dialog-content h4 { margin: 22px 0 7px; font-size: .96rem; }
.dialog-content p { color: var(--muted); font-size: .86rem; }
.dialog-content a { color: var(--pine); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.3,1); }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 40px, 920px); }
  .site-nav { gap: 19px; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr 420px; gap: 35px; }
  .hero-system { min-height: 485px; }
  .system-orbit { height: 355px; }
  .ring-two { width: 345px; height: 345px; }
  .service-card { padding: 25px; }
  .value-layout { gap: 45px; }
  .about-layout { gap: 65px; }
  .region-layout { padding: 45px; }
  .lead-layout { gap: 45px; }
}

@media (max-width: 860px) {
  .site-header { background: rgba(7,25,21,.9); backdrop-filter: blur(14px); }
  .site-header.scrolled { background: rgba(243,245,238,.95); }
  .header-inner { height: 72px; }
  .menu-toggle { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; padding: 0 10px; border: 0; border-radius: 12px; color: var(--white); background: rgba(255,255,255,.08); cursor: pointer; }
  .site-header.scrolled .menu-toggle { color: var(--ink); background: rgba(7,25,21,.06); }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; border-radius: 3px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; left: 20px; right: 20px; top: 78px; display: grid; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease,visibility .2s ease,transform .2s ease; }
  .site-nav { max-height: calc(100vh - 96px); overflow-y: auto; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { padding: 13px 8px; border-bottom: 1px solid var(--line); color: var(--ink) !important; }
  .site-nav > a::after { display: none; }
  .nav-services { border-bottom: 1px solid var(--line); }
  .nav-services summary { padding: 13px 8px; color: var(--ink) !important; }
  .nav-services-menu { width: auto; position: static; grid-template-columns: 1fr 1fr; gap: 4px; margin: 0 0 10px; padding: 6px; border: 0; border-radius: 12px; background: #eef2e9; box-shadow: none; }
  .nav-services-menu::before { display: none; }
  .nav-services-menu a { padding: 10px; }
  .site-nav .button { margin-top: 12px; background: var(--ink); color: var(--white); }
  .site-nav > a.button { color: var(--white) !important; }
  .hero { padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-system { width: min(100%,640px); min-height: 515px; margin: 20px auto 0; }
  .system-orbit { height: 385px; }
  .hero-footnote { justify-content: center; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:first-child { grid-column: 1/-1; min-height: 390px; }
  .service-card:first-child .service-icon { margin-bottom: 35px; }
  .more-services { grid-template-columns: 1fr; }
  .more-services ul { grid-template-columns: 1fr 1fr; }
  .value-layout { grid-template-columns: 1fr; }
  .value-visual { min-height: 560px; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 52px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-card { min-height: 490px; }
  .about-copy { max-width: 680px; }
  .region-layout { grid-template-columns: 1fr; }
  .region-network { width:100%; max-width:650px; margin-inline:auto; }
  .lead-layout { grid-template-columns: 1fr; }
  .lead-copy { position: static; max-width: 650px; }
  .lead-contact-list { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 2; grid-row: 1/3; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 27px; }
  body { padding-bottom: 66px; }
  h2 { font-size: 2.65rem; }
  .section { padding: 88px 0; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 116px 0 28px; }
  .hero h1 { font-size: clamp(3.15rem,15vw,4.75rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 13px; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .hero-proof li { display: grid; grid-template-columns: 33px 1fr; align-items: center; }
  .hero-proof span { margin: 0; }
  .hero-system { min-height: 455px; border-radius: 24px; }
  .system-orbit { height: 330px; }
  .ring-one { width: 210px; height: 210px; }
  .ring-two { width: 310px; height: 310px; }
  .core-node { width: 112px; height: 112px; }
  .satellite { min-width: 108px; padding: 9px 9px 9px 27px; }
  .satellite i { left: 11px; top: 14px; }
  .satellite-a { left: 3%; }.satellite-b { right: 2%; }.satellite-c { right: 7%; }
  .system-footer { padding: 0 13px; }
  .system-footer small { font-size: .5rem; }.system-footer strong { font-size: .62rem; }
  .hero-footnote { flex-wrap: wrap; margin-top: 35px; font-size: .58rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child { min-height: 410px; grid-column: auto; padding: 25px; }
  .service-card .service-icon, .service-card:first-child .service-icon { margin-bottom: 42px; }
  .more-services { padding: 22px; }
  .more-services ul { grid-template-columns: 1fr; gap: 14px; }
  .dark-intro h2 { font-size: 3.2rem; }
  .value-layout { margin-top: 55px; }
  .value-visual { min-height: 550px; padding:20px; }
  .value-visual-copy { padding-top:90px; }
  .value-steps { grid-template-columns:1fr; }
  .value-list article { gap: 14px; }
  .process-grid { grid-template-columns: 1fr; gap: 35px; }
  .process-line { margin: 18px 0; }
  .about-card { min-height: 420px; }
  .about-monogram { font-size: 7.6rem; }
  .region-section { padding-top: 70px; padding-bottom: 70px; }
  .region-layout { padding: 31px 23px; }
  .region-network { min-height:440px; padding:20px; }
  .region-cities { grid-template-columns:1fr; margin:24px 0; }
  .region-city { padding:13px 15px; }
  .region-city small { margin-bottom:7px; }
  .region-city:not(:last-child)::after { width:1px; height:10px; right:auto; left:28px; top:auto; bottom:-11px; border-top:0; border-left:1px dashed var(--accent); }
  .region-coverage { align-items:flex-start; flex-direction:column; gap:4px; }
  .lead-layout { gap: 38px; }
  .lead-contact-list { grid-template-columns: 1fr; }
  .lt-head { padding: 27px 22px 21px; }
  .lt-body { padding: 22px; }
  .lt-options, .lt-form-grid, .lt-checks { grid-template-columns: 1fr; }
  .lt-choice { min-height: 115px; }
  .lt-nav { align-items: stretch; flex-direction: column-reverse; }
  .lt-primary { width: 100%; }
  .lt-summary { grid-template-columns: 1fr; }
  .lt-summary dt { padding-bottom: 2px; border-bottom: 0; }
  .lt-summary dd { padding-top: 2px; }
  .faq-list summary { font-size: .92rem; }
  .contact-section { padding-bottom: 14px; }
  .contact-card { min-height: 430px; padding: 43px 25px; }
  .contact-card h2 { font-size: 3rem; }
  .footer-main { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .footer-main > p { max-width: 280px; }
  .footer-links { grid-column: auto; grid-row: auto; justify-items: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-contact { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 10px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(7,25,21,.96); backdrop-filter: blur(14px); }
  .mobile-contact a { min-height: 49px; display: grid; place-items: center; border-radius: 999px; color: var(--ink); background: var(--accent); font-size: .82rem; font-weight: 800; text-decoration: none; }
  .mobile-contact a:last-child { color: var(--white); background: var(--pine); }
  .legal-dialog { max-height: calc(100vh - 90px); }
  .dialog-head, .dialog-content { padding-left: 19px; padding-right: 19px; }
}

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