:root {
  --ink: #07110f;
  --ink-soft: #0b1714;
  --panel: #10201c;
  --paper: #f4f7f5;
  --paper-deep: #e8efeb;
  --white: #fbfdfc;
  --text: #17231f;
  --muted: #61706a;
  --muted-dark: #a4b7af;
  --line: #d9e2de;
  --line-dark: rgba(196, 224, 212, .14);
  --mint: #49e5a5;
  --mint-soft: #8cf3c9;
  --mint-dark: #087b53;
  --radius: 20px;
  --shadow: 0 24px 80px rgba(4, 20, 15, .11);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--text); background: var(--paper); font-family: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
.container { width: var(--container); 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; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); padding: 10px 16px; color: var(--ink); background: var(--mint); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: 78px; color: var(--white); background: rgba(7, 17, 15, .82); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px); transition: height .25s ease, background .25s ease; }
.site-header.scrolled { height: 68px; background: rgba(7, 17, 15, .96); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; color: var(--mint); background: rgba(73, 229, 165, .08); border: 1px solid rgba(73, 229, 165, .25); border-radius: 13px; }
.brand-mark svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { max-width: 210px; overflow: hidden; color: var(--white); font-size: .92rem; text-overflow: ellipsis; white-space: nowrap; }
.brand-copy small { margin-top: 4px; color: var(--muted-dark); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { position: relative; color: #c3d0cb; font-size: .86rem; font-weight: 600; transition: color .2s ease; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; inset: auto 0 -7px; height: 1px; background: var(--mint); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .nav-cta { padding: 10px 17px; color: var(--ink); background: var(--mint); border-radius: 9px; }
.main-nav .nav-cta:hover { color: var(--ink); background: var(--mint-soft); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; background: transparent; border: 1px solid var(--line-dark); border-radius: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 780px; padding: 158px 0 0; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, rgba(12, 32, 26, .55)); pointer-events: none; }
.hero-grid, .business-grid-bg { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(125, 236, 191, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 236, 191, .12) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, transparent 2%, black 50%, transparent 98%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { top: 5%; right: 10%; width: 470px; height: 470px; background: radial-gradient(circle, rgba(22, 163, 112, .18), transparent 68%); }
.hero-orb-two { bottom: 5%; left: -12%; width: 440px; height: 440px; background: radial-gradient(circle, rgba(62, 128, 177, .1), transparent 68%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 84px; align-items: center; }
.hero-layout > * { min-width: 0; }
.eyebrow, .kicker { margin: 0 0 22px; color: var(--mint-dark); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--mint-soft); }
.eyebrow span { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 6px rgba(73, 229, 165, .1); animation: pulse 2.5s ease infinite; }
.hero h1 { max-width: 650px; margin: 0; font-size: clamp(3.1rem, 5.15vw, 5.35rem); font-weight: 720; line-height: .99; letter-spacing: -.055em; }
.hero h1 span, .section h2 span { color: var(--mint-dark); }
.hero h1 span { color: var(--mint); }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: #bdcac5; font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 21px; border: 0; border-radius: 11px; font-size: .91rem; font-weight: 750; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--mint); box-shadow: 0 11px 30px rgba(42, 225, 149, .16); }
.button-primary:hover { background: var(--mint-soft); box-shadow: 0 14px 38px rgba(42, 225, 149, .24); }
.button-primary svg { width: 21px; fill: currentColor; }
.button-ghost { color: #e6eeeb; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.16); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.cta-note { display: flex; align-items: center; gap: 9px; margin: 20px 0 0; color: #7f918a; font-size: .76rem; }
.cta-note span { color: var(--mint); font-size: .54rem; }

.hero-visual { position: relative; height: 510px; display: grid; place-items: center; }
.system-card { position: relative; z-index: 4; width: min(100%, 430px); padding: 23px; background: linear-gradient(145deg, rgba(20, 45, 37, .78), rgba(8, 24, 19, .9)); border: 1px solid rgba(127, 224, 185, .19); border-radius: 25px; box-shadow: 0 40px 90px rgba(0,0,0,.36), inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(14px); }
.system-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(73,229,165,.08), transparent 35%); pointer-events: none; }
.system-topline { display: flex; justify-content: space-between; align-items: center; color: #859890; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; }
.status-pill i, .floating-card i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 12px var(--mint); }
.system-code { font-family: Consolas, monospace; }
.shield-wrap { position: relative; display: grid; place-items: center; height: 300px; }
.shield { position: relative; z-index: 2; width: 155px; filter: drop-shadow(0 0 25px rgba(73,229,165,.16)); }
.shield-glow { fill: rgba(73,229,165,.05); stroke: rgba(73,229,165,.2); stroke-width: 1; }
.shield-line { fill: rgba(10,31,24,.7); stroke: var(--mint); stroke-width: 2; }
.shield-check { fill: none; stroke: var(--mint); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.orbit { position: absolute; width: 225px; height: 225px; border: 1px solid rgba(73,229,165,.11); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; top: 20px; left: 28px; width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 13px var(--mint); }
.orbit-one { animation: spin 13s linear infinite; }
.orbit-two { width: 275px; height: 275px; border-style: dashed; animation: spin 22s linear infinite reverse; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.metric-row div { padding: 17px 10px 3px; border-right: 1px solid var(--line-dark); text-align: center; }
.metric-row div:last-child { border-right: 0; }
.metric-row span, .metric-row strong { display: block; }
.metric-row span { color: #6e827a; font-size: .63rem; text-transform: uppercase; }
.metric-row strong { margin-top: 4px; color: #d8e5e0; font-size: .72rem; }
.floating-card { position: absolute; z-index: 6; display: flex; align-items: center; gap: 11px; padding: 12px 15px; color: #81958d; background: rgba(13, 33, 27, .92); border: 1px solid rgba(127, 224, 185, .18); border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.3); font-size: .68rem; backdrop-filter: blur(10px); }
.floating-card span, .floating-card strong { display: block; }
.floating-card strong { color: #e1ebe7; font-size: .73rem; }
.floating-one { top: 71px; right: -5px; }
.floating-two { bottom: 126px; left: -30px; }
.mini-icon { color: var(--mint); font-size: 1.65rem; }
.signal { position: absolute; z-index: 1; width: 330px; height: 1px; background: linear-gradient(90deg, transparent, rgba(73,229,165,.25), transparent); transform-origin: center; }
.signal-one { transform: rotate(24deg); }.signal-two { transform: rotate(-42deg); }.signal-three { transform: rotate(82deg); }
.network-node { position: absolute; z-index: 2; width: 9px; height: 9px; border: 1px solid var(--mint); border-radius: 50%; box-shadow: 0 0 0 6px rgba(73,229,165,.05); }
.node-a { top: 70px; left: 34px; }.node-b { right: 10px; bottom: 110px; }.node-c { left: 65px; bottom: 25px; }
.trust-strip { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 77px; border-top: 1px solid rgba(255,255,255,.09); }
.trust-strip > div { display: flex; align-items: center; gap: 15px; min-height: 94px; padding: 15px 35px; border-right: 1px solid rgba(255,255,255,.09); }
.trust-strip > div:first-child { padding-left: 0; }.trust-strip > div:last-child { border: 0; }
.trust-strip svg { width: 25px; flex: 0 0 auto; fill: none; stroke: var(--mint); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-strip span { color: #7f918a; font-size: .73rem; line-height: 1.35; }
.trust-strip strong { display: block; margin-bottom: 3px; color: #dce7e3; font-size: .78rem; }

.remote-feature { position: relative; overflow: hidden; background: var(--white); }
.remote-feature::before { content: ""; position: absolute; inset: -180px auto auto -160px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(73,229,165,.13), transparent 68%); pointer-events: none; }
.remote-layout { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 92px; align-items: center; }
.remote-visual { position: relative; display: grid; place-items: center; min-height: 475px; padding: 48px; background: var(--ink); border-radius: 28px; box-shadow: var(--shadow); }
.remote-visual::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(73,229,165,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(73,229,165,.12) 1px, transparent 1px); background-size: 42px 42px; border-radius: inherit; mask-image: radial-gradient(circle, black, transparent 78%); }
.remote-window { position: relative; z-index: 2; width: 100%; color: var(--white); background: rgba(14,36,29,.94); border: 1px solid rgba(73,229,165,.23); border-radius: 17px; box-shadow: 0 28px 65px rgba(0,0,0,.35); overflow: hidden; }
.remote-window-bar { display: flex; align-items: center; gap: 6px; height: 42px; padding: 0 14px; color: #799087; background: rgba(255,255,255,.025); border-bottom: 1px solid var(--line-dark); font-size: .64rem; }
.remote-window-bar > span { width: 7px; height: 7px; background: #52635d; border-radius: 50%; }
.remote-window-bar > span:first-child { background: var(--mint); }
.remote-window-bar small { margin-left: auto; }
.remote-window-body { display: flex; flex-direction: column; align-items: center; padding: 48px 25px 35px; text-align: center; }
.remote-screen-icon { display: grid; place-items: center; width: 74px; height: 74px; margin-bottom: 20px; color: var(--mint); background: rgba(73,229,165,.08); border: 1px solid rgba(73,229,165,.18); border-radius: 20px; }
.remote-screen-icon svg { width: 37px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.remote-window-body strong { font-size: 1rem; }
.remote-window-body > span { margin-top: 5px; color: #7f938b; font-size: .72rem; }
.remote-progress { width: 76%; height: 4px; margin-top: 28px; background: rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.remote-progress i { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, var(--mint-dark), var(--mint)); border-radius: inherit; }
.remote-location { position: absolute; z-index: 3; right: 19px; bottom: 27px; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; min-width: 200px; padding: 12px 15px; color: #80948c; background: rgba(8,25,20,.96); border: 1px solid rgba(73,229,165,.18); border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,.28); font-size: .65rem; }
.remote-location i { grid-row: span 2; align-self: center; width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 11px var(--mint); }
.remote-location strong { color: #dce8e3; font-size: .74rem; }
.remote-copy h2 span { display: block; }
.remote-lead { margin: 24px 0 26px; color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; margin: 0 0 31px; padding: 0; list-style: none; }
.benefit-grid li { display: flex; align-items: flex-start; gap: 9px; color: #43534d; font-size: .8rem; line-height: 1.45; }
.benefit-grid svg { width: 19px; flex: 0 0 auto; fill: none; stroke: var(--mint-dark); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.section { padding: 110px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 50px; }
.section-heading > p { max-width: 445px; margin: 0 0 5px; color: var(--muted); }
.kicker { margin-bottom: 15px; }
.section h2 { margin: 0; color: var(--ink); font-size: clamp(2.35rem, 4.2vw, 4rem); font-weight: 720; line-height: 1.06; letter-spacing: -.045em; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card { min-height: 254px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #b7d6c9; box-shadow: var(--shadow); }
.service-card.featured { color: var(--white); background: var(--ink-soft); border-color: var(--ink-soft); }
.service-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 25px; color: var(--mint-dark); background: #e7f4ee; border-radius: 12px; }
.service-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card.featured .service-icon { color: var(--mint); background: rgba(73,229,165,.1); }
.service-card h3 { margin: 0 0 8px; font-size: 1.05rem; line-height: 1.35; }
.service-card p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.65; }
.service-card.featured p { color: #9cafA7; }
.service-card > a { display: inline-flex; gap: 15px; margin-top: 20px; color: var(--mint); font-size: .78rem; font-weight: 750; }
.service-card.wide { grid-column: span 3; min-height: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
.service-card.wide .service-icon { margin: 0; }
.service-card.wide h3 { margin-bottom: 2px; }
.service-card.wide .text-link { margin: 0; color: var(--mint-dark); }

.pricing { background: var(--paper-deep); }
.pricing-heading { align-items: center; }
.pricing-heading-action { max-width: 445px; }
.pricing-heading-action p { margin: 0 0 13px; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.price-card { position: relative; min-height: 305px; display: flex; flex-direction: column; padding: 27px; background: var(--white); border: 1px solid #d5e0db; border-radius: var(--radius); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-4px); border-color: #b7d6c9; box-shadow: var(--shadow); }
.price-card.price-featured { color: var(--white); background: var(--ink-soft); border-color: var(--ink-soft); }
.price-top { min-height: 26px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.price-top > span { padding: 5px 9px; color: var(--mint-dark); background: #e5f4ed; border-radius: 6px; font-size: .61rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.price-top svg { width: 24px; fill: none; stroke: var(--mint); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.price-featured .price-top > span { color: var(--mint); background: rgba(73,229,165,.1); }
.price-card h3 { min-height: 45px; margin: 0 0 14px; font-size: 1.02rem; line-height: 1.35; }
.price { display: flex; align-items: baseline; gap: 7px; margin: 0 0 15px; color: var(--ink); font-size: 2rem; font-weight: 780; letter-spacing: -.035em; line-height: 1; }
.price small { color: var(--mint-dark); font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price b { color: var(--muted); font-size: .65rem; letter-spacing: 0; }
.price-featured .price { color: var(--white); }.price-featured .price small { color: var(--mint); }.price-featured .price b { color: #8fa49b; }
.price-card > p:last-of-type { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.62; }
.price-featured > p:last-of-type { color: #96aaa2; }
.price-card > a { display: inline-flex; justify-content: space-between; margin-top: auto; padding-top: 18px; color: var(--mint); border-top: 1px solid var(--line-dark); font-size: .76rem; font-weight: 800; }
.pricing-notice { display: flex; gap: 15px; margin-top: 22px; padding: 22px 25px; color: #566760; background: #dfeae5; border: 1px solid #ceddd6; border-radius: 13px; font-size: .76rem; }
.pricing-notice svg { width: 22px; flex: 0 0 auto; fill: none; stroke: var(--mint-dark); stroke-width: 1.7; stroke-linecap: round; }
.pricing-notice p { margin: 0; }.pricing-notice p + p { margin-top: 5px; }
.pricing-notice strong { color: var(--text); }

.business { position: relative; overflow: hidden; color: var(--white); background: #0a1713; }
.business::before { content: ""; position: absolute; top: -200px; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(73,229,165,.1), transparent 70%); }
.business-grid-bg { opacity: .12; mask-image: linear-gradient(90deg, transparent, black); }
.business-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.business .kicker { color: var(--mint-soft); }
.business h2 { color: var(--white); }
.business h2 span { color: var(--mint); }
.business-intro > p:not(.kicker) { max-width: 470px; margin: 24px 0 30px; color: #9dafA8; }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--mint-soft); }
.business-note { display: flex; gap: 14px; max-width: 420px; margin-top: 45px; padding-top: 24px; color: #80948c; border-top: 1px solid var(--line-dark); font-size: .78rem; }
.business-note svg { width: 21px; flex: 0 0 auto; fill: none; stroke: var(--mint); stroke-width: 1.7; stroke-linecap: round; }
.business-note p { margin: 0; }.business-note strong { color: #b9cbc4; }
.business-list { border-top: 1px solid var(--line-dark); }
.business-list article { display: grid; grid-template-columns: 46px 1fr auto; gap: 20px; align-items: center; padding: 23px 5px; border-bottom: 1px solid var(--line-dark); transition: background .2s, padding .2s; }
.business-list article:hover { padding-inline: 17px; background: rgba(255,255,255,.025); }
.business-list article > span { color: var(--mint); font: .7rem Consolas, monospace; }
.business-list h3 { margin: -4px 0 4px; font-size: 1.03rem; }
.business-list p { margin: 0; color: #82958e; font-size: .82rem; }
.business-list article > b { padding: 6px 9px; color: var(--mint-soft); background: rgba(73,229,165,.07); border: 1px solid rgba(73,229,165,.13); border-radius: 6px; font-size: .59rem; font-weight: 700; white-space: nowrap; }

.process { overflow: hidden; background: var(--paper-deep); }
.section-heading.centered { display: block; max-width: 700px; margin: 0 auto 60px; text-align: center; }
.section-heading.centered > p:last-child { max-width: 560px; margin: 18px auto 0; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 53px; left: 9%; right: 9%; height: 1px; background: repeating-linear-gradient(90deg, #abc9bc 0 6px, transparent 6px 12px); }
.process-list li { position: relative; min-width: 0; padding: 0 16px; text-align: center; }
.step-number { display: block; margin-bottom: 15px; color: #82978e; font: .67rem Consolas, monospace; }
.step-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 22px; color: var(--mint-dark); background: var(--white); border: 1px solid #cddbd5; border-radius: 50%; box-shadow: 0 0 0 8px var(--paper-deep); }
.step-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-list h3 { margin: 0 0 8px; font-size: .96rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.authorization-note { max-width: 850px; margin: 48px auto 0; padding: 18px 22px; color: #4e6058; background: var(--white); border: 1px solid #ccdcd5; border-radius: 12px; text-align: center; font-size: .82rem; }
.authorization-note strong { color: var(--mint-dark); }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro > p:not(.kicker) { max-width: 390px; margin: 20px 0; color: var(--muted); }
.text-link { display: inline-flex; gap: 15px; color: var(--mint-dark); font-size: .84rem; font-weight: 750; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; font-size: .97rem; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 28px; height: 28px; flex: 0 0 auto; background: #e5eeea; border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; top: 13px; left: 8px; width: 12px; height: 1.5px; background: var(--mint-dark); transition: transform .2s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 650px; margin: -8px 50px 23px 0; color: var(--muted); font-size: .88rem; }

.contact { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.contact-glow { position: absolute; inset: 0 auto auto 0; width: 55%; height: 100%; background: radial-gradient(circle at 30% 45%, rgba(32, 176, 118, .12), transparent 65%); }
.contact-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 95px; align-items: start; }
.contact .kicker { color: var(--mint-soft); }
.contact h2 { color: var(--white); }.contact h2 span { color: var(--mint); }
.contact-copy > p:not(.kicker) { max-width: 450px; margin: 22px 0 34px; color: #9cafA7; }
.contact-methods { display: grid; gap: 9px; }
.contact-method { display: flex; align-items: center; gap: 14px; max-width: 455px; min-height: 65px; padding: 11px 14px; background: rgba(255,255,255,.035); border: 1px solid var(--line-dark); border-radius: 12px; transition: background .2s; }
a.contact-method:hover { background: rgba(255,255,255,.07); }
.contact-method-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; color: var(--mint); background: rgba(73,229,165,.09); border-radius: 10px; }
.contact-method-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-method-icon.whatsapp-icon svg { fill: currentColor; stroke: none; }
.contact-method > span:nth-child(2) { flex: 1; }
.contact-method small, .contact-method strong { display: block; }
.contact-method small { color: #74877f; font-size: .67rem; text-transform: uppercase; }
.contact-method strong { margin-top: 1px; color: #dce7e3; font-size: .83rem; }
.contact-method b { color: var(--mint); font-weight: 400; }
.contact-form { padding: 34px; color: var(--text); background: var(--white); border-radius: 23px; box-shadow: 0 32px 80px rgba(0,0,0,.22); }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading span { font-size: 1.13rem; font-weight: 750; }.form-heading small { color: var(--muted); font-size: .68rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 6px; color: #34433d; font-size: .75rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; color: var(--text); background: #f2f6f4; border: 1px solid transparent; border-radius: 9px; outline: 0; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { min-height: 125px; padding: 12px 13px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #91a09a; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--mint-dark); box-shadow: 0 0 0 3px rgba(14, 145, 95, .09); }
.field :user-invalid { border-color: #bf4c4c; }
.checkbox { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .72rem; cursor: pointer; }
.checkbox input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--mint-dark); }
.checkbox a { color: var(--mint-dark); text-decoration: underline; }
.form-submit { width: 100%; margin-top: 20px; }
.form-privacy { margin: 11px 0 0; color: #75857f; font-size: .68rem; text-align: center; }
.form-privacy a { color: var(--mint-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.form-status { display: none; margin: 14px 0 0; padding: 11px 13px; color: #714d08; background: #fff5db; border-radius: 8px; font-size: .76rem; }
.form-status.visible { display: block; }
.form-status.success { color: #075d3c; background: #e2f7ed; }
.form-security { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 14px 0 0; color: #82918b; font-size: .67rem; }
.form-security svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.site-footer { color: #8da099; background: #050c0a; }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; padding: 70px 0 55px; }
.footer-brand > p { max-width: 315px; margin: 22px 0 0; font-size: .78rem; }
.footer-column { display: flex; flex-direction: column; gap: 10px; font-size: .75rem; }
.footer-column h3 { margin: 0 0 8px; color: #e4ece9; font-size: .78rem; }
.footer-column a:hover { color: var(--mint); }
.footer-contact span { line-height: 1.45; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 20px 0 30px; border-top: 1px solid rgba(255,255,255,.07); font-size: .64rem; }
.footer-bottom p { margin: 0; }.footer-bottom strong { color: #b8c7c1; }.footer-bottom a:hover { color: var(--mint); }
.mobile-whatsapp { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-one { transition-delay: .1s; }.delay-two { transition-delay: .2s; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(73,229,165,0); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1060px) {
  .main-nav { gap: 13px; }.main-nav a { font-size: .76rem; }
  .hero-layout { gap: 30px; }.hero-visual { transform: scale(.88); margin-inline: -30px; }
  .remote-layout { gap: 55px; }
  .business-layout { gap: 65px; }.faq-layout, .contact-layout { gap: 60px; }
  .footer-top { gap: 35px; }
}

@media (max-width: 1020px) {
  :root { --container: min(100% - 32px, 720px); }
  .site-header { height: 70px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 69px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; max-height: 0; padding: 0 16px; overflow: hidden; background: rgba(7,17,15,.98); border-bottom: 1px solid var(--line-dark); opacity: 0; transition: max-height .3s ease, opacity .2s, padding .3s; }
  .main-nav.open { max-height: calc(100vh - 69px); padding-block: 15px 24px; opacity: 1; overflow-y: auto; }
  .main-nav a { padding: 13px 12px; font-size: .93rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav .nav-cta { margin-top: 12px; text-align: center; border: 0; }
  .hero { padding-top: 125px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }.hero-lead { max-width: 700px; }
  .hero-visual { width: 100%; max-width: 600px; margin: -10px auto 0; transform: none; }
  .trust-strip { margin-top: 40px; }
  .trust-strip > div { padding: 15px; }
  .section-heading { display: block; }.section-heading > p { margin-top: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }.service-card.wide { grid-column: span 2; }
  .remote-layout { grid-template-columns: 1fr; gap: 55px; }.remote-visual { width: min(100%, 620px); min-height: 430px; margin-inline: auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }.pricing-heading-action { max-width: 620px; margin-top: 20px; }
  .business-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 60px; }
  .business-intro > p:not(.kicker) { max-width: 650px; }
  .process-list { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-list::before { display: none; }
  .faq-intro { position: static; }.faq-intro > p:not(.kicker) { max-width: 600px; }
  .contact-copy { max-width: 650px; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }.footer-column:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); --radius: 16px; }
  html { scroll-padding-top: 76px; }
  .brand-copy strong { max-width: 180px; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-copy { width: 100%; min-width: 0; }
  .eyebrow { max-width: 100%; justify-content: center; font-size: .64rem; line-height: 1.45; text-align: center; white-space: normal; }
  .hero h1 { width: 100%; font-size: clamp(2.55rem, 12vw, 3.15rem); line-height: 1.02; letter-spacing: -.045em; overflow-wrap: normal; }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .hero-actions { width: 100%; min-width: 0; flex-direction: column; }.hero-actions .button { width: 100%; padding-inline: 13px; font-size: .84rem; }
  .cta-note { max-width: 100%; text-align: left; }
  .hero-visual { height: 420px; margin: 5px auto 0; }
  .system-card { width: calc(100% - 20px); padding: 18px; }
  .shield-wrap { height: 245px; }.shield { width: 125px; }.orbit { width: 185px; height: 185px; }.orbit-two { width: 225px; height: 225px; }
  .floating-one { top: 30px; right: -5px; }.floating-two { bottom: 82px; left: -2px; }
  .trust-strip { grid-template-columns: 1fr; padding: 14px 0; }
  .trust-strip > div, .trust-strip > div:first-child { min-height: 70px; padding: 12px 5px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-strip > div:last-child { border: 0; }
  .section { padding: 80px 0; }.section-heading { margin-bottom: 35px; }
  .section h2 { font-size: clamp(2.25rem, 11vw, 3.1rem); }
  .remote-visual { min-height: 390px; padding: 32px 22px; border-radius: 22px; }.remote-location { right: 6px; bottom: 15px; }.benefit-grid { grid-template-columns: 1fr; }.remote-copy .button { width: 100%; padding-inline: 12px; font-size: .8rem; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 225px; }.service-card.wide { grid-column: auto; grid-template-columns: auto 1fr; }.service-card.wide .text-link { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }.price-card { min-height: 285px; }.pricing-notice { padding: 18px; }
  .business-layout { gap: 55px; }.business-list article { padding-block: 22px; }
  .business-list article { grid-template-columns: 34px 1fr; gap: 13px; }.business-list article > b { grid-column: 2; justify-self: start; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 38px 8px; }.process-list li { padding-inline: 5px; }
  .faq-layout { gap: 40px; }.accordion summary { font-size: .9rem; }.accordion details p { margin-right: 0; }
  .contact-layout { gap: 45px; }.contact-form { padding: 23px 18px; margin-inline: -3px; }.field-row { grid-template-columns: 1fr; gap: 0; }.form-heading { display: block; }.form-heading small { display: block; margin-top: 4px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 20px; padding-top: 55px; }.footer-brand { grid-column: span 2; }.footer-column:last-child { grid-column: span 2; }.footer-bottom { display: block; padding-bottom: 92px; }.footer-bottom p + p { margin-top: 10px; }
  .mobile-whatsapp { position: fixed; z-index: 900; inset: auto 14px 14px auto; display: flex; align-items: center; justify-content: center; gap: 9px; width: auto; height: 50px; padding: 0 18px; color: var(--ink); background: var(--mint); border-radius: 25px; box-shadow: 0 15px 45px rgba(0,0,0,.3); font-size: .82rem; font-weight: 800; }
  .mobile-whatsapp svg { width: 20px; fill: currentColor; }
}

@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; }
}
