:root {
  --bg: #05070d;
  --bg-2: #070b14;
  --bg-elevated: #0b1220;
  --card: rgba(10, 16, 28, 0.78);
  --card-solid: #0c1322;
  --line: rgba(56, 150, 255, 0.22);
  --line-strong: rgba(70, 170, 255, 0.45);
  --blue: #1e8fff;
  --blue-2: #3aa0ff;
  --blue-deep: #0b6ad6;
  --glow: rgba(30, 143, 255, 0.45);
  --text: #f4f7fb;
  --muted: #9aa8bb;
  --muted-2: #7b8a9e;
  --white: #ffffff;
  --success: #3dd68c;
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 78px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip-link:focus {
  left: 12px;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled {
  background: rgba(5, 7, 13, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  mix-blend-mode: lighten;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a,
.nav-drop > button {
  color: #d7deea;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav a:hover,
.nav a.active,
.nav-drop > button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-drop {
  position: relative;
}

.nav-drop svg {
  width: 12px;
  height: 12px;
}

.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  background: #0c1424;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  display: grid;
}

.nav-drop-menu a {
  padding: 10px 12px;
}

.header-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 143, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(30, 143, 255, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--blue-2);
  background: rgba(30, 143, 255, 0.08);
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  background:
    radial-gradient(ellipse 70% 80% at 78% 42%, rgba(20, 110, 255, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 40% at 12% 10%, rgba(0, 160, 255, 0.08), transparent 50%),
    url("../images/hex-mesh.png") center 20% / cover no-repeat,
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.72) 0%, rgba(5, 7, 13, 0.28) 55%, rgba(5, 7, 13, 0.55) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 .line-2 {
  color: var(--blue-2);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c9d4e3;
  font-size: 0.92rem;
  font-weight: 600;
}

.icon-bubble {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(30, 143, 255, 0.12);
  color: var(--blue-2);
  flex-shrink: 0;
}

.icon-bubble svg {
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 40, 90, 0.35);
}

/* Stats */
.stats {
  padding: 8px 0 56px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: linear-gradient(180deg, rgba(12, 19, 34, 0.95), rgba(8, 13, 24, 0.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 12px;
}

.stat {
  text-align: center;
  padding: 8px 10px;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  margin-top: 8px;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Sections */
.section {
  padding: 36px 0 72px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2,
.page-hero h1,
.block-title {
  font-family: var(--display);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-head p,
.muted {
  color: var(--muted);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
}

.service-body {
  padding: 26px 26px 8px;
}

.service-card h3 {
  margin: 12px 0 10px;
  font-size: 1.28rem;
  font-family: var(--display);
}

.service-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--blue-2);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-media {
  margin: 18px 26px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 240px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cta {
  padding: 20px 26px 26px;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-card {
  padding: 26px 22px 18px;
}

.price-card h3 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-list span {
  color: var(--muted);
}

.price-list strong {
  color: var(--blue-2);
  white-space: nowrap;
}

.price-note {
  text-align: center;
  color: var(--muted-2);
  margin: 22px 0 0;
  font-size: 0.92rem;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 22px 16px;
  position: relative;
}

.process-step h3 {
  margin: 12px 0 6px;
  font-family: var(--display);
}

.process-step p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

.process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(30, 143, 255, 0.12);
  color: var(--blue-2);
  border: 1px solid var(--line);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 0;
  border-top: 2px dashed rgba(58, 160, 255, 0.35);
}

/* Split */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.info-card {
  padding: 28px;
}

.info-card h3 {
  margin: 8px 0 14px;
  font-family: var(--display);
}

.address {
  font-style: normal;
  line-height: 1.8;
  color: #d5deea;
}

.tip {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(30, 143, 255, 0.12);
  border: 1px solid var(--line);
  color: #d7ebff;
  font-weight: 600;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li + li {
  margin-top: 8px;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--white);
  padding: 16px 18px;
  font-weight: 650;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

/* Page hero */
.page-hero {
  padding: 56px 0 28px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(20, 110, 255, 0.16), transparent 55%),
    url("../images/hex-mesh.png") center / cover no-repeat,
    var(--bg);
}

.page-hero p {
  color: var(--muted);
  max-width: 62ch;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.about-grid img,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 320px;
}

.prose h2,
.prose h3 {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.prose p {
  color: #c5d0de;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.value-card {
  padding: 22px;
}

.value-card h3 {
  margin: 10px 0 8px;
  font-family: var(--display);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
  position: relative;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  background: #070c16;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(30, 143, 255, 0.15);
}

.hours {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours dt {
  color: var(--muted);
  font-weight: 500;
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 14px 0;
}

.contact-detail a {
  color: var(--blue-2);
  font-weight: 650;
}

.form-success {
  display: none;
  padding: 16px;
  border-radius: 12px;
  background: rgba(61, 214, 140, 0.12);
  border: 1px solid rgba(61, 214, 140, 0.35);
  color: #d8ffe9;
}

.form-success.show,
.form-error.show {
  display: block;
}

.form-error {
  display: none;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 90, 90, 0.12);
  border: 1px solid rgba(255, 90, 90, 0.35);
  color: #ffd6d6;
}

.ship-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(30, 143, 255, 0.12);
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 28px;
  max-height: 360px;
}

.media-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 18px;
  background: #060910;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-brand img {
  height: 56px;
  mix-blend-mode: lighten;
  margin-bottom: 12px;
}

.footer-brand p,
.site-footer a,
.site-footer li {
  color: var(--muted);
}

.site-footer h4 {
  margin: 8px 0 12px;
  font-family: var(--display);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.footer-bottom nav {
  display: flex;
  gap: 16px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-q {
  display: block;
  margin: 6px 0 8px;
  color: var(--blue-2);
  font-weight: 650;
}

.logo,
.header-cta {
  flex-shrink: 0;
}

@media (max-width: 1120px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0a101c;
    border-bottom: 1px solid var(--line);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .nav-drop-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0 12px;
  }

  .nav-drop.open .nav-drop-menu {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .price-grid,
  .service-grid,
  .split-2,
  .ship-options,
  .values,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar,
  .process {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-bar,
  .process {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
