* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0f172a;
  background: #f8fafc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #0f172a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 10px;
  z-index: 999;
}

header {
  background: #0f172a;
  color: #fff;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid #38bdf8;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 18px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 16px 0 24px;
}

.nav-links a {
  color: #e2e8f0;
  font-weight: 500;
}

.nav-links.active {
  display: flex;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #38bdf8;
  color: #0f172a;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
}

.cta.secondary {
  background: transparent;
  border: 1px solid #38bdf8;
  color: #38bdf8;
}

.hero {
  padding: 48px 0 32px;
  background: #0f172a;
  color: #fff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #111827;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  font-size: 13px;
}

section {
  padding: 48px 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-weight: 700;
  color: #0f172a;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  margin-top: 9px;
  flex-shrink: 0;
}

.testimonial {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial strong {
  color: #0f172a;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #e2e8f0;
  color: #0f172a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.contact-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.notice {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 14px 16px;
  border-radius: 12px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.table-row span {
  font-weight: 600;
}

/* Cookie banner and modal */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.cookie-actions .primary {
  background: #38bdf8;
  color: #0f172a;
}

.cookie-actions .secondary {
  background: transparent;
  border: 1px solid #38bdf8;
  color: #38bdf8;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.cookie-modal.active {
  display: flex;
}

.cookie-content {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #f1f5f9;
  border-radius: 12px;
}

.cookie-option button {
  border: 1px solid #0f172a;
  background: transparent;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.cookie-option button.active {
  background: #0f172a;
  color: #fff;
}

.cookie-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Layout helpers */
.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  color: #475569;
}

.muted {
  color: #64748b;
}

.spacer {
  height: 16px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card {
    min-width: 320px;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .cta-row {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
