/* Base */
:root {
  --ink: #13243a;
  --muted: #55667a;
  --brand: #1b6ff2;
  --accent: #ff7a45;
  --surface: #f4f7fb;
  --surface-strong: #e6eef8;
  --success: #0d9b6a;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(19, 36, 58, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

.section.accent {
  background: linear-gradient(120deg, #f1f7ff 0%, #fef6f1 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

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;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(27, 111, 242, 0.24);
}

.btn.secondary {
  border-color: var(--brand);
  color: var(--brand);
  background: #ffffff;
}

.btn.ghost {
  border-color: #ced8e6;
  color: var(--ink);
  background: transparent;
}

.btn:focus-visible {
  outline: 3px solid rgba(27, 111, 242, 0.3);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
}

/* Header + Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #edf1f7;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.logo span {
  color: var(--brand);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
}

.nav-links.active {
  display: flex;
}

.nav-toggle {
  border: 1px solid #d5dfed;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

@media (min-width: 900px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 28px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e0e6f0;
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero > div {
    flex: 1;
  }
}

/* Feature Blocks */
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e6eef8;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 28px rgba(19, 36, 58, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  margin-bottom: 8px;
}

@media (min-width: 900px) {
  .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card {
    width: calc(50% - 9px);
  }
}

/* Services */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e0e8f4;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

@media (min-width: 900px) {
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(33.333% - 14px);
  }
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--brand);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .stats {
    flex-direction: row;
  }

  .stat-card {
    flex: 1;
  }
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid #e3ecf7;
}

.quote {
  font-style: italic;
  color: var(--ink);
}

@media (min-width: 900px) {
  .testimonial-grid {
    flex-direction: row;
  }

  .testimonial-card {
    flex: 1;
  }
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e3ecf7;
}

.comparison-row span {
  font-weight: 600;
}

@media (min-width: 900px) {
  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid #e0e6f0;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(27, 111, 242, 0.2);
  outline-offset: 2px;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: #0f1d31;
  color: #e2e8f5;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e2e8f5;
}

@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Cookie banner + modal */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 49, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface);
}

.toggle-button {
  border-radius: 999px;
  border: 1px solid #c8d3e2;
  background: #ffffff;
  padding: 6px 16px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-button.active {
  background: var(--success);
  color: #ffffff;
  border-color: var(--success);
}

/* Utility */
.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }
}

.highlight {
  padding: 22px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid #e1e9f4;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.list li {
  display: flex;
  gap: 10px;
}

.notice {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 14px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}
