:root {
  --bg: #f7f5f2;
  --bg-alt: #ffffff;
  --text: #1f1f24;
  --muted: #585a6a;
  --primary: #1e3a8a;
  --primary-light: #3557d3;
  --accent: #f0b75e;
  --border: #e1dde0;
  --shadow: 0 18px 45px rgba(18, 25, 38, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
}

.menu-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
}

.menu-toggle-icon {
  width: 16px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--text);
}

.menu-toggle-icon::before {
  top: -6px;
}

.menu-toggle-icon::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-alt);
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  padding: 0.25rem 5%;
  font-weight: 600;
}

.mobile-menu.active {
  display: flex;
}

.hero {
  padding: 4rem 0 2rem;
  background: var(--bg-alt);
}

.hero.compact {
  padding-bottom: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-title {
  font-weight: 700;
  margin: 0;
}

.hero-card-details {
  display: flex;
  gap: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 2rem;
}

.section-divider {
  width: 100%;
  margin-top: 2rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-list,
.benefits,
.values-grid,
.team-list,
.stats,
.process-steps,
.case-grid,
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature img {
  width: 42px;
  height: 42px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.primary:hover {
  background: var(--primary-light);
}

.button.ghost {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.button.text {
  border: none;
  background: none;
  padding: 0;
  color: var(--primary);
}

.highlight {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow);
}

.highlight-card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 18px;
}

.checklist {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.stats-section {
  background: #111827;
  color: #fff;
}

.stats {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-list span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.case-card,
.service-card,
.value-card,
.team-card,
.benefit-card,
.milestone,
.info-card,
.directions-card {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.case-tag {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.quote-section blockquote {
  margin: 0 0 1.5rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.quote-section cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-section {
  background: var(--bg-alt);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comparison-row span {
  flex: 1;
}

.comparison-row.header {
  background: #eaf0ff;
  font-weight: 700;
}

.price {
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.milestone-year {
  font-weight: 700;
  color: var(--primary);
}

.contact-line {
  margin: 0 0 0.75rem;
}

.info-highlight {
  font-weight: 600;
  color: var(--primary);
}

.trusted {
  margin-top: 1rem;
  font-weight: 600;
}

.company-data {
  margin: 0 0 0.5rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(720px, 90%);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 20px;
  width: min(680px, 95%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}

.cookie-status {
  font-weight: 600;
  color: var(--muted);
}

.toggle-button,
.icon-button {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-button[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.icon-button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-list,
  .benefits,
  .values-grid,
  .team-list,
  .stats,
  .process-steps,
  .case-grid,
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature,
  .benefit-card,
  .value-card,
  .team-card,
  .service-card,
  .case-card {
    flex: 1 1 220px;
  }

  .stats {
    justify-content: space-between;
  }

  .cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison-row span {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .hero-card {
    max-width: 360px;
  }

  .highlight {
    flex-direction: row;
    align-items: center;
  }

  .highlight-card {
    min-width: 260px;
  }
}
