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

:root {
  --color-primary: #1a365d;
  --color-secondary: #2d5a87;
  --color-accent: #4a90a4;
  --color-highlight: #f0b429;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-bg: #ffffff;
  --color-bg-alt: #f7fafc;
  --color-bg-dark: #1a202c;
  --color-border: #e2e8f0;
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

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

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

main {
  flex: 1;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

.section {
  padding: 3rem 0;
}

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

.section--dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section--dark .section__title {
  color: #fff;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section__subtitle {
  color: #a0aec0;
}

/* Header */
.header {
  background: var(--color-bg);
  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.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

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

.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

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

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

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

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

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

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

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

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

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

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

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

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

.mobile-nav__link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background var(--transition);
}

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

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero__text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero__graphic {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  width: 400px;
}

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

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

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

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

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

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

/* Cards */
.card {
  background: var(--color-bg);
  border-radius: 0.75rem;
  padding: 1.5rem;
  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: 1rem;
  color: var(--color-accent);
}

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

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

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

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

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

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

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

.feature__content {
  flex: 1;
}

.feature__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

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

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text);
}

.feature__list svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

.stat {
  text-align: center;
  flex: 1 1 140px;
  max-width: 180px;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-highlight);
  line-height: 1;
}

.stat__label {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: #a0aec0;
}

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

.testimonial {
  background: var(--color-bg);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial__quote {
  font-size: 1rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial__quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

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

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

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

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

/* Process */
.process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: step;
}

.process__step {
  display: flex;
  gap: 1rem;
  position: relative;
}

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

.process__content {
  flex: 1;
  padding-bottom: 1.5rem;
}

.process__title {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

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

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

.faq__item {
  background: var(--color-bg);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  transition: background var(--transition);
}

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

.faq__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  color: var(--color-accent);
}

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

.faq__answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--color-text-light);
}

.faq__item.active .faq__answer {
  display: block;
}

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

.industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--color-bg);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  flex: 1 1 140px;
  max-width: 160px;
  text-align: center;
  transition: all var(--transition);
}

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

.industry__icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
}

.industry__name {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-primary);
}

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

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

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

.value__icon svg {
  width: 24px;
  height: 24px;
}

.value__title {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

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

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.cta__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

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

.contact-block {
  background: var(--color-bg);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-block__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.contact-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-detail__text {
  color: var(--color-text);
}

.contact-detail__label {
  font-weight: 500;
  margin-bottom: 0.125rem;
}

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

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

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: #a0aec0;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.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;
}

/* Page Header */
.page-header {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-header__title {
  font-size: 2rem;
  font-weight: 700;
}

.page-header__breadcrumb {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  opacity: 0.8;
}

.page-header__breadcrumb a {
  color: inherit;
  opacity: 0.8;
}

.page-header__breadcrumb a:hover {
  opacity: 1;
}

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

.legal-content h2 {
  font-size: 1.375rem;
  color: var(--color-primary);
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

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

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

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

.thank-you__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--color-accent);
}

.thank-you__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

/* Benefits Panel */
.benefits-panel {
  background: var(--color-bg);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}

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

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

.benefits-panel__list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.benefits-panel__list svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

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

.comparison__item {
  background: var(--color-bg);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.comparison__item--highlight {
  border: 2px solid var(--color-accent);
}

.comparison__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

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

.comparison__badge {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.comparison__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.comparison__feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.comparison__feature svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, #edf2f7 100%);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.quote-block__text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.quote-block__author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

.milestone {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.milestone__year {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  z-index: 1;
}

.milestone__content {
  flex: 1;
  padding-bottom: 0.5rem;
}

.milestone__title {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

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

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.trust-item svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--color-text-light);
  max-width: 120px;
}

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

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

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

.cookie-banner__text {
  font-size: 0.9375rem;
  line-height: 1.5;
}

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

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

.cookie-banner__btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

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

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

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

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

.cookie-banner__btn--settings {
  background: transparent;
  color: #a0aec0;
  text-decoration: underline;
}

.cookie-banner__btn--settings:hover {
  color: #fff;
}

/* 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: 1rem;
}

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

.cookie-modal__content {
  background: var(--color-bg);
  border-radius: 0.75rem;
  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.25rem;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.cookie-modal__close {
  width: 32px;
  height: 32px;
  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__close svg {
  width: 20px;
  height: 20px;
}

.cookie-modal__body {
  padding: 1.25rem;
}

.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 {
  flex: 1;
  padding-right: 1rem;
}

.cookie-option__name {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

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

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

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

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

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

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

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

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

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

.cookie-modal__btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all var(--transition);
}

.cookie-modal__btn--save {
  background: var(--color-primary);
  color: #fff;
}

.cookie-modal__btn--save:hover {
  background: var(--color-secondary);
}

.cookie-modal__btn--accept-all {
  background: var(--color-highlight);
  color: var(--color-primary);
}

.cookie-modal__btn--accept-all:hover {
  background: #e0a320;
}

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

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

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

.insight {
  background: var(--color-bg);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-highlight);
}

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

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

/* Media Queries */
@media (min-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .section__title {
    font-size: 2rem;
  }

  .hero {
    padding: 5rem 0;
  }

  .hero__title {
    font-size: 2.5rem;
  }

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

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

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

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

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

  .footer__brand {
    flex: 1 1 100%;
  }

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

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

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

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

  .cookie-banner__text {
    flex: 1;
  }

  .cookie-banner__actions {
    flex-shrink: 0;
  }
}

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

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

  .hero__title {
    font-size: 3rem;
  }

  .feature {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

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

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

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

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

  .comparison {
    flex-direction: row;
  }

  .comparison__item {
    flex: 1;
  }

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

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

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

  .section__title {
    font-size: 2.25rem;
  }

  .footer__brand {
    flex: 0 0 280px;
  }

  .footer__col {
    flex: 1;
  }

  .contact-block {
    flex: 1;
  }
}
