:root {
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #0a1728;
  --navy-800: #0d1d31;
  --navy-700: #15304d;
  --blue-600: #0878f9;
  --blue-500: #2196ff;
  --blue-300: #7cc8ff;
  --cyan-400: #26d9d0;
  --gold-400: #ffc94a;
  --green-500: #22c97a;
  --red-500: #ff5c6c;
  --white: #f8fbff;
  --slate-200: #dce8f5;
  --slate-300: #b8cadc;
  --slate-400: #8ea6bd;
  --line: rgba(164, 200, 232, .16);
  --panel: rgba(12, 29, 50, .82);
  --shadow: 0 28px 80px rgba(0, 0, 0, .3);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(8, 120, 249, .13), transparent 27rem),
    radial-gradient(circle at 92% 32%, rgba(38, 217, 208, .08), transparent 25rem),
    var(--navy-950);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
ul { margin: 0; padding: 0; }
p { margin: 0 0 1rem; color: var(--slate-300); }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.45rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
strong { color: var(--white); }
::selection { color: #04101d; background: var(--cyan-400); }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }

.skip-link {
  position: fixed; left: 1rem; top: -80px; z-index: 2000;
  padding: .8rem 1.1rem; color: #05101e; background: var(--gold-400);
  border-radius: 0 0 10px 10px; font-weight: 800; transition: top .2s;
}
.skip-link:focus { top: 0; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; position: relative; }
.section-sm { padding: 3rem 0; }
.section-surface { border-block: 1px solid var(--line); background: rgba(8, 23, 40, .64); }
.section-heading { max-width: 780px; margin-bottom: 2.4rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { margin-top: 1rem; font-size: 1.08rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem;
  color: var(--blue-300); font-size: .78rem; font-weight: 850;
  letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 2px; content: ""; background: var(--cyan-400); }
.text-gradient {
  color: transparent; background: linear-gradient(115deg, var(--blue-300), var(--cyan-400));
  background-clip: text; -webkit-background-clip: text;
}
.muted { color: var(--slate-400); }
.tag {
  display: inline-flex; align-items: center; gap: .45rem; padding: .32rem .7rem;
  color: var(--blue-300); background: rgba(33, 150, 255, .1); border: 1px solid rgba(33, 150, 255, .24);
  border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.tag.gold { color: var(--gold-400); background: rgba(255, 201, 74, .1); border-color: rgba(255, 201, 74, .25); }
.tag.green { color: #6ce9aa; background: rgba(34, 201, 122, .1); border-color: rgba(34, 201, 122, .24); }

.topbar { background: #03101d; border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--slate-300); }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-items { display: flex; align-items: center; gap: 1.4rem; }
.topbar strong { color: var(--cyan-400); }
.header {
  position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid transparent;
  background: rgba(5, 11, 20, .83); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: border-color .2s, box-shadow .2s;
}
.header.scrolled { border-color: var(--line); box-shadow: 0 12px 42px rgba(0,0,0,.23); }
.nav { min-height: 78px; display: flex; align-items: center; gap: 1.6rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 218px; height: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: .2rem; margin-left: auto; list-style: none; }
.nav-link, .dropdown-toggle {
  display: flex; align-items: center; gap: .35rem; padding: .7rem .76rem;
  border: 0; background: transparent; color: var(--slate-200); font-size: .88rem; font-weight: 760;
  cursor: pointer; transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link[aria-current="page"], .dropdown-toggle:hover { color: var(--white); background: rgba(255,255,255,.05); border-radius: 9px; }
.chevron { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.nav-item { position: relative; }
.dropdown {
  position: absolute; left: 50%; top: calc(100% + 13px); width: min(680px, 86vw); padding: .8rem;
  opacity: 0; visibility: hidden; transform: translate(-50%, 10px); background: rgba(7, 17, 31, .98);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: .2s; list-style: none;
}
.dropdown.compact { width: 310px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-item.open .chevron { transform: rotate(225deg) translate(-1px,-1px); }
.dropdown-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .4rem; }
.dropdown a { display: flex; gap: .75rem; padding: .78rem; border-radius: 11px; transition: background .2s; }
.dropdown a:hover { background: rgba(33, 150, 255, .09); }
.menu-icon {
  display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px;
  color: var(--blue-300); background: rgba(33,150,255,.12); border-radius: 12px; font-weight: 900;
  overflow: hidden;
}
.menu-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.dropdown strong { display: block; font-size: .9rem; }
.dropdown small { display: block; margin-top: .15rem; color: var(--slate-400); line-height: 1.35; }
.nav-actions { display: flex; align-items: center; gap: .55rem; }
.menu-toggle {
  display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line);
  background: rgba(255,255,255,.04); border-radius: 12px; cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { width: 20px; height: 2px; margin: 4px auto; content: ""; display: block; background: var(--white); transition: .2s; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .55rem;
  padding: .76rem 1.2rem; border: 1px solid transparent; border-radius: 11px;
  font-size: .89rem; font-weight: 850; letter-spacing: -.01em; cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue-600), #0057d8); box-shadow: 0 12px 28px rgba(8,120,249,.26); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(8,120,249,.38); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.05); border-color: var(--line); }
.btn-secondary:hover { background: rgba(255,255,255,.09); }
.btn-gold { color: #181003; background: var(--gold-400); box-shadow: 0 12px 28px rgba(255,201,74,.18); }
.btn-sm { min-height: 42px; padding: .62rem .9rem; }
.btn-lg { min-height: 56px; padding: .9rem 1.45rem; }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; font-size: 1.15em; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }

.hero { min-height: 690px; display: flex; align-items: center; padding: clamp(4rem, 8vw, 7.6rem) 0; position: relative; overflow: hidden; }
.hero::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(115deg, rgba(5,11,20,.15), rgba(5,11,20,.92) 65%), radial-gradient(circle at 28% 30%, rgba(8,120,249,.25), transparent 28rem); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.hero-copy { max-width: 710px; }
.hero h1 { max-width: 750px; }
.hero-copy > p { max-width: 660px; margin: 1.35rem 0 0; font-size: clamp(1.04rem, 2vw, 1.22rem); }
.hero-note { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem; color: var(--slate-300); font-size: .86rem; }
.hero-note span { display: flex; align-items: center; gap: .45rem; }
.hero-note span::before { content: "✓"; color: var(--cyan-400); font-weight: 900; }
.infra-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.orbit { position: absolute; width: 420px; height: 420px; border: 1px solid rgba(124,200,255,.15); border-radius: 50%; animation: spin 25s linear infinite; }
.orbit::before, .orbit::after { position: absolute; width: 8px; height: 8px; content: ""; background: var(--cyan-400); border-radius: 50%; box-shadow: 0 0 22px var(--cyan-400); }
.orbit::before { top: 44px; left: 76px; }
.orbit::after { bottom: 62px; right: 54px; background: var(--gold-400); box-shadow: 0 0 22px var(--gold-400); }
.rack {
  position: relative; z-index: 2; width: min(360px, 90%); padding: 1rem; transform: perspective(900px) rotateY(-9deg) rotateX(2deg);
  background: linear-gradient(145deg, rgba(24,51,79,.95), rgba(6,16,28,.98)); border: 1px solid rgba(124,200,255,.22);
  border-radius: 24px; box-shadow: 36px 38px 80px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.08);
}
.rack-top { display: flex; justify-content: space-between; align-items: center; padding: .4rem .45rem 1rem; }
.rack-top strong { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.status-live { color: #72ecae; font-size: .72rem; font-weight: 800; }
.status-live::before { display: inline-block; width: 7px; height: 7px; margin-right: .4rem; content: ""; background: var(--green-500); border-radius: 50%; box-shadow: 0 0 10px var(--green-500); }
.server-unit { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: .8rem; min-height: 64px; margin: .55rem 0; padding: .75rem; background: rgba(1,8,15,.65); border: 1px solid var(--line); border-radius: 11px; }
.server-dots { display: flex; gap: 4px; }
.server-dots i { width: 6px; height: 6px; display: block; background: var(--green-500); border-radius: 50%; box-shadow: 0 0 8px rgba(34,201,122,.8); }
.server-dots i:nth-child(2) { background: var(--blue-500); }
.server-lines { display: grid; gap: 6px; }
.server-lines i { height: 5px; display: block; background: linear-gradient(90deg, rgba(124,200,255,.55), rgba(124,200,255,.05)); border-radius: 4px; }
.server-lines i:last-child { width: 68%; }
.server-unit b { color: var(--slate-400); font-size: .7rem; }
.visual-badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; background: rgba(8,24,42,.9); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.visual-badge.one { top: 16%; left: -3%; }
.visual-badge.two { right: -6%; bottom: 16%; }
.visual-badge span { display: grid; place-items: center; width: 34px; height: 34px; color: #06101d; background: var(--cyan-400); border-radius: 9px; font-weight: 900; }
.visual-badge b { display: block; font-size: .8rem; }
.visual-badge small { display: block; color: var(--slate-400); font-size: .69rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.trust-strip { position: relative; z-index: 5; margin-top: -48px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(8,23,40,.94); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.trust-item { padding: 1.25rem 1.35rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.02rem; }
.trust-item span { color: var(--slate-400); font-size: .78rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.product-card { position: relative; min-height: 270px; display: flex; flex-direction: column; padding: 1.45rem; overflow: hidden; background: linear-gradient(145deg, rgba(15,36,60,.92), rgba(7,18,32,.92)); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .22s, border-color .22s, box-shadow .22s; }
.product-card::after { position: absolute; width: 170px; height: 170px; right: -75px; top: -80px; content: ""; background: var(--glow, var(--blue-500)); opacity: .08; border-radius: 50%; filter: blur(12px); }
.product-card:hover { transform: translateY(-6px); border-color: rgba(124,200,255,.32); box-shadow: 0 22px 60px rgba(0,0,0,.24); }
.product-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.3rem; color: var(--blue-300); background: rgba(33,150,255,.1); border: 1px solid rgba(33,150,255,.18); border-radius: 13px; font-size: 1.15rem; font-weight: 900; }
.product-card h3 { margin-bottom: .55rem; }
.product-card p { font-size: .9rem; }
.product-card .card-link { margin-top: auto; color: var(--blue-300); font-size: .84rem; font-weight: 850; }
.product-card .card-link::after { content: " →"; }
.product-card .price-from { margin-top: .9rem; color: var(--slate-400); font-size: .76rem; }
.product-card .price-from strong { margin-left: .25rem; color: var(--white); font-size: 1.15rem; }

.page-hero { padding: clamp(4.5rem, 8vw, 7rem) 0 4.5rem; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 25%, rgba(8,120,249,.18), transparent 25rem); }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; color: var(--slate-400); font-size: .8rem; }
.breadcrumbs span { color: var(--slate-200); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 3rem; align-items: center; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.55rem, 5vw, 4.65rem); }
.page-hero-copy > p { max-width: 720px; margin-top: 1.1rem; font-size: 1.08rem; }
.hero-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.hero-spec { padding: 1rem; background: rgba(12,29,50,.72); border: 1px solid var(--line); border-radius: 13px; }
.hero-spec b { display: block; font-size: .92rem; }
.hero-spec small { color: var(--slate-400); }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 1.4rem; background: linear-gradient(155deg, rgba(15,36,60,.94), rgba(6,16,29,.98)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 36px rgba(0,0,0,.16); }
.plan-card.featured { border-color: rgba(33,150,255,.58); box-shadow: 0 20px 50px rgba(8,120,249,.16); }
.plan-ribbon { position: absolute; top: 0; right: 1.3rem; padding: .35rem .62rem; color: #03101d; background: var(--gold-400); border-radius: 0 0 8px 8px; font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.plan-head { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.plan-head h3 { margin-top: .85rem; }
.plan-head p { min-height: 46px; margin: .45rem 0 0; font-size: .82rem; }
.plan-price { display: flex; align-items: baseline; gap: .25rem; margin-top: 1rem; }
.plan-price small { color: var(--slate-400); }
.plan-price strong { font-size: 2.05rem; letter-spacing: -.06em; }
.plan-price span { color: var(--slate-400); font-size: .78rem; }
.plan-features { display: grid; gap: .65rem; margin: 1.15rem 0 1.35rem; list-style: none; }
.plan-features li { display: flex; align-items: flex-start; gap: .55rem; color: var(--slate-300); font-size: .86rem; }
.plan-features li::before { flex: 0 0 auto; content: "✓"; color: var(--cyan-400); font-weight: 900; }
.plan-card .btn { margin-top: auto; }
.coupon { margin: -.5rem 0 1rem; color: var(--gold-400); font-size: .73rem; font-weight: 800; text-align: center; }
.plan-note { max-width: 820px; margin: 1.4rem auto 0; color: var(--slate-400); font-size: .78rem; text-align: center; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.compare-table { width: 100%; min-width: 700px; border-collapse: collapse; background: rgba(8,23,40,.64); }
.compare-table th, .compare-table td { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th { color: var(--slate-400); background: rgba(255,255,255,.025); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.compare-table td { color: var(--slate-300); font-size: .88rem; }
.compare-table td:first-child { color: var(--white); font-weight: 800; }
.compare-table tr:last-child td { border-bottom: 0; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card { padding: 1.4rem; background: rgba(12,29,50,.68); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.feature-number { width: 35px; height: 35px; display: grid; place-items: center; margin-bottom: 1rem; color: var(--cyan-400); background: rgba(38,217,208,.08); border-radius: 10px; font-size: .78rem; font-weight: 900; }
.feature-card p { margin: .5rem 0 0; font-size: .87rem; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.check-list { display: grid; gap: .8rem; margin-top: 1.4rem; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--slate-300); }
.check-list li::before { width: 23px; height: 23px; display: grid; place-items: center; flex: 0 0 auto; content: "✓"; color: var(--cyan-400); background: rgba(38,217,208,.09); border-radius: 7px; font-size: .75rem; font-weight: 900; }
.security-panel { padding: clamp(1.3rem, 4vw, 2.3rem); background: linear-gradient(145deg, rgba(14,36,60,.92), rgba(7,18,31,.96)); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.security-ring { width: 180px; height: 180px; display: grid; place-items: center; margin: 0 auto 1.4rem; background: conic-gradient(var(--cyan-400) 0 82%, rgba(255,255,255,.06) 82%); border-radius: 50%; position: relative; }
.security-ring::before { position: absolute; inset: 12px; content: ""; background: var(--navy-850); border-radius: 50%; }
.security-ring span { position: relative; z-index: 2; text-align: center; font-size: .82rem; font-weight: 800; }
.security-ring b { display: block; color: var(--cyan-400); font-size: 2rem; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.mini-stat { padding: .8rem; background: rgba(0,0,0,.18); border-radius: 10px; text-align: center; }
.mini-stat b { display: block; font-size: .82rem; }
.mini-stat small { color: var(--slate-400); font-size: .66rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: steps; }
.step { position: relative; padding: 1.5rem; counter-increment: steps; border-top: 1px solid var(--line); }
.step::before { display: block; margin-bottom: .8rem; content: "0" counter(steps); color: var(--blue-300); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.step p { margin-top: .5rem; font-size: .88rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quote { padding: 1.5rem; background: rgba(12,29,50,.68); border: 1px solid var(--line); border-radius: var(--radius); }
.stars { color: var(--gold-400); letter-spacing: .15em; }
.quote blockquote { margin: .9rem 0 1.2rem; color: var(--slate-200); font-size: .94rem; }
.quote cite { color: var(--slate-400); font-size: .78rem; font-style: normal; }

.faq { display: grid; gap: .7rem; }
.faq details { background: rgba(12,29,50,.64); border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; list-style: none; cursor: pointer; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue-300); font-size: 1.25rem; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.25rem 1.25rem; margin: 0; font-size: .9rem; }

.cta { padding: clamp(2rem, 5vw, 3.3rem); overflow: hidden; position: relative; background: linear-gradient(120deg, #0b63d8, #06449d); border: 1px solid rgba(124,200,255,.35); border-radius: var(--radius-lg); box-shadow: 0 26px 70px rgba(8,120,249,.2); }
.cta::after { position: absolute; width: 330px; height: 330px; right: -110px; top: -150px; content: ""; background: rgba(38,217,208,.15); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta p { max-width: 650px; margin: .65rem 0 0; color: rgba(255,255,255,.78); }
.cta .btn { flex: 0 0 auto; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-card { display: flex; gap: 1rem; padding: 1.4rem; background: rgba(12,29,50,.7); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card .product-icon { flex: 0 0 46px; margin: 0; }
.contact-card p { margin: .4rem 0 .8rem; font-size: .87rem; }
.contact-card a { color: var(--blue-300); font-weight: 800; word-break: break-word; }
.legal { color: var(--slate-300); }
.legal h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; }
.legal h3 { margin: 1.8rem 0 .7rem; font-size: 1.18rem; }
.legal ul { display: grid; gap: .5rem; margin: 1rem 0 1rem 1.2rem; }
.legal a { color: var(--blue-300); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta { padding: 1rem 1.2rem; margin-bottom: 2rem; background: rgba(33,150,255,.08); border: 1px solid rgba(33,150,255,.18); border-radius: 12px; color: var(--slate-300); font-size: .86rem; }

.footer { padding-top: 4.5rem; border-top: 1px solid var(--line); background: #030913; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2.5rem; }
.footer-brand img { width: 220px; }
.footer-brand p { max-width: 350px; margin-top: 1.2rem; font-size: .86rem; }
.footer h3 { margin-bottom: 1.1rem; font-size: .9rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: .62rem; list-style: none; }
.footer-links a { color: var(--slate-400); font-size: .84rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding: 1.25rem 0; border-top: 1px solid var(--line); color: var(--slate-400); font-size: .78rem; }
.footer-bottom-links { display: flex; gap: 1rem; }

.whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 990; width: 56px; height: 56px;
  display: grid; place-items: center; color: white; background: #20b865; border: 4px solid rgba(255,255,255,.12);
  border-radius: 50%; box-shadow: 0 16px 40px rgba(0,0,0,.3); font-size: 1.35rem; font-weight: 900; transition: transform .2s;
}
.whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.cookie-banner { position: fixed; left: 16px; bottom: 16px; z-index: 1100; width: min(450px, calc(100% - 32px)); padding: 1.2rem; display: none; background: rgba(7,17,31,.98); border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
.cookie-banner.show { display: block; }
.cookie-banner h3 { font-size: 1rem; }
.cookie-banner p { margin: .4rem 0 .8rem; font-size: .78rem; }
.cookie-actions { display: flex; gap: .55rem; }
.notice { padding: 1rem 1.1rem; color: var(--slate-300); background: rgba(255,201,74,.07); border: 1px solid rgba(255,201,74,.18); border-radius: 12px; font-size: .84rem; }
.error-page { min-height: 66vh; display: grid; place-items: center; text-align: center; }
.error-code { color: transparent; background: linear-gradient(135deg, var(--blue-300), var(--cyan-400)); background-clip: text; -webkit-background-clip: text; font-size: clamp(6rem, 20vw, 13rem); font-weight: 950; line-height: .85; letter-spacing: -.09em; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .topbar-items span:nth-child(2) { display: none; }
  .nav-actions .btn-secondary { display: none; }
  .nav-links { gap: 0; }
  .nav-link, .dropdown-toggle { padding-inline: .55rem; font-size: .82rem; }
  .product-grid, .feature-grid, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  .nav { min-height: 70px; }
  .brand img { width: 184px; }
  .menu-toggle { display: block; }
  .nav-actions .btn-primary { display: none; }
  .nav-links {
    position: fixed; inset: 70px 0 0; width: 100%; height: calc(100vh - 70px); display: block; padding: 1rem;
    opacity: 0; visibility: hidden; transform: translateX(100%); background: rgba(5,11,20,.99); overflow-y: auto; transition: .25s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link, .dropdown-toggle { width: 100%; justify-content: space-between; padding: 1rem .75rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; text-align: left; }
  .dropdown { position: static; width: 100%; max-height: 0; padding: 0; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; overflow: hidden; transition: max-height .25s; }
  .dropdown.compact { width: 100%; }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { max-height: 0; transform: none; }
  .nav-item.open .dropdown, .nav-item.open:hover .dropdown { max-height: 720px; padding: .6rem; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-block: 5.5rem 7rem; }
  .hero-grid, .page-hero-grid, .two-col { grid-template-columns: 1fr; }
  .infra-visual { min-height: 410px; }
  .page-hero-grid { gap: 2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps, .testimonial-grid { grid-template-columns: 1fr; }
  .cta-inner { display: block; }
  .cta .btn { margin-top: 1.2rem; }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(calc(100% - 1.2rem), var(--max)); }
  .section { padding-block: 4rem; }
  h1 { font-size: clamp(2.4rem, 13vw, 3.55rem); }
  .hero-copy > p { font-size: 1rem; }
  .button-row .btn { width: 100%; }
  .hero-note { display: grid; gap: .45rem; }
  .infra-visual { min-height: 365px; }
  .orbit { width: 310px; height: 310px; }
  .visual-badge.one { top: 9%; left: 0; }
  .visual-badge.two { right: 0; bottom: 5%; }
  .visual-badge { padding: .65rem .7rem; }
  .product-grid, .feature-grid, .plan-grid, .contact-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 1rem; }
  .hero-specs { grid-template-columns: 1fr 1fr; }
  .mini-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { bottom: 10px; left: 10px; width: calc(100% - 20px); }
  .whatsapp { right: 14px; bottom: 14px; }
}

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

@media print {
  .topbar, .header, .whatsapp, .cookie-banner, .cta, .footer { display: none !important; }
  body { color: #111; background: #fff; }
  p, .legal { color: #222; }
  .page-hero { padding: 1rem 0; background: none; }
}
