﻿:root {
  --bg: #070d19;
  --bg-soft: #0f172a;
  --surface: rgba(15, 23, 42, 0.88);
  --surface-solid: #0f1b31;
  --line: rgba(148, 163, 184, 0.32);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --brand: #22d3ee;
  --brand-2: #14b8a6;
  --accent: #f59e0b;
  --radius: 20px;
  --shadow: 0 24px 46px rgba(2, 6, 23, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% -10%, #1f2937 0, transparent 45%),
    radial-gradient(circle at 92% 8%, #0e7490 0, transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.58;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1160px, 92vw); margin: 0 auto; position: relative; z-index: 2; }

.bg-motion {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-motion::before,
.bg-motion::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.22;
}

.bg-motion::before {
  background: #22d3ee;
  left: -10vw;
  top: 15vh;
  animation: floatA 26s ease-in-out infinite;
}

.bg-motion::after {
  background: #14b8a6;
  right: -12vw;
  top: -8vh;
  animation: floatB 30s ease-in-out infinite;
}

.grid-fx {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, black 25%, transparent 78%);
  animation: drift 34s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 13, 25, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #cbd5e1;
  font-weight: 600;
}

.main-nav > a,
.nav-dropdown > a { padding: 8px 2px; }
.main-nav a:hover,
.nav-dropdown:hover > a { color: #fff; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0a1427;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #dbeafe;
}

.dropdown-menu a:hover { background: rgba(34,211,238,.15); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.btn,
.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #05202b;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn { padding: 13px 22px; }
.btn-small { padding: 10px 16px; }
.btn:hover,
.btn-small:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(34,211,238,.3); }

.hero { padding: 72px 0 36px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: start;
}

.hero-copy,
.lead-card,
.panel,
.card,
.service-top,
.service-block,
.details,
.footer-call {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy { padding: 24px; }
.lead-card { padding: 22px; }

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
}

h1,h2,h3 {
  margin: 0;
  font-family: Outfit, "Segoe UI", sans-serif;
  line-height: 1.08;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 12px; max-width: 14ch; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin-bottom: 12px; }
h3 { font-size: 1.16rem; margin-bottom: 8px; }

.lead { margin: 0 0 14px; color: #cbd5e1; font-size: 1.1rem; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badges span {
  border: 1px solid rgba(34,211,238,.45);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(34,211,238,.08);
  color: #cffafe;
  font-weight: 700;
  font-size: .9rem;
}

.bundle-notice {
  border: 1px solid rgba(245,158,11,.45);
  border-radius: 12px;
  background: rgba(245,158,11,.08);
  padding: 10px 12px;
  margin-bottom: 14px;
  color: #fcd34d;
  font-weight: 700;
}

.metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.metrics article { border: 1px solid var(--line); border-radius: 12px; padding: 10px; background: rgba(15,27,49,.9); }
.metrics h3 { color: var(--brand); margin: 0; }
.metrics p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }

.hero-photo {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

form { display: grid; gap: 8px; }
label { font-weight: 700; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(148,163,184,.45);
  border-radius: 10px;
  background: #0a1427;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 2px solid transparent; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(34,211,238,.2); }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }

.services,.process,.faq { padding: 34px 0; }
.cards { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.card { padding: 16px; transition: transform .2s ease; }
.card:hover { transform: translateY(-3px); }
.card p { margin: 0; color: var(--muted); }
.card h3 a { text-decoration: underline; text-underline-offset: 3px; }

.process-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 14px; }
.panel { padding: 20px; }
.process ol { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.process li { border: 1px solid var(--line); border-radius: 10px; background: rgba(15,27,49,.9); padding: 10px 12px; }

.faq { max-width: 930px; }
details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 12px 14px;
  margin-bottom: 10px;
}
summary { cursor: pointer; font-weight: 700; }
details p { margin: 8px 0 0; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); background: #071021; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.05fr .95fr; gap: 20px; padding: 22px 0; }
.footer-about p { margin: 8px 0 0; color: var(--muted); }
.footer-menu { display: grid; gap: 6px; }
.footer-menu a { color: #cbd5e1; }
.footer-menu a:hover { color: #fff; }
.footer-call { padding: 14px; }
.footer-call h3 { margin: 0 0 8px; }

.service-page { padding: 38px 0 56px; }
.service-top { padding: 20px; margin-bottom: 14px; }
.service-top-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 14px; align-items: start; }
.service-theses { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.service-theses li { border: 1px solid var(--line); border-radius: 10px; background: rgba(15,27,49,.9); padding: 9px 11px; }
.service-form-wrap { border: 1px solid var(--line); border-radius: 14px; background: rgba(7,16,33,.85); padding: 12px; }
.service-block { padding: 20px; margin-bottom: 12px; }
.service-content { display: grid; grid-template-columns: 1.08fr .92fr; gap: 16px; align-items: center; }
.service-inline-visual { margin: 0; width: min(100%, 390px); justify-self: end; }
.service-inline-visual img { border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.service-block ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.service-block p { color: var(--muted); }

@keyframes floatA { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-18px)} }
@keyframes floatB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-26px,22px)} }
@keyframes drift { 0%{transform:translate3d(0,0,0)} 50%{transform:translate3d(8px,10px,0)} 100%{transform:translate3d(0,0,0)} }

@media (max-width: 1080px) {
  .hero-grid,
  .cards,
  .process-grid,
  .metrics,
  .service-top-grid,
  .service-content,
  .footer-grid { grid-template-columns: 1fr; }
  .service-inline-visual { justify-self: start; width: min(100%, 340px); }
}

@media (max-width: 760px) {
  .phone-link { width: 100%; }
  .nav-wrap { flex-wrap: wrap; }
  .main-nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .btn, .btn-small { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}


.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-weight: 700;
  white-space: nowrap;
}

.phone-link-footer {
  width: fit-content;
}
