:root {
  --color-primary: #1a3a4a;
  --color-secondary: #2d5a6e;
  --color-accent: #c9a962;
  --color-light: #f8f9fa;
  --color-dark: #0d1f28;
  --color-text: #2c3e50;
  --color-text-light: #6c7a89;
  --color-white: #ffffff;
  --color-border: #e1e5e9;
  --color-success: #28a745;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

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

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

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

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

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

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

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

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
}

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

.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--active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

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

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

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

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

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform var(--transition), opacity 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(5px, -5px);
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  width: fit-content;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero__description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.7;
}

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

/* 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);
}

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

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

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

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

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

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

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

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

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

.card {
  flex: 1 1 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

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

.card__text {
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

.feature__content {
  flex: 1;
}

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

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

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

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

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

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

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

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

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

.testimonial {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  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-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

.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);
  line-height: 1.7;
}

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

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

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

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

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

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

/* Quote Section */
.quote {
  text-align: center;
  padding: 4rem 2rem;
}

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

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

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

.value {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.value__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

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

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

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

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

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

.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: 600;
  color: var(--color-primary);
}

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

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex: 1 1 140px;
  max-width: 200px;
}

.trust-badge__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.trust-badge__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* Two Column Layout */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.two-col__content {
  flex: 1;
}

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

.two-col__visual svg {
  max-width: 100%;
  height: auto;
}

/* Highlighted Panel */
.panel {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-left: 4px solid var(--color-accent);
}

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

.panel__text {
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.industry-tag {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-light);
  border-radius: 50px;
  font-weight: 500;
  color: var(--color-primary);
  transition: background-color var(--transition);
}

.industry-tag:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

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

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

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

.milestone::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: 50%;
  transform: translateX(-5px);
}

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

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

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

/* CTA Section */
.cta {
  text-align: center;
}

.cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta__text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

.footer__brand {
  max-width: 300px;
}

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

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

.footer__description {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

.cookie-banner__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

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

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

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

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

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal--visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  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;
  justify-content: space-between;
  align-items: center;
}

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

.cookie-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-light);
  transition: color var(--transition);
}

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

.cookie-modal__close svg {
  width: 24px;
  height: 24px;
}

.cookie-modal__body {
  padding: 1.5rem;
}

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

.cookie-option:last-child {
  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;
  color: var(--color-primary);
}

.cookie-option__text {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Toggle Switch */
.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-color: var(--color-border);
  border-radius: 26px;
  transition: background-color var(--transition);
}

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

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

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

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

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

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

.cookie-modal__btn--accept-all {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

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

/* Legal Pages */
.legal {
  padding-top: 8rem;
}

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

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

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

.legal__content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.legal__content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.legal__content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal__content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-text);
}

.legal__date {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 6rem;
}

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

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

.thank-you__text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

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

.comparison__table th {
  background-color: var(--color-light);
  font-weight: 600;
  color: var(--color-primary);
}

.comparison__table td {
  color: var(--color-text);
}

.comparison__check {
  color: var(--color-success);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 10001;
  transition: top var(--transition);
}

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

/* Responsive */
@media (min-width: 640px) {
  .card {
    flex: 1 1 calc(50% - 1rem);
  }

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

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

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

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

  .cookie-banner__text {
    flex: 1;
  }
}

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

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

  .hero__title {
    font-size: 3rem;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .nav {
    display: flex;
  }

  .nav__list {
    flex-direction: row;
    gap: 0.25rem;
  }

  .nav__link {
    padding: 0.5rem 1rem;
  }

  .menu-toggle {
    display: none;
  }

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

  .two-col--reverse {
    flex-direction: row-reverse;
  }

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

  .footer__brand {
    flex: 1 1 100%;
  }

  .footer__column {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33.333% - 1.25rem);
  }

  .value {
    flex: 1 1 calc(25% - 1.5rem);
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .footer__brand {
    flex: 2;
  }

  .footer__column {
    flex: 1;
  }
}
