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

:root {
  --color-primary: #1a5f4a;
  --color-primary-dark: #134536;
  --color-secondary: #e8b44d;
  --color-accent: #2d8a6e;
  --color-bg: #fafbfc;
  --color-bg-alt: #f0f4f3;
  --color-bg-dark: #134536;
  --color-text: #2c3e3a;
  --color-text-light: #5a7068;
  --color-text-muted: #7a8f88;
  --color-white: #ffffff;
  --color-border: #d4ddd9;
  --shadow-sm: 0 2px 4px rgba(26, 95, 74, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 95, 74, 0.12);
  --shadow-lg: 0 8px 24px rgba(26, 95, 74, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

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

main {
  flex: 1;
}

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

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section {
  padding: 4rem 0;
}

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

.section--dark {
  background: #00b780;
  color: var(--color-white);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 680px;
  margin: 0 auto;
}

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

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

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

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: #d9a63e;
  color: var(--color-text);
}

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

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

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

.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.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.nav {
  display: none;
}

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

.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,
.nav__link--active {
  color: var(--color-primary);
}

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

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  padding: 5rem 1.5rem 2rem;
  transition: right var(--transition);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav__link {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}

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

.hero__text {
  max-width: 600px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

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

.hero__visual svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

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

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-text-light);
}

.cards-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

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

.service-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonials */
.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-primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__text {
  font-size: 1.0625rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

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

.testimonial__info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial__info span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer__content {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
}

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

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

.process-step {
  display: flex;
  gap: 1.5rem;
}

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

.process-step__content h3 {
  margin-bottom: 0.5rem;
}

.process-step__content p {
  color: var(--color-text-light);
}

/* Feature Blocks */
.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.feature-block--reverse {
  flex-direction: column;
}

.feature-block__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-block__visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.feature-block__content h3 {
  margin-bottom: 1rem;
}

.feature-block__content ul {
  list-style: none;
  margin-top: 1rem;
}

.feature-block__content li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}

.feature-block__content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

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

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

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

.value-item__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.value-item h4 {
  margin-bottom: 0.5rem;
}

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

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

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

/* Milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}

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

.milestone {
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.milestone__year {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.milestone h4 {
  margin-bottom: 0.25rem;
}

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

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

.contact-block {
  display: flex;
  gap: 1rem;
}

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

.contact-block__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-block p {
  color: var(--color-text-light);
}

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

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.legal-content p {
  color: var(--color-text-light);
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--color-text-light);
}

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

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

.thank-you__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 50%;
}

.thank-you__icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.thank-you h1 {
  margin-bottom: 1rem;
}

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

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__brand .logo {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9375rem;
  opacity: 0.8;
}

.footer__links h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__links ul {
  list-style: none;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* 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.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition);
}

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

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

.cookie-banner__text h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

.cookie-modal__header h3 {
  font-size: 1.125rem;
}

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

.cookie-modal__body {
  padding: 1.5rem;
}

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

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

.cookie-option__info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.cookie-option__info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.highlight-panel p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

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

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Quote Block */
.quote-block {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.quote-block p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.quote-block cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

/* Insights Grid */
.insights-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-secondary);
}

.insight-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

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

/* Benefits */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.benefit-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border-radius: 50%;
}

.benefit-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-text);
}

.benefit-item h4 {
  margin-bottom: 0.25rem;
}

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

/* Responsive */
@media (min-width: 640px) {
  .cards-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards-row .card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 50%;
  }

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

  .testimonials-grid .testimonial {
    flex: 1 1 calc(50% - 0.75rem);
  }

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

  .values-list .value-item {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .insights-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .insights-grid .insight-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .benefits-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefits-list .benefit-item {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info .contact-block {
    flex: 1 1 calc(50% - 1rem);
  }

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

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

  .footer__brand {
    flex: 1 1 100%;
  }

  .footer__links {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

@media (min-width: 768px) {
  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

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

  .hero__text {
    flex: 1;
  }

  .hero__visual {
    flex: 1;
  }

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

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

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

  .cards-row .card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .stat-item {
    flex: 1 1 25%;
  }

  .footer__brand {
    flex: 1 1 40%;
  }

  .footer__links {
    flex: 1 1 auto;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

  .hero {
    padding: 6rem 0;
  }

  .values-list .value-item {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .insights-grid .insight-card {
    flex: 1 1 calc(33.333% - 1rem);
  }
}
