@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --black: #0b0b0d;
  --black-2: #111116;
  --black-3: #17171d;
  --card: #1c1c22;
  --border: rgba(255, 255, 255, 0.08);
  --red: #e10600;
  --red-2: #ff3b30;
  --white: #f5f6f7;
  --muted: #b7b9c2;
  --glow: rgba(225, 6, 0, 0.25);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(225, 6, 0, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(225, 6, 0, 0.32), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(255, 59, 48, 0.22), transparent 40%),
    radial-gradient(circle at 40% 50%, rgba(225, 6, 0, 0.14), transparent 50%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 90px),
    var(--black);
  color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

button {
  font-family: inherit;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 11, 13, 0.6);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.28);
}

.logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(225, 6, 0, 0.45));
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--red), var(--red-2));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(225, 6, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--border);
  color: var(--white);
}

.section {
  padding: 90px 0;
}

.section--tight {
  padding: 60px 0;
}

.section--dark {
  background: var(--black-2);
}

.section--glow {
  position: relative;
  overflow: hidden;
}

.section--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(225, 6, 0, 0.35), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 59, 48, 0.18), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.section--glow > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffe2e0;
  text-shadow: 0 0 14px rgba(255, 59, 48, 0.65);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  color: var(--muted);
}

.hero {
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero.electric {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 59, 48, 0.38), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(225, 6, 0, 0.38), transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(255, 59, 48, 0.22), transparent 60%);
  background-size: 180% 180%;
  animation: electricShift 14s ease-in-out infinite;
  border-bottom: 1px solid var(--border);
}

.hero.electric::before {
  content: "";
  position: absolute;
  inset: -5% -5% 0 -5%;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 59, 48, 0.35), transparent 55%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><g fill="none" stroke="%23ff3b30" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" opacity="0.7"><path d="M40 120 L200 70 L260 140 L390 90 L480 160 L620 110 L760 190 L930 120 L1120 210"/><path d="M120 360 L260 300 L380 380 L520 330 L690 420 L860 360 L1040 440"/><path d="M20 220 L170 180 L260 250 L420 200 L560 280 L700 230 L860 320 L1030 260 L1180 340"/></g></svg>') center/cover;
  opacity: 0.55;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 22px rgba(225, 6, 0, 0.65));
  animation: electricPulse 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(225, 6, 0, 0.18), transparent 40%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 12px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content p {
  margin-top: 18px;
}

.hero-center {
  text-align: center;
}

.hero-center .trust-row {
  justify-content: center;
}

.hero-side {
  display: grid;
  gap: 20px;
}

.hero-brand {
  text-align: center;
}

.hero-brand .eyebrow {
  margin-bottom: 12px;
}

.hero-logo-box {
  width: fit-content;
  max-width: min(92vw, 520px);
  margin: 0 auto 22px;
  padding: 18px 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(8, 8, 10, 0.92), rgba(40, 8, 8, 0.75));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 59, 48, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-logo-icon {
  width: clamp(44px, 6vw, 84px);
  max-width: 84px;
  height: auto;
  display: block;
  margin: 0;
  filter: drop-shadow(0 8px 18px rgba(225, 6, 0, 0.45));
}

.hero-logo {
  width: clamp(180px, 30vw, 380px);
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0;
  filter: drop-shadow(0 12px 28px rgba(225, 6, 0, 0.55));
}

@keyframes electricPulse {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes electricShift {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 50% 100%;
  }
  50% {
    background-position: 40% 20%, 60% 40%, 50% 60%;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pill {
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-card {
  border-top: 3px solid var(--red);
}

strong {
  color: var(--white);
}

.form-card h2 {
  margin-bottom: 8px;
}

.microcopy {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

.nimble-form {
  margin-top: 20px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(225, 6, 0, 0.2);
  border: 1px solid rgba(255, 59, 48, 0.35);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.trust-card {
  background: linear-gradient(140deg, rgba(16, 16, 22, 0.92), rgba(40, 8, 8, 0.65));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.package-card {
  border-left: 3px solid var(--red);
}

.kicker {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}

.visual-panel {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(225, 6, 0, 0.45), rgba(11, 11, 13, 0.9)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400" viewBox="0 0 600 400"><defs><linearGradient id="g" x1="0" x2="1" y1="0" y2="1"><stop offset="0" stop-color="%23e10600" stop-opacity="0.4"/><stop offset="1" stop-color="%230b0b0d" stop-opacity="0.9"/></linearGradient></defs><rect width="600" height="400" fill="url(%23g)"/><g fill="none" stroke="%23ffffff" stroke-opacity="0.12" stroke-width="2"><circle cx="120" cy="120" r="60"/><circle cx="460" cy="240" r="80"/><path d="M80 320 L240 200 L420 320"/></g></svg>') center/cover;
  border: 1px solid var(--border);
}

.review-panel {
  background: #f6f7fb;
  border-radius: 20px;
  border: 1px solid rgba(225, 6, 0, 0.18);
  padding: 26px;
  color: #15161a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.review-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.review-source {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.review-panel h3 {
  color: #0f1115;
  margin-bottom: 6px;
}

.review-sub {
  color: #4b5563;
  font-size: 0.95rem;
}

.review-kebab {
  color: #9ca3af;
  font-size: 1.2rem;
  line-height: 1;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(140deg, #ff3b30, #b30000);
}

.review-name {
  font-weight: 600;
  color: #111827;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #6b7280;
}

.review-stars {
  color: #f4b400;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.review-text {
  color: #1f2937;
  line-height: 1.6;
}

.review-actions {
  display: flex;
  gap: 18px;
  color: #6b7280;
  font-size: 0.85rem;
}

.review-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-action svg {
  width: 16px;
  height: 16px;
}

.review-note {
  margin-top: 14px;
  color: #6b7280;
  font-size: 0.85rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(130deg, rgba(225, 6, 0, 0.25), rgba(11, 11, 13, 0.95));
}

.hero-image-wrap picture {
  display: block;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 59, 48, 0.25), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.stat-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.stat-list li {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.cta-slab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.section-title {
  max-width: 600px;
  margin-bottom: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.85rem;
}

.footer {
  padding: 50px 0 70px;
  border-top: 1px solid var(--border);
  background: var(--black-2);
}

.footer img {
  max-width: 200px;
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer p {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link svg path {
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--red);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(225, 6, 0, 0.22);
}

.social-link:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
}

.faq {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red-2);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 10px;
}


.page {
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.loaded .page {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 240px;
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.nav-open .btn-primary {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-image {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .cta-slab {
    padding: 28px;
  }

  .hero-image-wrap {
    border-radius: 16px;
  }

  .hero-image {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
