:root {
  --sunny-orange: #fc4a1a;
  --sunny-gold: #f7b733;
  --sunny-cream: #fff8e1;
  --sunny-slate: #2f2f2f;
  --sunny-mist: #f6f4f0;
  --sunny-ink: #1f1f1f;
  --sunny-sand: #fbe7c6;
  --sunny-blue: #2b6f8a;
  --sunny-green: #3b8c6e;
  --shadow-soft: 0 14px 30px rgba(23, 23, 23, 0.08);
  --shadow-light: 0 8px 20px rgba(23, 23, 23, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--sunny-ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #ece8e0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sunny-slate);
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--sunny-gold);
}

.menu-toggle {
  background: var(--sunny-cream);
  border: 1px solid #f0d8b0;
  color: var(--sunny-slate);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 0 1.4rem;
}

.mobile-menu a {
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid #efe6d5;
}

.mobile-menu.active {
  display: flex;
}

.hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(120deg, #fff4df, #fff);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.15;
  color: var(--sunny-slate);
}

.hero p {
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--sunny-orange);
  color: #ffffff;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  border-color: #efe2d4;
  color: var(--sunny-slate);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--sunny-mist);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  color: var(--sunny-slate);
}

.section-heading p {
  max-width: 42rem;
  color: #3e3e3e;
}

.section-heading.space-top {
  margin-top: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card svg {
  width: 40px;
  height: 40px;
}

.icon-pill {
  width: 48px;
  height: 48px;
  background: var(--sunny-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  background: var(--sunny-sand);
  border-radius: 1rem;
  padding: 1.6rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.9rem;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-item span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sunny-orange);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item strong {
  min-width: 4.5rem;
  color: var(--sunny-blue);
}

.quote {
  background: #1f1f1f;
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
}

.quote span {
  display: block;
  margin-top: 1rem;
  color: #f0c96a;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  margin-top: 0.3rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  color: var(--sunny-green);
}

.comparison {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid #efe4d6;
  padding-bottom: 0.7rem;
}

.comparison-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #eadbc7;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff9f0;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: #3f3f3f;
}

.faq-item.active .faq-answer {
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: var(--sunny-cream);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-block {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow-light);
}

.footer {
  background: #1f1f1f;
  color: #ffffff;
  padding: 2.5rem 0 3rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer a {
  color: #ffffff;
}

.footer small {
  color: #e0e0e0;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(22, 22, 22, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1.5rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  width: min(540px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .card-grid,
  .stats,
  .service-list,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .stat-item,
  .info-block {
    flex: 1 1 calc(33% - 1rem);
    min-width: 240px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid #efe4d6;
    padding-bottom: 0;
    padding-right: 1rem;
  }

  .comparison-row:last-child {
    border-right: none;
    padding-right: 0;
  }

  .cookie-banner {
    left: auto;
    right: 1.5rem;
    max-width: 420px;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .footer-grid {
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33% - 1rem);
  }

  .service-card {
    flex: 1 1 calc(50% - 1rem);
  }
}
