:root {
  --clr-primary: #1a6b3c;
  --clr-primary-hover: #155530;
  --clr-primary-light: #d1fae5;
  --clr-primary-mid: #52b788;
  --clr-secondary: #f59e0b;
  --clr-secondary-hover: #d97706;
  --clr-secondary-light: #fef3c7;
  --clr-accent: #0891b2;
  --clr-accent-light: #e0f7fa;
  --clr-bg: #f7faf7;
  --clr-bg-alt: #eef5ee;
  --clr-surface: #ffffff;
  --clr-surface-muted: #f9faf9;
  --clr-text: #1c2b1e;
  --clr-text-secondary: #3d5240;
  --clr-text-muted: #6b7e6d;
  --clr-border: #d4e0d5;
  --clr-border-light: #ebf2eb;
  --clr-error: #dc2626;
  --clr-error-bg: #fef2f2;
  --clr-success: #16a34a;
  --clr-success-bg: #f0fdf4;
  --clr-overlay: rgba(10, 20, 11, 0.55);

  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --fs-xs: 0.6875rem;
  --fs-sm: 0.8125rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.65;
  --lh-relaxed: 1.8;

  --sh-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --sh-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --sh-md: 0 4px 20px rgba(0, 0, 0, 0.09);
  --sh-lg: 0 8px 32px rgba(0, 0, 0, 0.11);
  --sh-xl: 0 16px 48px rgba(0, 0, 0, 0.13);
  --sh-focus: 0 0 0 3px rgba(26, 107, 60, 0.28);
  --sh-focus-error: 0 0 0 3px rgba(220, 38, 38, 0.22);

  --rad-xs: 4px;
  --rad-sm: 8px;
  --rad-md: 12px;
  --rad-lg: 18px;
  --rad-xl: 24px;
  --rad-2xl: 36px;
  --rad-full: 9999px;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --nav-h: 72px;
  --container-max: 1200px;
  --tr-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --tr-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--clr-text);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }

p {
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--narrow {
  max-width: 760px;
}

.container--wide {
  max-width: 1400px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background-color: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border-light);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--tr-base);
}

.site-header.scrolled {
  box-shadow: var(--sh-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--tr-fast);
}

.nav-logo:hover {
  color: var(--clr-primary);
  opacity: 0.85;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--rad-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-secondary);
  border-radius: var(--rad-full);
  transition: color var(--tr-fast), background-color var(--tr-fast);
  white-space: nowrap;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-surface);
  background-color: var(--clr-primary);
  border-radius: var(--rad-full);
  transition: background-color var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  color: var(--clr-surface);
  background-color: var(--clr-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  padding: var(--sp-2);
  transition: background-color var(--tr-fast);
}

.nav-toggle:hover {
  background-color: var(--clr-bg-alt);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--clr-text);
  border-radius: var(--rad-full);
  transition: transform var(--tr-base), opacity var(--tr-base), width var(--tr-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--clr-overlay);
}

.nav-mobile-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background-color: var(--clr-surface);
  padding: calc(var(--nav-h) + var(--sp-6)) var(--sp-6) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform var(--tr-slow);
  overflow-y: auto;
}

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

.nav-mobile-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-secondary);
  border-radius: var(--rad-md);
  transition: color var(--tr-fast), background-color var(--tr-fast);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--clr-primary);
  background-color: var(--clr-primary-light);
}

.nav-mobile-cta {
  display: block;
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  text-align: center;
  color: var(--clr-surface);
  background-color: var(--clr-primary);
  border-radius: var(--rad-full);
  transition: background-color var(--tr-fast);
}

.nav-mobile-cta:hover {
  color: var(--clr-surface);
  background-color: var(--clr-primary-hover);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  box-shadow: var(--sh-xl);
  padding: var(--sp-6);
  display: none;
}

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

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

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

.cookie-banner__title {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.cookie-banner__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

.cookie-banner__desc a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background-color: var(--clr-overlay);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.cookie-modal-overlay.visible {
  display: flex;
}

.cookie-modal {
  background-color: var(--clr-surface);
  border-radius: var(--rad-xl);
  box-shadow: var(--sh-2xl, 0 24px 64px rgba(0,0,0,0.18));
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-8);
}

.cookie-modal__title {
  font-family: var(--ff-body);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.cookie-modal__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
  line-height: var(--lh-normal);
}

.cookie-category {
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-2);
}

.cookie-category__name {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.cookie-category__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background-color: var(--clr-border);
  border-radius: var(--rad-full);
  transition: background-color var(--tr-base);
  cursor: pointer;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--clr-surface);
  border-radius: var(--rad-full);
  transition: transform var(--tr-base);
  box-shadow: var(--sh-xs);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--clr-primary);
}

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

.toggle-switch input:disabled + .toggle-slider {
  background-color: var(--clr-primary-mid);
  cursor: not-allowed;
}

.toggle-switch input:disabled:checked + .toggle-slider {
  background-color: var(--clr-primary-mid);
}

.always-on {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary);
  background-color: var(--clr-primary-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--rad-full);
  white-space: nowrap;
}

.cookie-modal__actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--rad-full);
  border: 2px solid transparent;
  transition: background-color var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--sh-focus);
}

.btn--primary {
  color: var(--clr-surface);
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn--primary:hover {
  color: var(--clr-surface);
  background-color: var(--clr-primary-hover);
  border-color: var(--clr-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--secondary {
  color: var(--clr-surface);
  background-color: var(--clr-secondary);
  border-color: var(--clr-secondary);
}

.btn--secondary:hover {
  color: var(--clr-surface);
  background-color: var(--clr-secondary-hover);
  border-color: var(--clr-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

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

.btn--outline:hover {
  color: var(--clr-surface);
  background-color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--ghost {
  color: var(--clr-text-secondary);
  background-color: transparent;
  border-color: var(--clr-border);
}

.btn--ghost:hover {
  color: var(--clr-text);
  background-color: var(--clr-bg-alt);
  border-color: var(--clr-border);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
}

.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--fs-lg);
}

.main-content {
  padding-top: var(--nav-h);
}

.section {
  padding-block: var(--sp-24);
}

.section--sm {
  padding-block: var(--sp-16);
}

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

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

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--clr-surface);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background-color: var(--clr-primary-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--rad-full);
  margin-bottom: var(--sp-4);
}

.section--dark .section__tag {
  color: var(--clr-primary-light);
  background-color: rgba(255, 255, 255, 0.15);
}

.section__title {
  font-size: var(--fs-4xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}

.section--dark .section__title {
  color: var(--clr-surface);
}

.section__subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

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

.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f5ec 0%, #f7faf7 40%, #fef9ee 100%);
  padding-block: var(--sp-20);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background-color: var(--clr-primary-light);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--rad-full);
  margin-bottom: var(--sp-5);
}

.hero__title {
  font-size: var(--fs-6xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  margin-bottom: var(--sp-5);
}

.hero__title em {
  font-style: italic;
  color: var(--clr-primary);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
  flex-wrap: wrap;
}

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

.hero__stat-value {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: var(--sp-1);
}

.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(26, 107, 60, 0.08) 0%, transparent 70%);
  border-radius: var(--rad-full);
}

.hero__img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--rad-2xl);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(26, 107, 60, 0.15));
  transition: transform var(--tr-slow);
}

.hero__img:hover {
  transform: translateY(-6px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.benefit-card {
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--rad-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--sh-sm);
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--clr-primary-light);
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--rad-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-primary-light);
  flex-shrink: 0;
  overflow: hidden;
}

.benefit-card__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  font-family: var(--ff-body);
}

.benefit-card__body {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary-light), var(--clr-primary-mid), var(--clr-primary-light));
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding-top: var(--sp-2);
}

.step-item__number {
  width: 72px;
  height: 72px;
  border-radius: var(--rad-full);
  background-color: var(--clr-primary);
  color: var(--clr-surface);
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-md);
  position: relative;
  z-index: 1;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}

.step-item:hover .step-item__number {
  transform: scale(1.08);
  box-shadow: var(--sh-lg);
}

.step-item__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  font-family: var(--ff-body);
}

.step-item__body {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.timeline-section {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #145530 100%);
  padding-block: var(--sp-24);
  overflow: hidden;
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}

.timeline-section .section__header {
  position: relative;
  z-index: 1;
}

.timeline {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  padding-bottom: var(--sp-4);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.timeline-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding-top: var(--sp-2);
  position: relative;
}

.timeline-item__dot {
  width: 56px;
  height: 56px;
  border-radius: var(--rad-full);
  background-color: var(--clr-secondary);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.timeline-item:hover .timeline-item__dot {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
}

.timeline-item__dot-svg {
  width: 26px;
  height: 26px;
}

.timeline-item__time {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-secondary);
  font-family: var(--ff-body);
}

.timeline-item__label {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-surface);
  font-family: var(--ff-body);
}

.timeline-item__note {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.65);
  max-width: 120px;
  line-height: var(--lh-normal);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.resource-card {
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--rad-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
}

.resource-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--clr-bg-alt);
}

.resource-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.resource-card:hover .resource-card__img {
  transform: scale(1.04);
}

.resource-card__body {
  padding: var(--sp-8);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.resource-card__tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.resource-card__title {
  font-size: var(--fs-2xl);
  color: var(--clr-text);
  line-height: var(--lh-snug);
  font-family: var(--ff-body);
  font-weight: var(--fw-bold);
}

.resource-card__body-text {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary);
  margin-top: var(--sp-2);
  transition: gap var(--tr-fast);
}

.resource-card__link:hover {
  gap: var(--sp-3);
}

.resource-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--tr-fast);
}

.resource-card:hover .resource-card__link svg {
  transform: translateX(4px);
}

.cta-section {
  background: linear-gradient(135deg, #1a6b3c 0%, #0d4a29 100%);
  padding-block: var(--sp-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-size: var(--fs-5xl);
  color: var(--clr-surface);
  margin-bottom: var(--sp-5);
}

.cta-section__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--sp-8);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

.cta-section__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn--light {
  color: var(--clr-primary);
  background-color: var(--clr-surface);
  border-color: var(--clr-surface);
}

.btn--light:hover {
  color: var(--clr-primary-hover);
  background-color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn--outline-light {
  color: var(--clr-surface);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  color: var(--clr-surface);
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-surface);
  transform: translateY(-2px);
}

.disclaimer-section {
  background-color: var(--clr-secondary-light);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding-block: var(--sp-10);
}

.disclaimer-box {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.disclaimer-box__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: var(--clr-secondary);
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-1);
}

.disclaimer-box__icon svg {
  width: 24px;
  height: 24px;
}

.disclaimer-box__title {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.disclaimer-box__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.intro-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.intro-feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-start;
}

.intro-feature__icon {
  width: 52px;
  height: 52px;
  background-color: var(--clr-primary-light);
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-feature__icon svg {
  width: 28px;
  height: 28px;
}

.intro-feature__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  font-family: var(--ff-body);
}

.intro-feature__body {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.page-hero {
  background: linear-gradient(135deg, #e8f5ec 0%, #f7faf7 50%, #fef9ee 100%);
  padding-block: var(--sp-24);
  padding-top: calc(var(--sp-24) + var(--nav-h));
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.page-hero__title {
  font-size: var(--fs-5xl);
  line-height: var(--lh-snug);
  color: var(--clr-text);
  margin-bottom: var(--sp-5);
}

.page-hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.page-hero__img {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  border-radius: var(--rad-xl);
  filter: drop-shadow(0 12px 32px rgba(26, 107, 60, 0.12));
  transition: transform var(--tr-slow);
}

.page-hero__img:hover {
  transform: translateY(-5px);
}

.content-section {
  padding-block: var(--sp-20);
}

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

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-img {
  width: 100%;
  border-radius: var(--rad-xl);
  box-shadow: var(--sh-lg);
  transition: transform var(--tr-slow);
}

.content-img:hover {
  transform: translateY(-5px);
}

.content-body__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background-color: var(--clr-primary-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--rad-full);
  margin-bottom: var(--sp-4);
}

.content-body__title {
  font-size: var(--fs-3xl);
  color: var(--clr-text);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-5);
}

.content-body__text {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.content-body__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.content-body__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.content-body__list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: var(--rad-full);
  background-color: var(--clr-primary-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a6b3c'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.highlight-card {
  background: linear-gradient(135deg, var(--clr-primary-light) 0%, rgba(255,255,255,0.6) 100%);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--rad-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}

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

.highlight-card__value {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.highlight-card__label {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  font-weight: var(--fw-medium);
}

.contact-section {
  padding-block: var(--sp-24);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.contact-info__title {
  font-size: var(--fs-3xl);
  color: var(--clr-text);
  line-height: var(--lh-snug);
}

.contact-info__body {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

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

.contact-detail__icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-primary);
}

.contact-detail__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.contact-detail__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.contact-detail__value {
  font-size: var(--fs-base);
  color: var(--clr-text);
  font-weight: var(--fw-medium);
}

.contact-form-card {
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--rad-xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.form-label .required {
  color: var(--clr-error);
  margin-left: var(--sp-1);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  border: 2px solid var(--clr-border);
  border-radius: var(--rad-md);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast), background-color var(--tr-fast);
  line-height: var(--lh-normal);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-muted);
}

.form-input:hover,
.form-textarea:hover {
  border-color: var(--clr-primary-mid);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  background-color: var(--clr-surface);
  box-shadow: var(--sh-focus);
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: var(--clr-error);
  background-color: var(--clr-error-bg);
  box-shadow: var(--sh-focus-error);
}

.form-input.is-valid,
.form-textarea.is-valid {
  border-color: var(--clr-success);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-error-msg {
  font-size: var(--fs-xs);
  color: var(--clr-error);
  font-weight: var(--fw-medium);
  display: none;
  align-items: center;
  gap: var(--sp-1);
}

.form-error-msg.visible {
  display: flex;
}

.form-char-count {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-align: right;
  margin-top: var(--sp-1);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background-color: var(--clr-bg-alt);
  border-radius: var(--rad-md);
  border: 1px solid var(--clr-border-light);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-normal);
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-md);
}

.thank-you-section {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--sp-24);
  background: linear-gradient(135deg, #e8f5ec 0%, #f7faf7 100%);
}

.thank-you-card {
  background-color: var(--clr-surface);
  border-radius: var(--rad-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  max-width: 560px;
  box-shadow: var(--sh-xl);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--clr-primary-light);
  border-radius: var(--rad-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
}

.thank-you-title {
  font-size: var(--fs-4xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.thank-you-body {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.policy-page {
  padding-top: var(--nav-h);
  padding-bottom: var(--sp-24);
}

.policy-hero {
  background: linear-gradient(135deg, var(--clr-bg-alt) 0%, var(--clr-bg) 100%);
  padding-block: var(--sp-16);
  border-bottom: 1px solid var(--clr-border-light);
}

.policy-hero__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background-color: var(--clr-primary-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--rad-full);
  margin-bottom: var(--sp-4);
}

.policy-hero__title {
  font-size: var(--fs-4xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.policy-hero__meta {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.policy-content {
  max-width: 800px;
  margin-inline: auto;
  padding-top: var(--sp-12);
}

.policy-content h2 {
  font-size: var(--fs-2xl);
  color: var(--clr-text);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-border-light);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  font-size: var(--fs-xl);
  color: var(--clr-text);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
}

.policy-content p {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.policy-content ul,
.policy-content ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-4);
}

.policy-content li {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  position: relative;
  padding-left: var(--sp-5);
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--clr-primary);
  border-radius: var(--rad-full);
}

.policy-content ol {
  counter-reset: ol-counter;
}

.policy-content ol li {
  counter-increment: ol-counter;
}

.policy-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

.policy-content a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--clr-primary-hover);
}

.policy-info-box {
  background-color: var(--clr-primary-light);
  border-left: 3px solid var(--clr-primary);
  border-radius: 0 var(--rad-md) var(--rad-md) 0;
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
}

.policy-info-box p {
  color: var(--clr-text);
  margin-bottom: 0;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-6);
  font-size: var(--fs-sm);
}

.policy-table th,
.policy-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.policy-table th {
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  background-color: var(--clr-bg-alt);
}

.policy-table td {
  color: var(--clr-text-secondary);
}

.site-footer {
  background-color: var(--clr-text);
  color: var(--clr-surface);
  padding-top: var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-surface);
  text-decoration: none;
  transition: opacity var(--tr-fast);
}

.footer-logo:hover {
  color: var(--clr-surface);
  opacity: 0.85;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--rad-sm);
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--lh-relaxed);
  max-width: 280px;
}

.footer-address {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-nav-title {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-surface);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.footer-nav-link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--tr-fast);
}

.footer-nav-link:hover {
  color: var(--clr-surface);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-block: var(--sp-6);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer-policies {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer-policy-link {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--tr-fast);
}

.footer-policy-link:hover {
  color: var(--clr-surface);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity var(--tr-slow);
}

.fade-in.in-view {
  opacity: 1;
}

@media (max-width: 1024px) {
  :root {
    --fs-6xl: 3rem;
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__image-wrap {
    order: -1;
  }

  .hero__img {
    max-width: 400px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .page-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero__img {
    margin-inline: auto;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-grid--reverse {
    direction: ltr;
  }

  .highlight-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 768px) {
  :root {
    --fs-6xl: 2.5rem;
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --sp-24: 4rem;
    --sp-20: 3rem;
  }

  .container {
    padding-inline: var(--sp-4);
  }

  .section {
    padding-block: var(--sp-16);
  }

  .section__title {
    font-size: var(--fs-3xl);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .highlight-cards {
    grid-template-columns: 1fr;
  }

  .intro-feature-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    gap: var(--sp-5);
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .cta-section {
    padding-block: var(--sp-16);
  }

  .policy-hero__title {
    font-size: var(--fs-3xl);
  }

  .contact-form-card {
    padding: var(--sp-6);
  }

  .cookie-modal {
    padding: var(--sp-6);
  }
}

@media (max-width: 480px) {
  :root {
    --fs-6xl: 2rem;
    --fs-5xl: 1.75rem;
    --fs-4xl: 1.5rem;
  }

  .hero {
    padding-block: var(--sp-12);
  }

  .hero__img {
    max-width: 320px;
  }

  .cta-section__title {
    font-size: var(--fs-4xl);
  }

  .thank-you-card {
    padding: var(--sp-10) var(--sp-6);
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--clr-primary);
  color: var(--clr-surface);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--rad-md);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  z-index: 9999;
  text-decoration: none;
  transition: top var(--tr-fast);
}

.skip-link:focus {
  top: var(--sp-4);
}
