:root {
  --clr-primary: #3d6b4f;
  --clr-primary-dark: #274d36;
  --clr-primary-light: #5a8f6e;
  --clr-accent: #c07a3a;
  --clr-accent-dark: #9c5e24;
  --clr-bg: #f5f7f4;
  --clr-bg-alt: #eaf0ea;
  --clr-bg-dark: #1c2b22;
  --clr-surface: #ffffff;
  --clr-surface-2: #eef4ee;
  --clr-text: #1a2620;
  --clr-text-muted: #4e6358;
  --clr-text-light: #88a494;
  --clr-border: #cdddd2;
  --clr-success: #2e7d4f;
  --clr-error: #b83232;
  --clr-overlay: rgba(28, 43, 34, 0.58);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --lh-tight: 1.2;
  --lh-snug: 1.4;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  --shadow-xs: 0 1px 3px rgba(61,107,79,0.08);
  --shadow-sm: 0 2px 8px rgba(61,107,79,0.10);
  --shadow-md: 0 4px 20px rgba(61,107,79,0.13);
  --shadow-lg: 0 8px 40px rgba(61,107,79,0.18);
  --shadow-xl: 0 16px 60px rgba(61,107,79,0.22);
  --shadow-accent: 0 4px 20px rgba(192,122,58,0.28);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --container-max: 1200px;
  --header-height: 70px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-body);
}

input, textarea, select {
  font-family: var(--ff-body);
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(232,164,74,0.12);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 620px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .section-desc {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background: var(--clr-accent-dark);
  color: #fff;
  box-shadow: 0 8px 30px rgba(232,164,74,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-6);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.section-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.section-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.section-img-wrap:hover img {
  transform: scale(1.03);
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  margin: 0 auto;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topics-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-12);
  line-height: 0;
}

.topics-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.topics-img-wrap:hover img {
  transform: scale(1.03);
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  line-height: 1;
}

.logo-text span {
  color: var(--clr-accent);
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-list a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--clr-primary);
  background: var(--clr-bg-alt);
}

.header-cta {
  flex-shrink: 0;
}

.header-cta .btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--fs-sm);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--clr-bg-alt);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  z-index: 899;
  padding: var(--space-4) var(--space-6);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav-list a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-list a:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-primary);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, #2a4a35 50%, var(--clr-primary) 100%);
  padding-top: var(--header-height);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--clr-accent);
  top: -200px;
  right: -150px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--clr-primary-light);
  bottom: -100px;
  left: -100px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: #fff;
  top: 40%;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: var(--space-24);
}

.hero-text {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: #fff;
  margin-bottom: var(--space-6);
}

.hero-title em {
  font-style: normal;
  color: var(--clr-accent);
}

.hero-desc {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}


/* ── AWARENESS ── */
.awareness {
  padding-block: var(--space-24);
  background: var(--clr-surface);
}

.awareness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.awareness-card {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.awareness-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.awareness-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--clr-primary-light);
}

.awareness-card:hover::before {
  opacity: 1;
}

.awareness-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.awareness-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.awareness-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}

.awareness-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding-block: var(--space-24);
  background: var(--clr-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
  position: relative;
}

.step-item {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
}

.step-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: #fff;
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-md);
}

.step-item h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}

.step-item p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* ── BENEFITS ── */
.benefits {
  padding-block: var(--space-24);
  background: var(--clr-surface);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.benefits-visual {
  display: flex;
  justify-content: center;
  margin: 0;
}


.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.benefit-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(44,95,138,0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-primary);
}

.benefit-item h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}

.benefit-item p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-snug);
}

/* ── TOPICS ── */
.topics {
  padding-block: var(--space-24);
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.topic-card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.topic-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.topic-card-header {
  padding: var(--space-8) var(--space-6) var(--space-5);
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.topic-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.topic-card-header svg {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-3);
  opacity: 0.9;
}

.topic-card-header h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.topic-card-body {
  padding: var(--space-6);
}

.topic-card-body p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.topic-tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-primary);
  background: rgba(44,95,138,0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ── STATS ── */
.stats {
  padding-block: var(--space-20);
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-primary-dark) 50%, var(--clr-primary) 100%);
  position: relative;
  overflow: hidden;
}

.stats::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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  position: relative;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: var(--space-6);
}

.stat-value {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.82);
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding-block: var(--space-24);
  background: var(--clr-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--clr-accent);
}

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.author-role {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ── FAQ ── */
.faq {
  padding-block: var(--space-24);
  background: var(--clr-bg);
}

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  text-align: left;
  gap: var(--space-4);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--clr-primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--clr-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--clr-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-primary);
  color: #fff;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* ── CONTACT ── */
.contact {
  padding-block: var(--space-24);
  background: var(--clr-surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

.contact-info p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(44,95,138,0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--clr-primary);
}

.contact-detail-item h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.contact-detail-item a:hover {
  color: var(--clr-primary);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  display: block;
  width: 100% !important;
  min-width: 0;
  height: 340px;
}

.contact-form-wrap {
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.form-group label .required {
  color: var(--clr-error);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(44,95,138,0.12);
}

.form-control.error {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}

.form-control.success {
  border-color: var(--clr-success);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--clr-error);
  display: none;
}

.form-error.visible {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-primary);
  cursor: pointer;
}

.form-checkbox label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-snug);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.form-checkbox-error {
  font-size: var(--fs-xs);
  color: var(--clr-error);
  margin-top: var(--space-1);
  display: none;
}

.form-checkbox-error.visible {
  display: block;
}

/* ── DISCLAIMER ── */
.disclaimer {
  padding-block: var(--space-12);
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.disclaimer-inner {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  max-width: 900px;
  margin-inline: auto;
}

.disclaimer-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,164,74,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclaimer-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-accent-dark);
}

.disclaimer-inner h3 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}

.disclaimer-inner p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  color: #fff;
  font-size: var(--fs-xl);
  display: block;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
}


.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: #fff;
  margin-bottom: var(--space-5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-6);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.85);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
  padding: var(--space-6) var(--space-8);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}

.cookie-banner-text p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-snug);
}

.cookie-banner-text a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner-actions .btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--fs-sm);
}

/* ── COOKIE MODAL ── */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-overlay);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.cookie-modal-overlay.visible {
  opacity: 1;
}

.cookie-modal-overlay.hidden {
  display: none;
}

.cookie-modal {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-8);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.cookie-modal-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  background: var(--clr-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cookie-modal-close:hover {
  background: var(--clr-border);
  color: var(--clr-text);
}

.cookie-modal-close svg {
  width: 16px;
  height: 16px;
}

.cookie-modal p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.cookie-category {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.cookie-category-header h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.cookie-category p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--clr-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  background: var(--clr-primary);
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  flex: 1;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-sm);
}

/* ── LEGAL PAGES ── */
.legal-hero {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  color: #fff;
}

.legal-hero h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.legal-hero p {
  font-size: var(--fs-md);
  opacity: 0.82;
}

.legal-content {
  padding-block: var(--space-16);
  background: var(--clr-surface);
}

.legal-body {
  max-width: 820px;
  margin-inline: auto;
}

.legal-body h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--clr-border);
}

.legal-body h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-body p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.legal-body ul, .legal-body ol {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-body ol {
  list-style: decimal;
}

.legal-body li {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2);
}

.legal-body a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.legal-body a:hover {
  color: var(--clr-primary-dark);
}

.legal-info-box {
  background: rgba(44,95,138,0.07);
  border-left: 4px solid var(--clr-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
}

.legal-info-box p {
  margin-bottom: 0;
  font-size: var(--fs-sm);
  color: var(--clr-text);
}

.legal-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.legal-table th {
  background: var(--clr-bg-alt);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.legal-table td {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:hover td {
  background: var(--clr-bg);
}

.home-btn-wrap {
  margin-bottom: var(--space-8);
}

/* ── THANK YOU PAGE ── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-primary) 100%);
  padding: var(--space-8);
}

.thankyou-card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr-success), #3aaa70);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  box-shadow: 0 8px 30px rgba(46,139,87,0.28);
}

.thankyou-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.thankyou-card h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-4);
}

.thankyou-card p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .menu-toggle {
    display: flex;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
    padding-block: var(--space-16);
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: flex;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-img-wrap {
    max-width: 100%;
  }

  .hero-title {
    font-size: var(--fs-3xl);
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  :root {
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.875rem;
    --fs-2xl: 1.5rem;
  }

  .container {
    padding-inline: var(--space-4);
  }

  .section-title {
    font-size: var(--fs-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    left: var(--space-3);
    right: var(--space-3);
    bottom: var(--space-3);
    padding: var(--space-5) var(--space-5);
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-hero h1 {
    font-size: var(--fs-2xl);
  }

  .thankyou-card {
    padding: var(--space-10) var(--space-6);
  }
}

.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;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--fs-2xl);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
