:root {
  --bg: #050b15;
  --bg-2: #09172a;
  --text: #111827;
  --muted: #5b6472;
  --card: #ffffff;
  --accent: #1479ff;
  --accent-bright: #20c2ff;
  --line: #e5e7eb;
  --light: #f8fafc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(5, 11, 21, 0.96);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32, 194, 255, 0.14);
}

.nav {
  min-height: 104px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  width: 210px;
}

.brand img {
  width: 210px;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 16px rgba(32,194,255,0.24));
}

.main-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a,
.site-footer a {
  color: white;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1177ff, #1479ff);
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(20, 121, 255, 0.24);
}

.nav-button {
  padding: 12px 20px;
  white-space: nowrap;
}

.nav-button::before {
  content: "✉";
  margin-right: 10px;
}

.button:hover { filter: brightness(1.08); }

.hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(29, 155, 240, 0.24), transparent 30%),
    radial-gradient(circle at 30% 84%, rgba(37, 99, 235, 0.14), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--bg-2) 54%, #040914);
  color: white;
  padding: 58px 0 58px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1.02fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  color: var(--accent-bright);
  font-size: 0.9rem;
}

.eyebrow.dark { color: #0f7fe8; }

h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.35rem, 4.65vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.accent-line {
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-bright);
  margin: 28px 0 22px;
}

.lead {
  max-width: 640px;
  color: #d7e4f5;
  font-size: 1.2rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.email-link {
  color: white;
  text-decoration: none;
  font-size: 1.08rem;
}

.email-link::before {
  content: "✉";
  color: var(--accent-bright);
  margin-right: 10px;
}

.hero-image-wrap {
  display: grid;
  place-items: center;
  min-height: 500px;
}

.hero-image-wrap img {
  width: min(680px, 100%);
  height: auto;
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 34px 80px rgba(20,121,255,0.28));
}

.hero-service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.mini-card {
  background: rgba(13, 28, 49, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 14px;
  padding: 22px;
  min-height: 226px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.mini-card .icon {
  color: #1479ff;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.mini-card h3 {
  font-size: 1.12rem;
  line-height: 1.15;
  margin: 0 0 10px;
}

.mini-card p {
  color: #d7e4f5;
  margin: 0;
}

.section { padding: 72px 0; }

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin: 8px 0 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }

.card,
.quote-form,
.checklist {
  background: var(--card);
  color: var(--text);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--line);
}

.card p,
.split p,
.quote-section p,
.site-footer p {
  color: var(--muted);
}

.details-section { background: #f8fafc; }
.split { background: white; }
.why-section { background: #f1f7ff; }
.quote-section { background: #eef6ff; }

.split-grid,
.quote-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.checklist p {
  margin: 10px 0;
  color: var(--text);
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}

textarea { resize: vertical; }

.form-message { font-size: 0.92rem; }

.direct-email a {
  color: #0f5bd8;
  font-weight: 700;
}

.site-footer {
  background: var(--bg);
  color: white;
  padding: 32px 0;
}

.footer-grid { grid-template-columns: 1fr 1fr; }

.site-footer p {
  color: #cbd5e1;
  margin: 4px 0;
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 170px 1fr auto;
  }

  .brand,
  .brand img {
    width: 165px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: auto;
    margin-top: 20px;
  }

  .hero-image-wrap img {
    width: min(650px, 100%);
  }

  .hero-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards.three {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.35rem, 7vw, 4rem);
  }
}

@media (max-width: 840px) {
  .nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
    min-height: auto;
  }

  .brand,
  .brand img {
    width: 175px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: static;
  }

  .nav-button {
    display: none;
  }

  .hero {
    padding: 42px 0;
  }

  h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
    letter-spacing: -0.04em;
  }

  h1 span {
    white-space: normal;
    margin-bottom: 0.08em;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-image-wrap img {
    width: 100%;
    border-radius: 12px;
  }

  .hero-service-cards,
  .cards,
  .split-grid,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: auto;
  }

  .section {
    padding: 54px 0;
  }
}


.hidden {
  display: none;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(29, 155, 240, 0.24), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  color: white;
  padding: 24px;
}

.success-card {
  width: min(560px, 100%);
  background: rgba(13, 28, 49, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 34px;
  text-align: center;
}

.success-card img {
  width: 140px;
  margin-bottom: 12px;
  mix-blend-mode: screen;
}

.success-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
}

.success-card p {
  color: #d7e4f5;
  margin-bottom: 24px;
}
