:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --bg-alt: #ffffff;
  --ink: #1b1f2a;
  --muted: #56607a;
  --brand: #2c6df2;
  --brand-dark: #1e4bb8;
  --accent: #25c7b1;
  --border: #e2e6f0;
  --shadow: 0 18px 40px rgba(20, 28, 44, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo img {
  width: 34px;
  height: 34px;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  top: 68px;
  right: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  width: min(280px, 90%);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  font-weight: 600;
  color: var(--ink);
}

.nav-cta {
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}

section {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 14px 30px rgba(15, 24, 40, 0.06);
}

section.alt {
  background: #eef2ff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(130deg, #f0f4ff, #e7fbf7);
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split .card {
  flex: 1;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1.4rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card strong {
  font-size: 1.05rem;
}

.stat-row,
.service-grid,
.feature-grid,
.testimonial-grid,
.value-grid,
.faq-grid,
.compare-grid,
.team-grid,
.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.stat span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #f0f4ff;
  color: var(--brand-dark);
  align-self: flex-start;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial em {
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: var(--radius-sm);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.highlight {
  background: #0f172a;
  color: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight .btn {
  background: var(--accent);
  color: #0f172a;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2.5rem 0;
}

.footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: inherit;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #0f172a;
  color: #f8fafc;
  padding: 1.2rem;
  border-radius: var(--radius);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner .btn.secondary {
  background: transparent;
  border-color: #94a3b8;
  color: #e2e8f0;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1.5rem;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.toggle-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toggle-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  font-weight: 600;
  cursor: pointer;
}

.toggle-button[aria-pressed="true"] {
  background: #e0f2fe;
  border-color: #7dd3fc;
}

.compare-table {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}

.compare-row strong {
  color: var(--brand-dark);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.info-block {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 860px) {
  .split,
  .stat-row,
  .service-grid,
  .feature-grid,
  .testimonial-grid,
  .value-grid,
  .faq-grid,
  .compare-grid,
  .team-grid,
  .insight-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split > * {
    flex: 1;
  }

  .stat-row .stat,
  .service-grid .service-card,
  .feature-grid .card,
  .testimonial-grid .testimonial,
  .value-grid .card,
  .faq-grid .faq-item,
  .compare-grid .compare-row,
  .team-grid .card,
  .insight-grid .card {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1080px) {
  .stat-row .stat,
  .service-grid .service-card,
  .feature-grid .card,
  .testimonial-grid .testimonial,
  .value-grid .card,
  .compare-grid .compare-row,
  .team-grid .card,
  .insight-grid .card {
    flex: 1 1 calc(33.333% - 1rem);
  }
}
