@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Semibold.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #091225;
  --muted: #405069;
  --brand: #0077ff;
  --brand-dark: #0052c9;
  --accent: #00aef0;
  --border: #d2ddf4;
  --ok: #0f766e;
  --error: #b91c1c;
  --shadow: 0 18px 45px rgba(6, 28, 74, 0.12);
  --shadow-soft: 0 10px 26px rgba(6, 28, 74, 0.08);
  --header-bg: rgba(244, 247, 251, 0.9);
  --footer-bg: #e9f0ff;
  --input-bg: #ffffff;
  --panel-bg: linear-gradient(170deg, #ffffff 0%, #f3f7ff 100%);
  --card-bg: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  --card-bg-soft: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  --alt-bg: linear-gradient(180deg, #eaf1ff 0%, #f7faff 100%);
  --theme-label: "\263E";
}

html[data-theme="dark"] {
  --bg: #000b24;
  --surface: #071735;
  --surface-soft: #0d2550;
  --text: #e8eefc;
  --muted: #afc1dc;
  --brand: #08aef7;
  --brand-dark: #8bdcff;
  --accent: #08aef7;
  --border: #17376f;
  --ok: #5ee3c8;
  --error: #ff9c9c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.24);
  --header-bg: rgba(0, 11, 36, 0.9);
  --footer-bg: #020e2a;
  --input-bg: #03122f;
  --panel-bg: linear-gradient(170deg, #071d43 0%, #020d28 100%);
  --card-bg: linear-gradient(180deg, #071b3e 0%, #03122f 100%);
  --card-bg-soft: linear-gradient(180deg, #08224d 0%, #041532 100%);
  --alt-bg: linear-gradient(180deg, #03112e 0%, #061a3c 100%);
  --theme-label: "\2600";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  position: relative;
  font-family: "Manrope", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(120, 160, 255, 0.2) 0%, transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, rgba(255, 177, 95, 0.12) 0%, transparent 55%),
    var(--bg);
  line-height: 1.72;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 174, 240, 0.12), transparent 18%),
    radial-gradient(circle at 10% 0%, rgba(0, 119, 255, 0.12), transparent 25%);
}
main,
.site-footer {
  position: relative;
  z-index: 1;
}
html[data-theme="dark"] body::before {
  background:
    radial-gradient(circle at 86% 18%, rgba(8, 174, 247, 0.18), transparent 20%),
    radial-gradient(circle at 18% 0%, rgba(0, 119, 255, 0.16), transparent 28%),
    linear-gradient(115deg, rgba(8, 174, 247, 0.08) 0 1px, transparent 1px 100%);
  background-size: auto, auto, 22px 22px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); }
p, li { max-width: 64ch; }
p { margin: 0 0 18px; }
ul, ol { margin: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; top: 12px; z-index: 1000; }

.container { width: min(1080px, 90vw); margin: 0 auto; }
.section { padding: 60px 0; }
.section.alt {
  background: var(--alt-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 28px; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 58ch; }
.section-intro {
  max-width: 680px;
  margin: -4px 0 32px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 174, 240, 0.14);
  color: var(--brand-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.nav-list a,
.footer-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 4px;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -210px;
  top: 40px;
  width: 520px;
  height: 520px;
  border: 72px solid rgba(0, 174, 240, 0.18);
  border-right-color: rgba(0, 174, 240, 0.72);
  border-radius: 50%;
  transform: rotate(-24deg);
  opacity: .85;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 35%;
  bottom: 12%;
  width: 520px;
  height: 180px;
  background-image: radial-gradient(circle, rgba(0, 174, 240, 0.36) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, transparent);
  transform: skewY(-12deg);
  opacity: .28;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-media {
  position: relative;
  margin: 0;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(0, 174, 240, 0.18);
  border-top-color: rgba(0, 174, 240, 0.7);
  border-radius: 50%;
  pointer-events: none;
}
.hero-panel {
  position: absolute;
  left: -18px;
  top: -18px;
  width: min(320px, 82%);
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 18, 37, 0.96) 0%, rgba(16, 31, 61, 0.96) 100%);
  color: #f8fbff;
  box-shadow: 0 24px 50px rgba(7, 17, 38, 0.28);
  z-index: 1;
}
.hero-panel-header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.panel-kicker {
  color: #8bb6ff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-checklist {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.hero-checklist li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .95rem;
  color: #d9e7ff;
}
.hero-checklist span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}
.hero-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-score div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.hero-score strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.6rem;
  color: #fff;
}
.hero-score span {
  color: #c9d9fb;
  font-size: .88rem;
}
.hero-points {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.cards { display: grid; gap: 24px; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #b9cdf8;
}
.card h3 { font-size: 1.18rem; }
.card p:last-child,
.stat p:last-child,
.contact-details-card p:last-child,
.policy-card p:last-child { margin-bottom: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.stat {
  background: var(--card-bg-soft);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
}
.stat-number {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.price-card { position: relative; }
.price {
  margin: 8px 0 12px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-dark);
}
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #dbeafe;
  color: #1e40af;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}
.featured {
  border-color: #7ea9ff;
  box-shadow: 0 18px 44px rgba(0, 70, 240, 0.18);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(0, 87, 255, 0.08) 0%, transparent 70%),
    var(--card-bg-soft);
}
.price-card ul { padding-left: 18px; margin: 10px 0 0; }
.pricing-btn { margin-top: 22px; width: 100%; }
.service-split,
.process-grid {
  align-items: stretch;
}
.service-card { position: relative; }
.service-card h3 {
  color: var(--brand-dark);
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  letter-spacing: -0.015em;
}
.service-card h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--accent);
}
.service-list,
.process-list {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}
.service-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.service-meta div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.service-meta strong {
  display: block;
  margin-bottom: 6px;
}
.service-meta span {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}
.package-group + .package-group {
  margin-top: 56px;
}
.package-group-head {
  margin-bottom: 24px;
}
.package-group-head h3 {
  margin-bottom: 8px;
}
.package-group-head p {
  color: var(--muted);
}
.pricing-guide {
  margin-bottom: 28px;
}
.pricing-note {
  min-height: 100%;
}
.price-range {
  margin: 8px 0 18px;
  color: var(--brand-dark);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
}
.pricing-compare {
  display: grid;
  gap: 14px;
}
.pricing-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.pricing-row strong {
  line-height: 1.5;
}
.pricing-row span {
  color: var(--muted);
  line-height: 1.7;
}
.about-section {
  padding-top: 96px;
}
.about-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: 48px;
  align-items: center;
}
.about-copy {
  max-width: 660px;
}
.about-photo {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-points { padding-left: 20px; margin: 24px 0; }

.contact-details-card {
  margin: 22px 0 20px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  line-height: 1.6;
}
.contact-details-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.contact-form {
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
label { display: block; font-weight: 600; margin-bottom: 8px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: var(--input-bg);
  min-height: 44px;
  padding: 12px 14px;
}
textarea { min-height: 120px; resize: vertical; }
.error { color: var(--error); min-height: 1.1em; display: block; }
.form-status { min-height: 1.3em; margin-top: 10px; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--error); }
.hp { position: absolute; left: -9999px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid var(--brand);
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #0bbdf8 100%);
  transition: .2s ease;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 87, 255, 0.25);
}
.btn:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0098d8 100%);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--surface);
  color: var(--brand-dark);
  border-color: var(--border);
  box-shadow: none;
}
.btn-ghost:hover {
  color: var(--brand-dark);
  background: var(--surface-soft);
}
.btn-sm { min-height: 40px; padding: 8px 12px; font-size: .92rem; }
.theme-toggle {
  min-width: 44px;
  padding: 0 14px;
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
  box-shadow: none;
}
.theme-toggle::before { content: var(--theme-label); }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.section-cta { margin-top: 34px; }
.microcopy { margin: 14px 0 0; color: var(--muted); font-size: .95rem; line-height: 1.75; }

.privacy-panel {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(2, 10, 30, 0.35);
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.privacy-panel p { margin: 0; font-weight: 600; }
.privacy-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #e2e8f0;
  font-size: 0.95rem;
}
.privacy-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 500;
}
.privacy-actions { display: flex; align-items: center; gap: 8px; }
.privacy-panel .btn-ghost {
  color: #fff;
  border-color: #93c5fd;
  background: transparent;
}
.privacy-panel .btn-ghost:hover { background: rgba(147, 197, 253, 0.2); }
.privacy-actions a { color: #bfdbfe; font-weight: 600; }

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.footer-wrap p {
  margin: 0;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links a:hover { text-decoration: underline; }

.policy { padding: 72px 0; }
.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.policy-meta {
  color: var(--muted);
  margin-bottom: 18px;
}
.policy h2 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.policy ul { margin-top: 8px; }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 130;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.56);
}
.modal-dialog {
  position: relative;
  margin: 8vh auto;
  width: min(560px, 92vw);
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
.selected-package {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--brand-dark);
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .contact-wrap,
  .cards-2,
  .cards-3,
  .stats { grid-template-columns: 1fr; }
  .nav-list { display: none; }
  .nav-actions { margin-left: auto; }
  .section { padding: 78px 0; }
  .hero-media { padding-top: 180px; }
  .hero-panel {
    left: 12px;
    right: 12px;
    top: 12px;
    width: auto;
  }
  .privacy-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .privacy-options,
  .privacy-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .service-meta {
    grid-template-columns: 1fr;
  }
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .about-wrap {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 420px;
  }
  .footer-wrap,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
