﻿:root {
  --bg: #030816;
  --bg-soft: #071538;
  --panel: rgba(9, 25, 64, 0.8);
  --line: rgba(120, 183, 255, 0.35);
  --text: #eaf2ff;
  --muted: #afc4e8;
  --brand: #31a4ff;
  --brand-2: #7ce6ff;
  --accent: #2748ff;
  --success: #7bffcb;
  --shadow: 0 18px 55px rgba(0, 8, 30, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(80, 147, 255, 0.35), transparent 45%),
    radial-gradient(circle at 85% 12%, rgba(73, 79, 255, 0.28), transparent 40%),
    linear-gradient(160deg, #020611 5%, #030a1f 38%, #04113f 100%);
  min-height: 100vh;
}

.lightning-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background:
    linear-gradient(115deg, transparent 42%, rgba(133, 200, 255, 0.45) 50%, transparent 58%),
    linear-gradient(246deg, transparent 32%, rgba(80, 129, 255, 0.35) 42%, transparent 52%);
  mix-blend-mode: screen;
  animation: lightningPulse 9s ease-in-out infinite;
}

@keyframes lightningPulse {
  0%, 75%, 100% {
    opacity: 0.1;
  }
  78% {
    opacity: 0.18;
  }
  79% {
    opacity: 0.12;
  }
  82% {
    opacity: 0.2;
  }
}

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(40px);
  z-index: -2;
  opacity: 0.35;
}

.orb-one {
  left: -100px;
  top: 12%;
  background: #325dff;
}

.orb-two {
  right: -80px;
  bottom: 12%;
  background: #1fb8ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(3, 12, 30, 0.72);
  border-bottom: 1px solid rgba(136, 194, 255, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(136, 194, 255, 0.5);
  box-shadow: 0 0 18px rgba(67, 148, 255, 0.45);
  background: #04153d;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy small {
  font-size: 0.72rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.call-btn {
  border: 1px solid var(--line);
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  color: white;
  background: rgba(31, 129, 255, 0.22);
}

.hero {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: center;
}

.kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  font-size: clamp(2.4rem, 7vw, 5rem);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

h1 span {
  color: var(--brand-2);
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.85rem 1.2rem;
  border-radius: 0.8rem;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #021024;
  background: linear-gradient(120deg, var(--brand-2), var(--brand));
  box-shadow: 0 12px 28px rgba(51, 164, 255, 0.35);
}

.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: rgba(26, 72, 146, 0.24);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(18, 43, 102, 0.35);
  padding: 0.75rem;
  font-size: 0.85rem;
  color: #dceaff;
}

.hero-card {
  position: relative;
  background: linear-gradient(165deg, rgba(14, 42, 98, 0.88), rgba(6, 17, 44, 0.85));
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.hero-card-content {
  padding: 1.1rem;
}

.hero-card h2 {
  font-size: 1.35rem;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.metric-grid {
  display: grid;
  gap: 0.85rem;
}

.metric-grid article {
  border: 1px solid rgba(136, 194, 255, 0.22);
  border-radius: 0.8rem;
  background: rgba(3, 15, 37, 0.65);
  padding: 0.8rem;
}

.metric-grid strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
  color: var(--brand-2);
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.95rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  margin: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.info-card,
.profile,
.step,
.lead-form,
.book-copy,
.faq-list,
.gallery-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.info-card,
.profile,
.step {
  padding: 1rem;
}

.info-card h3,
.profile h3,
.step h3 {
  margin-bottom: 0.5rem;
}

.info-card p,
.profile p,
.step p {
  color: var(--muted);
  margin: 0;
}

.profile .role {
  color: var(--brand-2);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-item.gallery-large {
  grid-column: span 8;
}

.gallery-item.gallery-large img {
  height: 300px;
}

.process .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #031028;
  background: linear-gradient(120deg, var(--brand-2), var(--brand));
}

.faq-list {
  padding: 0.5rem 1rem;
}

details {
  border-bottom: 1px solid rgba(136, 194, 255, 0.22);
  padding: 0.9rem 0;
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--muted);
  margin: 0.65rem 0 0;
}

.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.book-copy,
.lead-form {
  padding: 1.1rem;
}

.book-copy ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.book-copy a {
  color: var(--brand-2);
}

.lead-form {
  display: grid;
  gap: 0.85rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(136, 194, 255, 0.35);
  background: rgba(3, 15, 37, 0.8);
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.7rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(124, 230, 255, 0.6);
  border-color: transparent;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-note {
  margin: 0;
  min-height: 1.4rem;
  color: var(--success);
  font-weight: 650;
}

.tiny-note {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  border-top: 1px solid rgba(136, 194, 255, 0.2);
  background: rgba(2, 8, 21, 0.75);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

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

.footer-wrap div {
  display: flex;
  gap: 1rem;
  color: var(--brand-2);
  font-weight: 600;
}

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

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

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

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

  .card-grid.three,
  .process .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item.gallery-large {
    grid-column: span 6;
  }

  .gallery-item.gallery-large img {
    height: 220px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .trust-list,
  .card-grid.three,
  .process .steps,
  .two-col {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.gallery-large {
    grid-column: span 12;
  }

  .brand-copy small {
    display: none;
  }

  .call-btn {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }
}
