*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --text: #1f2a2e;
  --muted: #5a6b72;
  --primary: #2f7b74;
  --primary-dark: #1f5b56;
  --accent: #b06b3f;
  --line: #d9d2c8;
  --shadow: 0 10px 30px rgba(31, 42, 46, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, var(--primary), var(--accent), var(--primary-dark));
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--primary);
  color: #fff;
}

.button-tertiary {
  background: var(--accent);
}

.hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(130deg, #fffaf5 0%, #f2f0ea 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

.trust-strip strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text);
}

.hero-card {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--muted);
}

.hero-list {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 620px;
  margin-bottom: 2rem;
}

.cards,
.process,
.testimonials,
.cases,
.insights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card,
.testimonial,
.case,
.insight {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}

.card-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0ebe2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.process-step {
  background: var(--bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.step-number {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.stat {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 2rem;
  display: block;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f5efe6;
  border-radius: 16px;
  padding: 1.5rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: none;
  font-size: 1rem;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  background: var(--bg-alt);
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta {
  background: linear-gradient(120deg, #1f5b56, #2f7b74);
  color: #fff;
}

.cta .button {
  background: #fff;
  color: var(--primary-dark);
}

.cta .button:hover,
.cta .button:focus {
  background: #f5efe6;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.site-footer {
  background: #191f22;
  color: #e5e5e5;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer a {
  color: #e5e5e5;
  display: block;
  margin-top: 0.4rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 5vw 1.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: flex;
}

.nav-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92vw);
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(25, 31, 34, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 2rem;
  width: min(640px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.toggle {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.4rem 1rem;
  background: #f1ede6;
  color: var(--muted);
}

.toggle[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.content-hero {
  padding: 3rem 0;
  background: #fffaf5;
  border-bottom: 1px solid var(--line);
}

.content-hero h1 {
  margin-bottom: 0.8rem;
}

.page-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-list,
.comparison,
.team,
.milestones,
.info-blocks,
.contact-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--bg-alt);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.6rem;
}

.comparison-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: #f9f6f1;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--bg-alt);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner,
  .split,
  .process,
  .cards,
  .testimonials,
  .cases,
  .insights,
  .stats,
  .footer-inner,
  .page-grid,
  .service-list,
  .comparison,
  .team,
  .milestones,
  .info-blocks,
  .contact-columns {
    flex-direction: row;
  }

  .hero-text,
  .hero-card,
  .split > div,
  .service-card,
  .comparison-item,
  .contact-card,
  .stat,
  .testimonial,
  .case,
  .insight,
  .team-member,
  .milestone {
    flex: 1;
  }

  .trust-strip {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-inner > div {
    flex: 1;
  }

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .process-step {
    min-height: 220px;
  }
}
