:root {
  --ink: #1b1c1f;
  --soft-ink: #3a3c44;
  --muted: #6b6f7a;
  --brand: #4956e2;
  --brand-dark: #2b349c;
  --accent: #f2c86f;
  --sand: #f7f3ee;
  --mist: #f2f4f8;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(27, 28, 31, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--sand);
}

.section-soft {
  background: var(--mist);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  border: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(73, 86, 226, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(73, 86, 226, 0.3);
}

.button-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  color: var(--soft-ink);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-drawer {
  position: fixed;
  top: 72px;
  right: 0.75rem;
  left: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--soft-ink);
}

.nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.nav-open .nav-drawer {
  display: flex;
}

.hero {
  padding: 4rem 0 3.5rem;
}

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

.hero-card {
  background: var(--mist);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(73, 86, 226, 0.1);
  color: var(--brand-dark);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(73, 86, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-list,
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-panel {
  background: var(--brand-dark);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--soft-ink);
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--soft-ink);
  font-weight: 600;
  font-size: 0.85rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-row strong {
  font-size: 1.05rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

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

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

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--soft-ink);
}

.site-footer {
  background: #141518;
  color: rgba(255, 255, 255, 0.85);
}

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

.footer-grid h3 {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 50;
}

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

.cookie-modal,
.cookie-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
}

.cookie-backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.cookie-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.toggle-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--mist);
}

.toggle-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.toggle-button {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--white);
  font-weight: 600;
}

.toggle-button[aria-pressed="true"] {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav-drawer {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 2rem;
  }

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

  .nav-cta {
    flex-direction: row;
  }

  .hero-inner,
  .stats-row,
  .card-grid,
  .footer-grid {
    flex-direction: row;
  }

  .hero-inner > * {
    flex: 1;
  }

  .card-grid > *,
  .stats-row > *,
  .footer-grid > * {
    flex: 1;
  }

  .table-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

@media (min-width: 980px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 5rem 0 4rem;
  }
}
