:root {
  color-scheme: light;
  --charcoal: #1e2430;
  --steel: #334155;
  --slate: #64748b;
  --sky: #60a5fa;
  --mint: #2dd4bf;
  --sand: #f8fafc;
  --cloud: #e2e8f0;
  --sunrise: #f97316;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  font-size: 16px;
}

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

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--sand);
  color: var(--charcoal);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

section {
  padding: 0 6vw;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand svg {
  width: 32px;
  height: 32px;
  fill: var(--sunrise);
}

.menu-toggle {
  border: 1px solid var(--cloud);
  background: #ffffff;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw 2rem;
  border-bottom: 1px solid var(--cloud);
}

.nav-links a {
  font-weight: 600;
  color: var(--steel);
}

.nav-links.is-open {
  display: flex;
}

.hero {
  padding: 5rem 6vw 3.5rem;
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  color: var(--steel);
  font-size: 1.05rem;
}

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

.button.primary {
  background: var(--sunrise);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(249, 115, 22, 0.3);
}

.button.secondary {
  background: var(--charcoal);
  color: #ffffff;
}

.button.ghost {
  background: transparent;
  color: var(--sunrise);
  border: 1px solid var(--sunrise);
}

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

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  font-size: 1.2rem;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.3rem;
  border-radius: 16px;
  background: #ffffff;
  border-left: 4px solid var(--mint);
}

.stat span {
  font-size: 1.7rem;
  font-weight: 700;
}

.quote {
  background: var(--charcoal);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote strong {
  font-size: 1.1rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: var(--cloud);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.timeline-item {
  padding: 1.2rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--cloud);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--cloud);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--steel);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.feature-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.highlight-panel {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-radius: 18px;
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid var(--cloud);
}

.price {
  font-weight: 700;
  color: var(--sunrise);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.4rem;
  border: 1px solid var(--cloud);
}

.comparison-row strong {
  font-size: 1rem;
}

.icon-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  fill: var(--sky);
}

.footer {
  padding: 3rem 6vw 2.5rem;
  background: var(--charcoal);
  color: #ffffff;
  margin-top: 4rem;
}

.footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 2rem;
}

.cookie-modal.is-hidden,
.cookie-banner.is-hidden {
  display: none;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.preference-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--sand);
  border: 1px solid var(--cloud);
}

.preference-toggle {
  align-self: flex-start;
  border: 1px solid var(--cloud);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.preference-toggle[aria-pressed="true"] {
  background: var(--mint);
  color: #0f172a;
}

.notice {
  font-size: 0.95rem;
  color: var(--slate);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: none;
    gap: 1.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stat-list {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
