* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --primary: #1f6a6a;
  --primary-dark: #144949;
  --accent: #f2b05f;
  --text: #1e1f1f;
  --muted: #5f6666;
  --border: #e3e0db;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  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(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo img {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
  position: absolute;
  top: 72px;
  right: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  font-weight: 500;
  color: var(--text);
}

.menu-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: var(--bg);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: #f0ede8;
}

.section-heading {
  margin-bottom: 2rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-stack,
.card-row,
.case-grid,
.testimonial-row,
.stat-grid,
.team-grid,
.process-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.feature img {
  width: 46px;
  height: 46px;
}

.service-card,
.case-card,
.stat-card,
.team-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.highlight-panel {
  background: var(--primary);
  color: #fff;
  padding: 1.6rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-list span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.process-step {
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.process-step span {
  font-weight: 700;
  color: var(--primary);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--primary);
}

.quote-panel {
  background: var(--primary-dark);
  color: #fff;
  padding: 2rem;
  border-radius: 18px;
  margin-bottom: 2rem;
}

.testimonial {
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1rem 1rem 1rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.value-list li {
  padding-left: 1.2rem;
  position: relative;
}

.value-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.button-group,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.secondary {
  background: var(--accent);
  color: var(--text);
}

.button.ghost {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.cta {
  background: var(--surface);
}

.page-hero {
  padding: 3rem 0 2rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  padding: 1.2rem;
  border-left: 3px solid var(--primary);
  background: var(--surface);
  border-radius: 12px;
}

.company-card {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.company-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.comparison-row {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.comparison-row span {
  flex: 1 1 140px;
}

.site-footer {
  background: #131616;
  color: #fff;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.footer-logo {
  color: #fff;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  z-index: 40;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.8rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 14px;
  align-items: center;
}

.cookie-option .toggle {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-option .toggle.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.tag {
  background: var(--accent);
  color: var(--text);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.modal-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .site-nav {
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content,
  .split,
  .stats {
    flex-direction: row;
    align-items: center;
  }

  .hero-content > div,
  .split > div,
  .stats > div {
    flex: 1;
  }

  .feature-stack,
  .card-row,
  .case-grid,
  .testimonial-row,
  .stat-grid,
  .team-grid,
  .process-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature,
  .service-card,
  .case-card,
  .stat-card,
  .team-card,
  .testimonial,
  .process-step {
    flex: 1 1 240px;
  }

  .button-group,
  .cta-actions,
  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-card {
    align-self: center;
  }
}
