@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --slate-blue: #3d5a73;
  --slate-blue-dark: #2a3f52;
  --slate-blue-deeper: #1c2d3e;
  --slate-blue-light: #4e6e8a;
  --warm-beige: #f0e8d8;
  --warm-beige-light: #f7f2ea;
  --warm-beige-mid: #e8dcc8;
  --earth-green: #5a7a5a;
  --earth-green-light: #6b8f6b;
  --burgundy: #7a2d3e;
  --burgundy-light: #8f3a4c;
  --text-primary: #1c2d3e;
  --text-secondary: #4a5f70;
  --text-muted: #7a8e9a;
  --text-on-dark: #f0e8d8;
  --text-on-dark-muted: #b8c8d4;
  --border-light: #d8cebb;
  --border-mid: #b8c8d4;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(28, 45, 62, 0.08);
  --shadow-md: 0 4px 20px rgba(28, 45, 62, 0.12);
  --shadow-lg: 0 8px 40px rgba(28, 45, 62, 0.16);
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --nav-height: 72px;
  --max-width: 1440px;
  --content-width: 1100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--warm-beige-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.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;
}

/* ===================== TYPOGRAPHY ===================== */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.text-large {
  font-size: 1.2rem;
  line-height: 1.65;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-muted {
  color: var(--text-muted);
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-green);
}

/* ===================== NAVIGATION ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--slate-blue-deeper);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(28, 45, 62, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background-color: var(--earth-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-logo-mark span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--warm-beige-light);
  line-height: 1;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-on-dark);
  background-color: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--warm-beige);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background-color: var(--earth-green);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-on-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--slate-blue-deeper);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
  z-index: 999;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 12px 48px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--text-on-dark);
  background-color: rgba(255,255,255,0.04);
}

/* ===================== FOOTER ===================== */

.site-footer {
  background-color: var(--slate-blue-deeper);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-mark {
  width: 32px;
  height: 32px;
  background-color: var(--earth-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.footer-brand-mark span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-beige-light);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin-bottom: 20px;
}

.footer-edu-notice {
  display: inline-block;
  padding: 8px 14px;
  background-color: rgba(90, 122, 90, 0.2);
  border-left: 3px solid var(--earth-green);
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-green-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--warm-beige);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-contact-value {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

.footer-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-top: 4px;
}

.footer-hours-day {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-hours-time {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

.footer-legal {
  padding: 32px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 100%;
}

.footer-disclaimer strong {
  color: var(--text-on-dark-muted);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-edu-bottom {
  font-size: 0.8rem;
  color: var(--earth-green-light);
  font-weight: 500;
}

/* ===================== COOKIE BANNER ===================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--slate-blue-deeper);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(28, 45, 62, 0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
  flex: 1;
  min-width: 260px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  padding: 9px 20px;
  background-color: var(--earth-green);
  color: var(--warm-beige-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-cookie-accept:hover {
  background-color: var(--earth-green-light);
}

.btn-cookie-decline {
  padding: 9px 20px;
  background-color: transparent;
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-cookie-decline:hover {
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.3);
}

.btn-cookie-more {
  padding: 9px 16px;
  background-color: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-cookie-more:hover {
  color: var(--text-on-dark-muted);
  text-decoration-color: var(--text-on-dark-muted);
}

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  line-height: 1;
}

.btn-primary {
  padding: 14px 32px;
  background-color: var(--earth-green);
  color: var(--warm-beige-light);
}

.btn-primary:hover {
  background-color: var(--earth-green-light);
  box-shadow: 0 4px 16px rgba(90, 122, 90, 0.3);
}

.btn-primary-lg {
  padding: 18px 44px;
  font-size: 1.0625rem;
}

.btn-outline {
  padding: 13px 31px;
  background-color: transparent;
  color: var(--slate-blue);
  border: 1px solid var(--slate-blue);
}

.btn-outline:hover {
  background-color: var(--slate-blue);
  color: var(--warm-beige-light);
}

.btn-outline-light {
  padding: 13px 31px;
  background-color: transparent;
  color: var(--warm-beige);
  border: 1px solid rgba(240, 232, 216, 0.4);
}

.btn-outline-light:hover {
  background-color: rgba(240, 232, 216, 0.1);
  border-color: rgba(240, 232, 216, 0.7);
}

.btn-ghost {
  padding: 11px 24px;
  background-color: transparent;
  color: var(--slate-blue);
  border: none;
  font-weight: 500;
}

.btn-ghost:hover {
  background-color: rgba(61, 90, 115, 0.07);
}

/* ===================== HERO SECTION ===================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 45, 62, 0.92) 0%,
    rgba(28, 45, 62, 0.7) 40%,
    rgba(28, 45, 62, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth-green-light);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(107, 143, 107, 0.4);
  border-radius: var(--radius-sm);
}

.hero h1 {
  color: var(--text-on-dark);
  max-width: 780px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-trust-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-beige);
}

.hero-trust-label {
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  line-height: 1.3;
}

.hero-trust-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255,255,255,0.15);
}

.hero-edu-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 20px;
}

/* ===================== QUIZ BLOCK ===================== */

.quiz-section {
  padding: 120px 0;
  background-color: var(--warm-beige-light);
}

.quiz-header {
  text-align: center;
  margin-bottom: 64px;
}

.quiz-header h2 {
  color: var(--slate-blue-deeper);
  margin-bottom: 16px;
}

.quiz-header p {
  max-width: 580px;
  margin: 0 auto;
}

.quiz-container {
  max-width: 780px;
  margin: 0 auto;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.quiz-progress-bar {
  height: 4px;
  background-color: var(--border-light);
  position: relative;
}

.quiz-progress-fill {
  height: 100%;
  background-color: var(--earth-green);
  transition: width 0.5s ease;
}

.quiz-progress-label {
  position: absolute;
  right: 20px;
  top: -28px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.quiz-body {
  padding: 48px 52px;
}

.quiz-question {
  display: none;
  animation: fadeSlideIn 0.4s ease forwards;
}

.quiz-question.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quiz-q-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 12px;
}

.quiz-q-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.35;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  text-align: left;
  background-color: transparent;
  width: 100%;
}

.quiz-option:hover {
  border-color: var(--slate-blue-light);
  background-color: rgba(61, 90, 115, 0.04);
}

.quiz-option.selected {
  border-color: var(--earth-green);
  background-color: rgba(90, 122, 90, 0.06);
}

.quiz-option.correct {
  border-color: var(--earth-green);
  background-color: rgba(90, 122, 90, 0.1);
}

.quiz-option.incorrect {
  border-color: var(--burgundy);
  background-color: rgba(122, 45, 62, 0.06);
}

.quiz-option-letter {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--warm-beige-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-blue);
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.quiz-option.selected .quiz-option-letter,
.quiz-option.correct .quiz-option-letter {
  background-color: var(--earth-green);
  color: var(--white);
}

.quiz-option.incorrect .quiz-option-letter {
  background-color: var(--burgundy);
  color: var(--white);
}

.quiz-option-text {
  font-size: 0.975rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.quiz-explanation {
  padding: 16px 20px;
  background-color: var(--warm-beige-light);
  border-left: 3px solid var(--earth-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 28px;
  display: none;
}

.quiz-explanation.visible {
  display: block;
}

.quiz-explanation p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.quiz-result {
  display: none;
  padding: 48px 52px;
  text-align: center;
  animation: fadeSlideIn 0.5s ease forwards;
}

.quiz-result.active {
  display: block;
}

.quiz-score-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-score-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.quiz-score-ring circle {
  fill: none;
  stroke-width: 6;
}

.quiz-score-bg {
  stroke: var(--border-light);
}

.quiz-score-fill {
  stroke: var(--earth-green);
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}

.quiz-score-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-blue-deeper);
  position: relative;
  z-index: 1;
}

.quiz-result-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.quiz-result-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
}

.quiz-insights {
  text-align: left;
  margin-bottom: 36px;
}

.quiz-insights-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 14px;
}

.quiz-insight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}

.quiz-insight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--earth-green);
  margin-top: 6px;
  flex-shrink: 0;
}

.quiz-insight-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.quiz-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===================== SECTION COMMONS ===================== */

.section-pad {
  padding: 120px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--slate-blue-deeper);
}

.section-slate {
  background-color: var(--slate-blue-dark);
}

.section-beige {
  background-color: var(--warm-beige);
}

.section-beige-light {
  background-color: var(--warm-beige-light);
}

.section-white {
  background-color: var(--white);
}

.section-header {
  margin-bottom: 64px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label,
.section-header-center .label {
  display: block;
  margin-bottom: 12px;
}

.section-header h2,
.section-header-center h2 {
  margin-bottom: 16px;
}

.section-separator {
  width: 60px;
  height: 3px;
  background-color: var(--earth-green);
  margin: 20px 0 0;
}

.section-separator-center {
  width: 60px;
  height: 3px;
  background-color: var(--earth-green);
  margin: 20px auto 0;
}

/* ===================== TOPIC CARDS ===================== */

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.topic-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.topic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.topic-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--warm-beige-mid);
}

.topic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.topic-card:hover .topic-card-img img {
  transform: scale(1.04);
}

.topic-card-body {
  padding: 28px;
}

.topic-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 10px;
}

.topic-card-body h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.topic-card-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.topic-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.topic-card-link:hover {
  color: var(--earth-green);
}

.topic-card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.topic-card-link:hover::after {
  transform: translateX(3px);
}

/* ===================== TWO-COLUMN LAYOUTS ===================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col-img-tall {
  height: 520px;
}

.two-col-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background-color: rgba(28, 45, 62, 0.92);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

.two-col-img-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-beige);
  display: block;
}

.two-col-img-badge .badge-text {
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  line-height: 1.4;
}

.two-col-text h2 {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.two-col-text.on-dark h2 {
  color: var(--text-on-dark);
}

.two-col-text.on-dark p {
  color: var(--text-on-dark-muted);
}

.two-col-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 36px;
}

.two-col-feature {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--warm-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.green-bg {
  background-color: rgba(90, 122, 90, 0.15);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--earth-green);
  fill: none;
}

.feature-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-body.on-dark h3 {
  color: var(--text-on-dark);
}

.feature-body p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.feature-body.on-dark p {
  color: var(--text-on-dark-muted);
}

/* ===================== STAT STRIP ===================== */

.stat-strip {
  background-color: var(--slate-blue);
  padding: 56px 0;
}

.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--warm-beige);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.45;
}

/* ===================== FULL-WIDTH IMAGE SECTION ===================== */

.img-section {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 45, 62, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-section-caption {
  text-align: center;
  max-width: 620px;
  padding: 0 32px;
}

.img-section-caption h2 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.img-section-caption p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
}

/* ===================== INFO BLOCKS ===================== */

.info-blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-block {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--earth-green);
}

.info-block-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(90, 122, 90, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-block-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--earth-green);
  fill: none;
}

.info-block h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.info-block p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================== GLOSSARY CARDS ===================== */

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.glossary-card {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  background-color: rgba(255,255,255,0.03);
  transition: background-color 0.25s ease;
}

.glossary-card:hover {
  background-color: rgba(255,255,255,0.06);
}

.glossary-card-term {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--warm-beige);
  margin-bottom: 8px;
}

.glossary-card-abbr {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-green-light);
  margin-bottom: 12px;
}

.glossary-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin: 0;
}

/* ===================== FAQ ===================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--slate-blue);
}

.faq-question.open {
  color: var(--slate-blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-secondary);
  fill: none;
  transition: stroke 0.2s ease;
}

.faq-question.open .faq-icon {
  background-color: var(--slate-blue);
  border-color: var(--slate-blue);
  transform: rotate(45deg);
}

.faq-question.open .faq-icon svg {
  stroke: var(--white);
}

.faq-answer {
  display: none;
  padding-bottom: 22px;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 760px;
}

/* ===================== PHOTO GRID ===================== */

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.photo-mosaic-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background-color: var(--warm-beige-mid);
}

.photo-mosaic-item.span-2 {
  grid-column: span 2;
}

.photo-mosaic-item.span-row-2 {
  grid-row: span 2;
}

.photo-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-mosaic-item:hover img {
  transform: scale(1.04);
}

.photo-mosaic-item .img-height-sm {
  height: 200px;
}

.photo-mosaic-item .img-height-md {
  height: 300px;
}

.photo-mosaic-item .img-height-lg {
  height: 420px;
}

/* ===================== NOTICE / DISCLAIMER BLOCKS ===================== */

.notice-block {
  padding: 24px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--warm-beige);
}

.notice-block.notice-info {
  border-left: 4px solid var(--slate-blue-light);
  background-color: rgba(61, 90, 115, 0.05);
}

.notice-block.notice-edu {
  border-left: 4px solid var(--earth-green);
  background-color: rgba(90, 122, 90, 0.06);
}

.notice-block p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.notice-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 8px;
  display: block;
}

/* ===================== ABOUT PAGE ===================== */

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--border-mid);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--earth-green);
  background-color: var(--white);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-item:first-child {
  border-top: 1px solid var(--border-light);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border-mid);
  line-height: 1;
  min-width: 44px;
}

.value-body h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.value-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.expert-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
}

.expert-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 8px;
}

.expert-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.expert-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--slate-blue);
  line-height: 1.5;
  padding-left: 16px;
  border-left: 3px solid var(--warm-beige-mid);
  margin-bottom: 16px;
}

.expert-bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ===================== CONTACT PAGE ===================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  padding: 40px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.contact-info-block h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.contact-detail-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background-color: var(--warm-beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--slate-blue);
  fill: none;
}

.contact-detail-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.hours-row {
  display: contents;
}

.hours-day {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hours-time {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-map {
  width: 100%;
  height: 200px;
  background-color: var(--warm-beige-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--slate-blue-dark) 0%, var(--slate-blue) 50%, var(--earth-green) 100%);
  position: relative;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-pin-dot {
  width: 16px;
  height: 16px;
  background-color: var(--burgundy);
  border-radius: 50%;
  margin: 0 auto 8px;
  box-shadow: 0 0 0 5px rgba(122, 45, 62, 0.25);
}

.map-pin-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(28, 45, 62, 0.8);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.contact-form-wrap {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 48px;
}

.contact-form-wrap h2 {
  font-size: 1.7rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-label span {
  color: var(--burgundy);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--warm-beige-light);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--slate-blue-light);
  box-shadow: 0 0 0 3px rgba(61, 90, 115, 0.1);
  background-color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-disclaimer {
  padding: 14px 18px;
  background-color: var(--warm-beige);
  border-left: 3px solid var(--earth-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
}

.form-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================== POLICY PAGES ===================== */

.policy-hero {
  background-color: var(--slate-blue-deeper);
  padding: calc(var(--nav-height) + 60px) 0 72px;
}

.policy-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px;
}

.policy-hero h1 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.policy-hero-meta span {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
}

.policy-meta-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255,255,255,0.15);
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  align-items: start;
  padding: 80px 0;
}

.policy-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.policy-sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.policy-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--border-light);
  padding-left: 16px;
}

.policy-toc a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.policy-toc a:hover,
.policy-toc a.active {
  color: var(--slate-blue);
}

.policy-toc a.active {
  font-weight: 600;
}

.policy-content h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--border-light);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.policy-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 16px;
  padding-left: 0;
}

.policy-content ul li,
.policy-content ol li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 4px 0 4px 22px;
  position: relative;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--earth-green);
}

.policy-content ol {
  counter-reset: policy-counter;
}

.policy-content ol li {
  counter-increment: policy-counter;
}

.policy-content ol li::before {
  content: counter(policy-counter) '.';
  position: absolute;
  left: 0;
  top: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--earth-green);
}

.policy-warning-box {
  padding: 20px 24px;
  background-color: rgba(122, 45, 62, 0.06);
  border: 1px solid rgba(122, 45, 62, 0.2);
  border-left: 4px solid var(--burgundy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.policy-warning-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.1rem;
}

.policy-warning-box p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.policy-quote {
  margin: 28px 0;
  padding: 20px 28px;
  border-left: 4px solid var(--slate-blue-light);
  background-color: rgba(61, 90, 115, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.policy-quote p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--slate-blue);
  line-height: 1.6;
  margin: 0;
}

/* ===================== COOKIE PAGE ACCORDION ===================== */

.cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.cookie-type-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background-color: var(--white);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cookie-type-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cookie-type-dot.essential { background-color: var(--earth-green); }
.cookie-type-dot.analytics { background-color: var(--slate-blue); }
.cookie-type-dot.functional { background-color: var(--burgundy); }

.cookie-type-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cookie-type-lifetime {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cookie-type-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border-light);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: var(--slate-blue);
}

.accordion-trigger.open {
  color: var(--slate-blue);
}

.accordion-icon-wrap {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
}

.accordion-trigger.open .accordion-icon-wrap {
  background-color: var(--slate-blue);
  border-color: var(--slate-blue);
  transform: rotate(45deg);
}

.accordion-icon-wrap svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-secondary);
  fill: none;
  transition: stroke 0.2s ease;
}

.accordion-trigger.open .accordion-icon-wrap svg {
  stroke: var(--white);
}

.accordion-body {
  display: none;
  padding-bottom: 20px;
}

.accordion-body.open {
  display: block;
}

.accordion-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===================== REFUND TIMELINE ===================== */

.refund-timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin: 36px 0;
}

.refund-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--border-light);
  z-index: 0;
}

.refund-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.refund-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--earth-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--earth-green);
  flex-shrink: 0;
}

.refund-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.refund-step-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.rule-box {
  padding: 24px 28px;
  background-color: var(--warm-beige);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.rule-box h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 10px;
}

.rule-box p,
.rule-box li {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ===================== THANK YOU PAGE ===================== */

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-height) 32px 80px;
  background-color: var(--warm-beige-light);
}

.thankyou-box {
  max-width: 540px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 36px;
  background-color: rgba(90, 122, 90, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--earth-green);
  fill: none;
  stroke-width: 1.5;
}

.thankyou-box h1 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.thankyou-box p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.thankyou-divider {
  width: 48px;
  height: 2px;
  background-color: var(--earth-green);
  margin: 0 auto 40px;
}

/* ===================== ANIMATIONS ===================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .glossary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-mosaic-item.span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-img-tall {
    height: 340px;
  }

  .container--wide {
    padding: 0 24px;
  }

  .hero-content {
    padding: 0 24px 60px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .policy-sidebar {
    position: static;
    margin-bottom: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expert-grid {
    grid-template-columns: 1fr;
  }

  .info-blocks-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    padding: 20px 24px;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 80px 0;
  }

  .section-pad-sm {
    padding: 56px 0;
  }

  .container {
    padding: 0 20px;
  }

  .container--wide {
    padding: 0 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .cookie-types-grid {
    grid-template-columns: 1fr;
  }

  .quiz-body {
    padding: 28px 24px;
  }

  .quiz-result {
    padding: 28px 24px;
  }

  .refund-timeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .refund-timeline::before {
    top: 0;
    bottom: 0;
    left: 19px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .refund-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
  }

  .refund-step-dot {
    flex-shrink: 0;
  }

  .nav-mobile a {
    padding: 12px 24px;
  }

  .hero-content {
    padding: 0 20px 48px;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }
}
