/* ========================================
   CSS VARIABLES & BASE STYLES
======================================== */
:root {
  --color-primary: #1a5f7a;
  --color-primary-dark: #134b61;
  --color-secondary: #e8a838;
  --color-secondary-dark: #c78f2e;
  --color-accent: #57c5b6;
  --color-text: #2d3436;
  --color-text-light: #636e72;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-bg-dark: #1a5f7a;
  --color-border: #dfe6e9;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --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;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: 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-primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

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

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

p {
  margin-bottom: 1rem;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

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

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

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

.section__title {
  margin-bottom: 1rem;
}

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

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

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
  background-color: var(--color-bg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  min-height: 70px;
}

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

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

.nav {
  display: none;
}

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

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

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

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle__bar {
  width: 28px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.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 Navigation */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

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

.mobile-nav__link {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__link:hover {
  background-color: var(--color-bg-alt);
  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-color: var(--color-secondary);
  color: #fff;
}

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

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

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

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

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

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

/* ========================================
   HERO SECTION
======================================== */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

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

.hero__graphic svg {
  width: 100%;
  height: auto;
}

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

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

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

.card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

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

.card__title {
  margin-bottom: 0.75rem;
}

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

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

.card--highlight {
  border: 2px solid var(--color-secondary);
  position: relative;
}

.card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ========================================
   FEATURES
======================================== */
.features {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

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

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

.feature__content {
  max-width: 500px;
}

.feature__title {
  margin-bottom: 0.75rem;
}

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

/* Alternating Feature */
.feature--alt {
  background-color: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

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

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

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

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

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

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

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

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

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

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

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

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

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

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

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

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

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

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

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

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

/* ========================================
   PROCESS STEPS
======================================== */
.process {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  counter-reset: step;
}

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

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

.process__content h4 {
  margin-bottom: 0.5rem;
}

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

/* ========================================
   VALUES / ICON LIST
======================================== */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

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

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

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

.value__content p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.cta__title {
  color: #fff;
  margin-bottom: 1rem;
}

.cta__text {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   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: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

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

.contact-item__content h4 {
  margin-bottom: 0.25rem;
}

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

/* ========================================
   CONTENT BLOCKS
======================================== */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-block__text {
  max-width: 700px;
}

.content-block__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

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

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

.text-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

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

/* ========================================
   COMPARISON TABLE
======================================== */
.comparison {
  overflow-x: auto;
}

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

.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-bg-alt);
  font-weight: 600;
}

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

/* ========================================
   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-color: var(--color-border);
}

.milestone {
  position: relative;
}

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

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

.milestone__title {
  margin-bottom: 0.5rem;
}

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

/* ========================================
   FOOTER
======================================== */
.footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  color: #fff;
  margin-bottom: 1rem;
}

.footer__description {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

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

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

/* ========================================
   COOKIE BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-text);
  color: #fff;
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

.cookie-banner__text a {
  color: var(--color-secondary);
  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-secondary);
  color: #fff;
}

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

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

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

.cookie-banner__btn--settings {
  background-color: transparent;
  color: rgba(255,255,255,0.8);
  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-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: all var(--transition);
}

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

.cookie-modal__content {
  background-color: var(--color-bg);
  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;
  margin: 0;
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  padding: 0.25rem;
  line-height: 1;
}

.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;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

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

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

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

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

.toggle__input:checked + .toggle__slider {
  background-color: 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-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.page-header__title {
  color: #fff;
  margin-bottom: 1rem;
}

.page-header__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.page-header__breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.page-header__breadcrumb a:hover {
  color: #fff;
}

/* ========================================
   THANK YOU PAGE
======================================== */
.thank-you {
  text-align: center;
  padding: 6rem 2rem;
}

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

.thank-you__icon svg {
  width: 50px;
  height: 50px;
}

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

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

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

.industry {
  background-color: var(--color-bg);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
}

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

.industry__icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.industry__name {
  font-weight: 500;
}

/* ========================================
   QUOTE BLOCK
======================================== */
.quote-block {
  background-color: var(--color-bg-alt);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.quote-block__text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

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

/* ========================================
   TRUST INDICATORS
======================================== */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

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

.trust-item__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

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

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (min-width: 576px) {
  .cards .card {
    flex: 1 1 calc(50% - 1.5rem);
  }

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

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }

  .hero__title {
    font-size: 3rem;
  }

  .hero__inner {
    flex-direction: row;
    text-align: left;
  }

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

  .feature {
    flex-direction: row;
    text-align: left;
  }

  .feature:nth-child(even) {
    flex-direction: row-reverse;
  }

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

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

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

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

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

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

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

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

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

  h1 { font-size: 3.5rem; }

  .hero {
    padding: 6rem 0;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .section {
    padding: 5rem 0;
  }
}

/* ========================================
   ACCESSIBILITY
======================================== */
.sr-only {
  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-secondary);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
