/* Base */
:root {
  --bg: #0e1116;
  --bg-soft: #151a22;
  --bg-alt: #1d2430;
  --text: #f5f7fb;
  --muted: #b6c1d4;
  --brand: #5eead4;
  --brand-strong: #2dd4bf;
  --accent: #f59e0b;
  --border: #2a3342;
  --card: #121722;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section.highlight {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(245, 158, 11, 0.12));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--brand);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #081014;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--text);
}

.btn.dark {
  background: #0a0f14;
  color: var(--text);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 22, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

body.nav-open .nav-links {
  display: flex;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero .hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero > div {
    flex: 1;
  }
}

/* Cards and lists */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(94, 234, 212, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.4);
}

@media (min-width: 860px) {
  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(50% - 18px);
  }
}

/* Feature blocks */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item svg {
  flex-shrink: 0;
}

/* Statistics */
.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

@media (min-width: 860px) {
  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #0b1016;
  border-left: 3px solid var(--brand);
  padding: 24px;
  border-radius: var(--radius);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  position: relative;
}

.comparison .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #2b1500;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

@media (min-width: 860px) {
  .comparison {
    flex-direction: row;
  }
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item .answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

/* Service cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid .card {
    flex: 1 1 calc(33.333% - 18px);
  }
}

.price {
  font-size: 22px;
  color: var(--brand);
  font-weight: 700;
  margin-top: 12px;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .contact-grid {
    flex-direction: row;
  }
}

/* Footer */
footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 860px) {
  .footer-links {
    flex-direction: row;
    gap: 24px;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  width: min(960px, 92%);
  display: none;
  z-index: 200;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 600px) {
  .cookie-actions {
    flex-direction: row;
  }
}

/* Cookie modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 16, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 560px;
  width: 100%;
}

.modal-card label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.modal-card label:last-child {
  border-bottom: none;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Utility */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.3);
  color: var(--brand);
  font-size: 13px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 860px) {
  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-col > * {
    flex: 1;
  }
}
