/* ============================================================
   ROOT & DESIGN TOKENS
   GlitterGrid-inspired: teal/green palette, Manrope font
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #22c55e;
  --teal:        #0f766e;
  --teal-light:  #14b8a6;
  --green-dark:  #15803d;
  --green-pale:  #f0fdf4;
  --teal-pale:   #f0fdfa;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --bg:          #ffffff;
  --bg-alt:      #f9fafb;
  --bg-alt2:     #f0fdf4;
  --white:       #ffffff;
  --radius:      18px;
  --radius-lg:   26px;
  --shadow:      0 8px 32px rgba(15,118,110,0.10);
  --shadow-lg:   0 18px 48px rgba(15,118,110,0.14);
  --gradient:    linear-gradient(135deg, var(--green), var(--teal-light));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid rgba(20,184,166,0.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 { margin-top: 10px; }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: clamp(38px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: 18px; }

h2 em, h3 em { font-style: italic; color: var(--teal); }

p { color: var(--text-muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.45);
}

.btn-primary.btn-large { padding: 16px 36px; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--teal);
  background: var(--green-pale);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--bg-alt);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { border-color: var(--teal); background: var(--green-pale); }

.btn-outline-green {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  margin-top: 12px;
}

.btn-outline-green:hover { background: var(--teal); color: #fff; }

/* ============================================================
   COOKIE BANNER & MODAL
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 700px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  padding: 20px 24px;
}

.cookie-content p { font-size: 14px; margin-bottom: 14px; }
.cookie-content a { color: var(--teal); font-weight: 600; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.55);
  z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.modal-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.cookie-option { margin-bottom: 16px; }
.cookie-option label { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.cookie-option p { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0; z-index: 800;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--text);
  font-weight: 400;
}

.logo-dot { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links li a:hover { color: var(--teal); background: var(--green-pale); }

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 999px !important;
  box-shadow: 0 3px 12px rgba(34,197,94,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(34,197,94,0.45) !important;
  background: var(--gradient) !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--green-pale) 0%, #fff 60%);
  padding: 90px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid rgba(20,184,166,0.3);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-title .italic { font-style: italic; }
.hero-title .accent { color: var(--teal); }

.hero-desc {
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  font-family: 'DM Serif Display', serif;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero image */
.hero-right { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.hero-float-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-family: 'Manrope', sans-serif;
}

.float-icon { font-size: 22px; color: var(--green); }

.float-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.float-text span { font-weight: 400; color: var(--text-muted); font-size: 12px; }

/* ============================================================
   PHILOSOPHY / WHY US
   ============================================================ */
.philosophy {
  padding: 100px 0;
  background: var(--bg);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.phil-left h2 { margin-bottom: 16px; }
.phil-left p { font-size: 16px; margin-bottom: 28px; }

.phil-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phil-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.phil-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(20,184,166,0.3);
  transform: translateY(-2px);
}

.phil-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 8px;
}

.phil-card h4 { margin-bottom: 6px; font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; }
.phil-card p { font-size: 14px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--bg-alt);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

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

.svc-img {
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.svc-img img { transition: transform 0.5s; }
.service-card:hover .svc-img img { transform: scale(1.05); }

.svc-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-tag-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.svc-body h3 { margin-bottom: 10px; font-size: 21px; }
.svc-body p { font-size: 14px; margin-bottom: 16px; }

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  flex: 1;
}

.svc-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.svc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 50%, #14b8a6 100%);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-block { text-align: center; padding: 20px 48px; }

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-banner .stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process {
  padding: 100px 0;
  background: var(--bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.process-step {
  position: relative;
  padding: 28px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.process-step:hover {
  box-shadow: var(--shadow);
  border-color: rgba(20,184,166,0.3);
}

/* Connector line between steps */
.step-line {
  position: absolute;
  top: 36px; right: -8px;
  width: 16px; height: 2px;
  background: var(--border);
  z-index: 1;
}

.step-num-wrap {
  margin-bottom: 16px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
}

.step-body h4 { margin-bottom: 8px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; }
.step-body p { font-size: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-alt2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.t-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.t-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.t-stars {
  font-size: 16px;
  color: #f59e0b;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.t-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  margin-bottom: 24px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.t-avatar img { width: 100%; height: 100%; object-fit: cover; }

.t-name { font-weight: 700; font-size: 14px; color: var(--text); }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photos {
  position: relative;
  height: 520px;
}

.photo-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.photo-secondary {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 55%;
  height: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 16px 22px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}

.badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1;
}

.badge-lbl { font-size: 12px; font-weight: 600; opacity: 0.9; margin-top: 4px; }

.about-text { padding: 20px 0; }
.about-text h2 { margin-bottom: 16px; }
.about-text > p { font-size: 16px; margin-bottom: 28px; }

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.about-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}

.feat-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-feat strong { color: var(--text); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open { box-shadow: var(--shadow); border-color: rgba(20,184,166,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  text-align: left;
  gap: 12px;
}

.faq-arrow {
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-a p { font-size: 14px; line-height: 1.75; }

/* ============================================================
   CONTACT / BOOKING FORM
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact-sub { color: var(--text-muted); font-size: 16px; margin-top: 8px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--green-pale);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.info-value { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.5; }
.info-value a { color: var(--teal); }

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--green-pale);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
}

.trust-item { font-size: 13px; font-weight: 600; color: var(--teal); }

/* Form */
.registration-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.15);
}

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

.form-policy label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); cursor: pointer; }
.form-policy a { color: var(--teal); font-weight: 600; }
.form-policy input[type="checkbox"] { margin-top: 2px; accent-color: var(--teal); }

.policy-check-label { display: flex !important; align-items: flex-start; gap: 10px; }

.form-submit-row { margin-top: 4px; }
.form-submit-row .btn-primary { width: 100%; justify-content: center; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-pale);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text); color: rgba(255,255,255,0.7); }

.footer-cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, #14b8a6 100%);
  padding: 60px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta-strip h3 {
  color: #fff;
  font-size: 28px;
}

.footer-cta-strip h3 em { font-style: italic; opacity: 0.9; }

.footer-cta-strip .btn-primary {
  background: #fff;
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.footer-cta-strip .btn-primary:hover { transform: translateY(-2px); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.disclaimer { font-size: 12px !important; opacity: 0.5; }

.footer-links h4 {
  color: #fff;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 28px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--green); }

.cookie-pref-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-pref-btn:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--d, 0s);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { max-width: 480px; margin: 0 auto; }
  .hero-img-wrap { aspect-ratio: 16/10; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }

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

  .stats-grid { flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat-block { width: 50%; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }

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

  .about-grid { grid-template-columns: 1fr; }
  .about-photos { height: 360px; margin-bottom: 60px; }
  .photo-secondary { display: none; }
  .about-badge { left: auto; right: -10px; }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 28px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 10px 14px; }
  .navbar { position: relative; }

  .burger { display: flex; }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }

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

  .form-row { grid-template-columns: 1fr; }
  .registration-form { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero { padding: 60px 0; }
  .stat-block { width: 100%; }
}
