:root {
  --bg: #05070f;
  --surface: #0d1424;
  --surface-2: #0f1a2e;
  --primary: #2d8cff;
  --primary-2: #1ad1ff;
  --accent: #ffb84d;
  --text: #f6f8ff;
  --muted: #b2bfd6;
  --border: rgba(255, 255, 255, 0.08);
  --glow: 0 20px 60px rgba(45, 140, 255, 0.2);
  --radius: 20px;
  --content-max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #0f1c36 0%, #05070f 50%, #04050a 100%);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  background-image: radial-gradient(circle at 10% 20%, rgba(45, 140, 255, 0.15), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(26, 209, 255, 0.12), transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(255, 184, 77, 0.1), transparent 40%);
}

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

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(26, 209, 255, 0.7);
  outline-offset: 3px;
  border-radius: 999px;
}

h1:focus-visible,
h2:focus-visible,
h3:focus-visible {
  outline: 3px solid rgba(26, 209, 255, 0.7);
  outline-offset: 6px;
  border-radius: 14px;
}

h1,
h2,
h3 {
  font-family: "Chakra Petch", "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.8rem;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

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

ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

li {
  margin-bottom: 0.4rem;
}

.hero {
  padding: 1.8rem 6vw 3.6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 20, 36, 0.92) 0%, rgba(5, 7, 15, 0.2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(5, 7, 15, 0.65);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 15% -20% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(45, 140, 255, 0.35) 0%, transparent 70%);
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid var(--border);
}

.nav,
.hero-grid,
.section-title,
.feature-grid,
.split,
.pricing-grid,
.audience-grid,
.pillars,
.gallery-grid,
.doc-grid,
.testimonial-slider,
.closing-card,
.footer {
  max-width: var(--content-max);
  margin-inline: auto;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

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

.logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--glow);
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

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

.hero-copy {
  max-width: 640px;
}

.hero-subhead {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text);
}

.support {
  color: var(--muted);
}

.strong-note {
  color: var(--text);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0;
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: #04101f;
}

.btn-secondary {
  background: var(--surface);
  border-color: rgba(45, 140, 255, 0.5);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.7rem 1.2rem;
}

.btn-phone {
  border-color: rgba(26, 209, 255, 0.6);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(160deg, rgba(13, 20, 36, 0.9), rgba(16, 27, 47, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 30px 80px rgba(5, 7, 15, 0.6);
  animation: floatIn 0.9s ease forwards;
}

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

.section {
  padding: 3.5rem 6vw;
}

.section-title {
  max-width: 720px;
  margin-bottom: 2rem;
}

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

.feature-card,
.pricing-card,
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card--strong {
  background: linear-gradient(160deg, rgba(26, 209, 255, 0.12), rgba(13, 20, 36, 0.95));
  border-color: rgba(26, 209, 255, 0.4);
  box-shadow: 0 24px 60px rgba(5, 7, 15, 0.5);
  position: relative;
  overflow: hidden;
}

.feature-card--strong::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(45, 140, 255, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.feature-card:hover,
.pricing-card:hover,
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 140, 255, 0.4);
}

.highlight {
  background: linear-gradient(120deg, rgba(45, 140, 255, 0.15), rgba(13, 20, 36, 0.9));
}

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

.callout {
  background: rgba(10, 16, 29, 0.6);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 14px;
}

.pricing-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.price-box {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(5, 7, 15, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
}

.price-box p {
  margin: 0 0 0.4rem;
  color: var(--text);
}

.muted-box {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(13, 20, 36, 0.7);
  border: 1px solid var(--border);
}

.muted-box h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: var(--text);
}

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

.faq-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.6rem;
}

.faq-card h3 {
  margin-top: 0;
}

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

.faq-item {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-weight: 800;
  color: rgba(26, 209, 255, 0.9);
}

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

.faq-answer {
  padding: 0 1.2rem 1.2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  margin-top: 1.2rem;
  position: relative;
  text-align: left;
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  width: 100%;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field span {
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(13, 20, 36, 0.7);
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}

.form-field input {
  min-height: 44px;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.form-consent input {
  margin-top: 0.2rem;
}

.form-consent a {
  color: rgba(26, 209, 255, 0.9);
}

.form-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.form-hint {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .faq-accordion {
    grid-template-columns: 1fr;
  }

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

.pillars {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.pillars li {
  padding: 1rem 1.2rem;
  background: var(--surface-2);
  border-radius: 14px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.gallery {
  position: relative;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto 0;
  height: 200px;
  background: linear-gradient(120deg, rgba(45, 140, 255, 0.18), transparent);
  filter: blur(30px);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(5, 7, 15, 0.6);
  transform: translateY(0);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 140, 255, 0.5);
}

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

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

.doc-card {
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(13, 20, 36, 0.7);
  display: grid;
  gap: 0.4rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.doc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 209, 255, 0.5);
}

.doc-title {
  font-weight: 600;
  color: var(--text);
}

.doc-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--text);
  font-weight: 600;
}

.testimonials {
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 25px 70px rgba(5, 7, 15, 0.55);
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  animation: slideQuotes 28s ease-in-out infinite;
}

.testimonial-card {
  padding: 2.2rem 2rem;
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 1.2rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--text);
}

.testimonial-meta {
  font-weight: 600;
  color: var(--muted);
}

@keyframes slideQuotes {
  0%,
  20% {
    transform: translateX(0%);
  }
  25%,
  45% {
    transform: translateX(-100%);
  }
  50%,
  70% {
    transform: translateX(-200%);
  }
  75%,
  95% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-300%);
  }
}

.closing {
  padding-bottom: 5rem;
}

.closing-card {
  background: linear-gradient(140deg, rgba(26, 209, 255, 0.2), rgba(13, 20, 36, 0.9));
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(26, 209, 255, 0.3);
  text-align: center;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 6vw 3rem;
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 15, 0.9);
}

.footer-map {
  display: grid;
  gap: 0.8rem;
}

.footer-map iframe {
  width: min(240px, 100%);
  height: 160px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(5, 7, 15, 0.55);
}

.footer-map-cta {
  justify-self: start;
}

.footer p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  text-align: right;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 1rem;
  background: rgba(5, 7, 15, 0.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.cookie-banner__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-banner__copy strong {
  color: var(--text);
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner__copy a {
  color: rgba(26, 209, 255, 0.9);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 860px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
  }

  .brand {
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .nav-actions .btn {
    flex: 1 1 calc(50% - 0.6rem);
    padding: 0.75rem 1rem;
    font-size: 0.98rem;
    min-height: 44px;
    text-align: center;
  }

  .nav-actions .btn-phone {
    flex-basis: 100%;
  }

  .footer {
    flex-direction: column;
    text-align: left;
  }

  .footer-links {
    text-align: left;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .closing-card {
    padding: 1.6rem;
  }
}
