/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #1a4d5c;
  --color-secondary: #2d8a6e;
  --color-accent: #e8a849;
  --color-dark: #1c2833;
  --color-light: #f7f9fb;
  --color-gray: #6c7a89;
  --color-gray-light: #e5e9ec;
  --color-white: #ffffff;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-white);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--color-light);
}

.section--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section__title {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.section--dark .section__title {
  color: var(--color-white);
}

.section__subtitle {
  color: var(--color-gray);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.section--dark .section__subtitle {
  color: rgba(255,255,255,0.85);
}

/* Header & Navigation */
.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav__link {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    gap: 0;
  }

  .nav__list--open {
    display: flex;
  }

  .nav__item {
    border-bottom: 1px solid var(--color-gray-light);
  }

  .nav__item:last-child {
    border-bottom: none;
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a6b7a 100%);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(15deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__text {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn--primary:hover {
  background: #d49638;
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 300px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card__title {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.card__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

.card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 1rem;
}

/* Service Cards */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
  margin-bottom: 1.5rem;
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card__title {
  color: var(--color-primary);
}

.service-card__price {
  background: var(--color-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--color-secondary);
}

.service-card__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Feature Blocks */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  flex: 1 1 280px;
  display: flex;
  gap: 1.25rem;
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-secondary);
}

.feature__content {
  flex: 1;
}

.feature__title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature__text {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Statistics */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  text-align: center;
}

.stat {
  flex: 1 1 200px;
  padding: 1.5rem;
}

.stat__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section--dark .stat__number {
  color: var(--color-accent);
}

.stat__label {
  font-size: 1rem;
  color: var(--color-gray);
}

.section--dark .stat__label {
  color: rgba(255,255,255,0.85);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial {
  flex: 1 1 350px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--color-gray-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial__info {
  flex: 1;
}

.testimonial__name {
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial__role {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  fill: var(--color-gray);
}

.faq-item--open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item--open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-gray);
}

/* Process Steps */
.process {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  counter-reset: step;
}

.process__step {
  flex: 1 1 250px;
  position: relative;
  padding-left: 4rem;
}

.process__step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.process__title {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.process__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Alternating Content */
.content-block {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block--reverse {
  flex-direction: row-reverse;
}

.content-block__text {
  flex: 1 1 400px;
}

.content-block__visual {
  flex: 1 1 300px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-block__visual svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Quote Section */
.quote {
  background: var(--color-light);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.quote__text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.quote__author {
  color: var(--color-gray);
  font-weight: 600;
}

/* Industries */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.industry-tag {
  background: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.industry-tag:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* Trust Indicators */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.trust__item svg {
  width: 32px;
  height: 32px;
  fill: var(--color-secondary);
}

.trust__text {
  font-weight: 500;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info__item {
  flex: 1 1 280px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.contact-info__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Panel */
.panel {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.panel--accent {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #3da67e 100%);
  color: var(--color-white);
}

.panel--accent .panel__title {
  color: var(--color-white);
}

.panel__title {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.panel__text {
  margin-bottom: 0;
}

/* Timeline / Milestones */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gray-light);
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 2rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background: var(--color-secondary);
  border-radius: 50%;
  transform: translateX(-5.5px);
}

.timeline__year {
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.timeline__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Comparison Table */
.comparison {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison__row {
  display: flex;
  border-bottom: 1px solid var(--color-gray-light);
}

.comparison__row:last-child {
  border-bottom: none;
}

.comparison__cell {
  flex: 1;
  padding: 1.25rem 1.5rem;
}

.comparison__cell--header {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.comparison__cell--feature {
  font-weight: 500;
  background: var(--color-light);
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__col {
  flex: 1 1 220px;
}

.footer__title {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.75rem;
}

.footer__list a {
  color: rgba(255,255,255,0.7);
}

.footer__list a:hover {
  color: var(--color-accent);
}

.footer__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255,255,255,0.6);
}

.footer__legal a:hover {
  color: var(--color-accent);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner--visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner__text {
  flex: 1 1 400px;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.cookie-banner__text a {
  color: var(--color-accent);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.cookie-banner__btn--accept {
  background: var(--color-secondary);
  color: var(--color-white);
}

.cookie-banner__btn--accept:hover {
  background: #3da67e;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-banner__btn--settings {
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal--visible {
  display: flex;
}

.cookie-modal__content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal__title {
  color: var(--color-primary);
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--color-gray);
  line-height: 1;
  padding: 0;
}

.cookie-modal__close:hover {
  color: var(--color-dark);
}

.cookie-option {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-option__title {
  font-weight: 600;
}

.cookie-option__text {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 50px;
  height: 28px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-gray-light);
  border-radius: 28px;
  transition: var(--transition);
}

.toggle__slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle input:checked + .toggle__slider {
  background: var(--color-secondary);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(22px);
}

.toggle input:disabled + .toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 6rem 0;
}

.thank-you__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.thank-you__icon svg {
  width: 100%;
  height: 100%;
}

.thank-you__title {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.thank-you__text {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--color-gray);
  font-size: 1.1rem;
}

/* Legal Pages */
.legal {
  padding: 4rem 0;
}

.legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal h1 {
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.legal h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.legal p {
  color: var(--color-gray);
}

.legal ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-gray);
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal__date {
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a6b7a 100%);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
}

.highlight-panel__title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.highlight-panel__text {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Value Props */
.value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.value-prop {
  flex: 1 1 300px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-secondary);
}

.value-prop__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-prop__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-secondary);
}

.value-prop__title {
  margin-bottom: 0.5rem;
}

.value-prop__text {
  color: var(--color-gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero__title {
    font-size: 2.2rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

@media (max-width: 576px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero__title {
    font-size: 1.9rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .stats {
    gap: 1rem;
  }

  .stat__number {
    font-size: 2.25rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 10001;
}

.skip-link:focus {
  top: 0;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  .section {
    padding: 2rem 0;
  }
}
