:root {
  --color-primary: #8B7355;
  --color-primary-dark: #6B5344;
  --color-primary-light: #A89070;
  --color-secondary: #D4C4B0;
  --color-accent: #C9A87C;
  --color-bg: #FDFBF8;
  --color-bg-alt: #F5F0E6;
  --color-bg-warm: #EDE4D8;
  --color-text: #3D3530;
  --color-text-light: #6B6259;
  --color-white: #FFFFFF;
  --color-border: #E5DDD3;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 2px 8px rgba(59, 53, 48, 0.08);
  --shadow-md: 0 4px 16px rgba(59, 53, 48, 0.1);
  --shadow-lg: 0 8px 32px rgba(59, 53, 48, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: 2.25rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.875rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

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

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo__icon {
  width: 42px;
  height: 42px;
}

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

.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0;
  position: relative;
}

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

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

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle__bar {
  width: 100%;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

.mobile-nav.active {
  display: block;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  margin: 0;
}

.mobile-nav__link {
  display: block;
  padding: 0.875rem 0;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__link:hover {
  color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn--light:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

.section--warm {
  background: var(--color-bg-warm);
}

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

.section--primary h2,
.section--primary h3,
.section--primary h4 {
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.section__title {
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--color-text-light);
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero__content {
  text-align: center;
}

.hero__title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.hero__text {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__illustration {
  width: 100%;
  max-width: 400px;
}

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

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

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

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

/* Service Cards */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.service-card__desc {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.service-card__price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature__content {
  flex: 1;
}

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

.feature__text {
  color: var(--color-text-light);
  margin-bottom: 0;
}

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

.stat {
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  min-width: 140px;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat__label {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

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

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

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  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-secondary);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__avatar svg {
  width: 28px;
  height: 28px;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
}

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

.testimonial__role {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Quote */
.quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.quote__text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

/* Process */
.process {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process__number {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.process__content {
  flex: 1;
  padding-top: 0.5rem;
}

.process__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

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

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}

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

.faq__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

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

.faq__item.active .faq__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Values */
.values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.value__content {
  flex: 1;
}

.value__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value__text {
  color: var(--color-text-light);
  margin-bottom: 0;
}

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

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

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

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

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

.timeline__title {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

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

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
}

.contact-item__content {
  flex: 1;
}

.contact-item__label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-weight: 500;
  color: var(--color-text);
}

/* CTA */
.cta {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-white);
}

.cta__title {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cta__text {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
}

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

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__title {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.25rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__text {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.cookie-banner__text a {
  text-decoration: underline;
}

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

.cookie-banner__btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-banner__btn--accept {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.cookie-banner__btn--accept:hover {
  background: var(--color-primary-dark);
}

.cookie-banner__btn--settings {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.cookie-banner__btn--settings:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--color-text-light);
  border: none;
}

.cookie-banner__btn--reject:hover {
  color: var(--color-text);
}

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

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

.cookie-modal__content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal__title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.cookie-modal__close {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: color var(--transition);
}

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

.cookie-modal__body {
  padding: 1.5rem;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category__title {
  font-weight: 600;
  color: var(--color-text);
}

.cookie-category__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Toggle */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

.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-secondary);
  border-radius: 26px;
  transition: var(--transition);
}

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

.toggle__input:checked + .toggle__slider {
  background: var(--color-primary);
}

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

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

.cookie-modal__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-header__title {
  margin-bottom: 0.75rem;
}

.page-header__desc {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Content */
.content {
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.content h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.content ul,
.content ol {
  margin-bottom: 1.5rem;
}

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

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

.thank-you__title {
  margin-bottom: 1rem;
}

.thank-you__text {
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.comparison__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.comparison__title {
  font-weight: 600;
  margin-bottom: 0;
}

.comparison__price {
  font-weight: 700;
  color: var(--color-primary);
}

.comparison__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-text-light);
}

.comparison__feature svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-panel__content h3 {
  color: var(--color-white);
  font-size: 1.5rem;
}

.highlight-panel__content p {
  opacity: 0.9;
}

.highlight-panel__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-panel__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.highlight-panel__feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Alternating Blocks */
.alternating-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.alternating-block__visual {
  width: 100%;
  max-width: 400px;
}

.alternating-block__visual svg {
  width: 100%;
  height: auto;
}

.alternating-block__content {
  text-align: center;
}

/* Icon Grid */
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.icon-grid__item {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.icon-grid__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.icon-grid__title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Two Columns */
.two-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.two-columns__col {
  flex: 1;
}

/* Media Queries */
@media (min-width: 640px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }

  .hero__title {
    font-size: 2.75rem;
  }

  .hero__buttons {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 280px;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1;
    min-width: 300px;
  }

  .footer__nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__text {
    flex: 1;
    margin-right: 2rem;
  }

  .alternating-block {
    flex-direction: row;
  }

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

  .alternating-block__visual,
  .alternating-block__content {
    flex: 1;
  }

  .alternating-block__content {
    text-align: left;
  }

  .two-columns {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison__item {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .hero {
    padding: 5rem 0 6rem;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .hero__content {
    text-align: left;
    flex: 1;
  }

  .hero__text {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__visual {
    flex: 1;
  }

  .features {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1;
    min-width: 280px;
  }

  .values {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value {
    flex: 1;
    min-width: 280px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__brand {
    max-width: 300px;
  }

  .highlight-panel {
    flex-direction: row;
    align-items: center;
  }

  .highlight-panel__content {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  h1 { font-size: 3rem; }

  .hero__title {
    font-size: 3rem;
  }

  .cards {
    gap: 2rem;
  }

  .process {
    flex-direction: row;
  }

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

  .process__number {
    margin: 0 auto 1rem;
  }

  .process__content {
    padding-top: 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* 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;
  transition: top 0.3s;
}

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