/* =============================================
   ZELUGI — Main Stylesheet
   Quiet Sophistication Design System
   ============================================= */


:root {
  --base-primary: oklch(42% 0.08 145);
  --base-secondary: oklch(28% 0.04 200);
  --base-accent: oklch(62% 0.13 80);

  --primary: var(--base-primary);
  --primary-light: color-mix(in oklch, var(--base-primary), white 45%);
  --primary-lighter: color-mix(in oklch, var(--base-primary), white 72%);
  --primary-dark: color-mix(in oklch, var(--base-primary), black 25%);
  --primary-xlight: color-mix(in oklch, var(--base-primary), white 88%);

  --secondary: var(--base-secondary);
  --secondary-light: color-mix(in oklch, var(--base-secondary), white 40%);
  --secondary-dark: color-mix(in oklch, var(--base-secondary), black 30%);

  --accent: var(--base-accent);
  --accent-light: color-mix(in oklch, var(--base-accent), white 50%);
  --accent-dark: color-mix(in oklch, var(--base-accent), black 20%);
  --accent-xlight: color-mix(in oklch, var(--base-accent), white 82%);

  --surface: oklch(98% 0.005 145);
  --surface-tinted: color-mix(in oklch, var(--base-primary), white 94%);
  --surface-dark: oklch(18% 0.025 200);
  --surface-darker: oklch(13% 0.02 200);

  --text-primary: oklch(18% 0.02 200);
  --text-secondary: oklch(40% 0.02 200);
  --text-muted: oklch(58% 0.015 200);
  --text-on-dark: oklch(94% 0.01 145);
  --text-on-dark-muted: color-mix(in oklch, var(--text-on-dark), var(--surface-dark) 35%);

  --border: color-mix(in oklch, var(--base-primary), white 82%);
  --border-subtle: color-mix(in oklch, var(--base-primary), white 91%);

  --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.06), 0 1px 2px oklch(0% 0 0 / 0.04);
  --shadow-md: 0 4px 12px oklch(0% 0 0 / 0.08), 0 2px 6px oklch(0% 0 0 / 0.05);
  --shadow-lg: 0 12px 32px oklch(0% 0 0 / 0.1), 0 4px 12px oklch(0% 0 0 / 0.06);
  --shadow-xl: 0 24px 56px oklch(0% 0 0 / 0.14), 0 8px 20px oklch(0% 0 0 / 0.08);
  --shadow-colored: 0 8px 24px color-mix(in oklch, var(--base-primary), transparent 70%);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --nav-height: 72px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--surface);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


h1, h2, h3, h4, h5 { font-family: 'Lora', serif; line-height: 1.25; color: var(--text-primary); }

.heading--hero {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.heading--section {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.heading--light { color: var(--text-on-dark); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--accent-light); }

.body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}
.body-text--light { color: var(--text-on-dark-muted); }

.section__lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0.75rem auto 0;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--narrow {
  max-width: 820px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 48px;
}
.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-colored);
}
.btn--primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in oklch, var(--base-primary), transparent 55%);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn--outline--light {
  background: transparent;
  color: white;
  border-color: color-mix(in oklch, white, transparent 30%);
}
.btn--outline--light:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: color-mix(in oklch, var(--surface), transparent 5%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--nav-height);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__logo-img { width: 32px; height: 32px; }
.nav__logo-text {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav__link:hover { color: var(--primary); background: var(--primary-xlight); }
.nav__link--active { color: var(--primary); font-weight: 600; }
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}


.nav__border {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background: var(--border);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled .nav__border { transform: translateX(-50%) scaleX(1); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__hamburger:hover { background: var(--primary-xlight); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

/* =============================================
   MOBILE TAB BAR
   ============================================= */
.mobile-tabs {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: color-mix(in oklch, var(--surface), transparent 4%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px oklch(0% 0 0 / 0.08);
}
.mobile-tabs__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  min-height: 44px;
  justify-content: center;
}
.mobile-tabs__item i { font-size: 1.1rem; }
.mobile-tabs__item--active { color: var(--primary); }
.mobile-tabs__item--active i {
  background: var(--primary-xlight);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.mobile-tabs__item:hover { color: var(--primary); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  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(
    135deg,
    color-mix(in oklch, var(--surface-dark), transparent 15%) 0%,
    color-mix(in oklch, var(--primary-dark), transparent 30%) 50%,
    color-mix(in oklch, var(--surface-dark), transparent 10%) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  justify-content: center;
}


.glass-card {
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid color-mix(in oklch, white, transparent 40%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow:
    0 8px 32px oklch(0% 0 0 / 0.18),
    0 2px 8px oklch(0% 0 0 / 0.1),
    inset 0 1px 0 color-mix(in oklch, white, transparent 30%);
  width: 100%;
}
.glass-card__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.glass-card__heading {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.glass-card__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in oklch, white, transparent 18%);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.glass-card__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.page-hero--short { min-height: 42vh; }
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in oklch, var(--surface-dark), transparent 8%) 0%,
    color-mix(in oklch, var(--surface-dark), transparent 40%) 50%,
    color-mix(in oklch, var(--primary-dark), transparent 50%) 100%
  );
}
.page-hero__overlay--gradient {
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--primary-dark), transparent 10%) 0%,
    color-mix(in oklch, var(--secondary-dark), transparent 15%) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 3rem var(--space-md) 3.5rem;
  text-align: center;
}
.page-hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in oklch, white, transparent 22%);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: var(--space-3xl) 0;
}
.section--tinted { background: var(--surface-tinted); }
.section--dark {
  background: var(--surface-dark);
}
.section--wide { max-width: none; }
.section__header {
  text-align: center;
  margin-bottom: 1rem;
}

/* =============================================
   INTRO SPLIT
   ============================================= */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.intro-split__text { max-width: 560px; }
.intro-split__text .heading--section { margin-bottom: 1.25rem; margin-top: 0.5rem; }


.image-frame {
  position: relative;
}
.image-frame__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.image-frame__accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

/* =============================================
   CARD GRID
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.card-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}
.card--featured {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--primary-lighter);
}
.card--wide { padding: var(--space-lg) var(--space-lg); }
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
  transition: var(--transition);
}
.card:hover .card__icon {
  background: var(--primary);
  color: white;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.card__text {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-secondary);
}

/* =============================================
   FEATURE BLOCK
   ============================================= */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.feature-block__content { max-width: 520px; }
.feature-block__content .heading--section { margin-top: 0.5rem; margin-bottom: 1.25rem; }
.feature-block__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* =============================================
   CONTACT CARDS
   ============================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: 2.5rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-xlight);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 auto var(--space-md);
  transition: var(--transition);
}
.contact-card:hover .contact-card__icon {
  background: var(--primary);
  color: white;
}
.contact-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.contact-card__detail {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.contact-card__detail a { color: var(--primary); }
.contact-card__detail a:hover { color: var(--primary-dark); }
.contact-card__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   PRINCIPLES GRID
   ============================================= */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.principle-item {
  padding: var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.principle-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.principle-item__num {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-lighter);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.principle-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.principle-item__text {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-secondary);
}

/* =============================================
   RECOVERY GRID
   ============================================= */
.recovery-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.recovery-item {
  display: flex;
  gap: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.recovery-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.recovery-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}
.recovery-item:hover .recovery-item__icon { background: var(--primary); color: white; }
.recovery-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.recovery-item__text {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-secondary);
}

/* =============================================
   CTA BLOCK
   ============================================= */
.cta-block {
  text-align: center;
  padding: var(--space-2xl) 0;
}
.cta-block .heading--section { margin-top: 0.5rem; margin-bottom: 1rem; }
.cta-block__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-split__form .heading--section { margin-top: 0.5rem; margin-bottom: 0.75rem; }
.contact-split__info .heading--section { margin-top: 0.5rem; margin-bottom: 1.25rem; }

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.contact-info-item a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.trust-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}
.trust-quote__mark {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.trust-quote__text {
  font-family: 'Lora', serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1rem;
}
.trust-quote__cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}


.map-container {
  width: 100%;
  overflow: hidden;
}
.map-container iframe { display: block; }

/* =============================================
   FORM
   ============================================= */
.form { display: flex; flex-direction: column; gap: var(--space-md); }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
  min-height: 48px;
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 82%);
}
.form__textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form__group--check { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form__check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form__check-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: var(--transition);
  margin-top: 1px;
  position: relative;
}
.form__check-label input:checked + .form__check-custom {
  background: var(--primary);
  border-color: var(--primary);
}
.form__check-label input:checked + .form__check-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form__check-label a { color: var(--primary); }
.form__check-label a:hover { color: var(--primary-dark); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--surface-dark);
  margin-top: auto;
}
.footer__accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary-light) 100%);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding: var(--space-2xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: var(--space-md);
}
.footer__logo-img { width: 28px; height: 28px; }
.footer__logo span {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
}
.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}
.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links li {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
}
.footer__links a {
  color: var(--text-on-dark-muted);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--text-on-dark); }
.footer__links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer__links--contact i {
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.8rem;
}
.footer__bottom {
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
  padding: var(--space-md);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: color-mix(in oklch, var(--text-on-dark-muted), transparent 30%);
}

/* =============================================
   FLOATING WIDGET
   ============================================= */
.float-widget {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.float-widget__toggle {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg), var(--shadow-colored);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-widget__toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}
.float-widget__panel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: var(--transition);
}
.float-widget__panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.float-widget__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  white-space: nowrap;
}
.float-widget__option:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateX(-4px);
}
.float-widget__option i { color: var(--primary); font-size: 0.9rem; }
.float-widget__option:hover i { color: white; }

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-hero {
  min-height: calc(100vh - var(--nav-height) - 280px);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-md);
  margin-top: var(--nav-height);
}
.thanks-hero__inner {
  text-align: center;
  max-width: 580px;
}
.thanks-hero__icon {
  font-size: 3.5rem;
  color: color-mix(in oklch, white, transparent 20%);
  margin-bottom: 1.5rem;
}
.thanks-hero__heading {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.thanks-hero__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in oklch, white, transparent 22%);
  margin-bottom: 2.5rem;
}
.thanks-hero__btn { margin-top: 0; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
}
.legal-page__header {
  background: var(--surface-tinted);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}
.legal-page__header .heading--section { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.legal-page__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.legal-page__body {
  padding: var(--space-2xl) 0 var(--space-3xl);
}
.legal-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}


.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion__item {
  border-bottom: 1px solid var(--border-subtle);
}
.accordion__item:first-child { border-top: 1px solid var(--border-subtle); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}
.accordion__trigger:hover { color: var(--primary); }
.accordion__icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(180deg); }
.accordion__body {
  padding-bottom: 1.5rem;
}
.accordion__body p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}
.accordion__body p:last-child { margin-bottom: 0; }
.accordion__body strong { color: var(--text-primary); font-weight: 600; }
.accordion__body a { color: var(--primary); }
.accordion__body a:hover { color: var(--primary-dark); }

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(480px, calc(100vw - 2rem));
  background: var(--surface-dark);
  border: 1px solid color-mix(in oklch, white, transparent 85%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-consent--expanded {
  width: min(560px, calc(100vw - 2rem));
}
.cookie-consent__compact {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-consent__text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  min-width: 0;
}
.cookie-consent__text a { color: var(--accent-light); }
.cookie-consent__text a:hover { color: white; }
.cookie-consent__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-consent__accept {
  padding: 0.55rem 1.2rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}
.cookie-consent__accept:hover { background: var(--primary-dark); }
.cookie-consent__settings-btn {
  padding: 0.55rem 1.1rem;
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}
.cookie-consent__settings-btn:hover { color: white; border-color: color-mix(in oklch, white, transparent 50%); }

.cookie-consent__panel {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
}
.cookie-consent--expanded .cookie-consent__panel { display: block; }
.cookie-consent__panel-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in oklch, white, transparent 92%);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category__info { flex: 1; padding-right: 1rem; }
.cookie-category__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.2rem;
}
.cookie-category__desc {
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}
.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle__track {
  display: block;
  width: 42px;
  height: 24px;
  background: color-mix(in oklch, white, transparent 70%);
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle__track { background: var(--primary); }
.cookie-toggle input:checked + .cookie-toggle__track::after { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle__track { opacity: 0.5; cursor: not-allowed; }
.cookie-consent__panel-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  justify-content: flex-end;
}
.cookie-consent__save {
  padding: 0.55rem 1.3rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}
.cookie-consent__save:hover { background: var(--primary-dark); }
.cookie-consent__reject {
  padding: 0.55rem 1.1rem;
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}
.cookie-consent__reject:hover { color: white; }

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .intro-split { gap: var(--space-xl); }
  .feature-block { gap: var(--space-xl); }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-tabs { display: flex; }

  body { padding-bottom: 80px; }
  .float-widget { bottom: 90px; right: 1rem; }

  .hero { min-height: 100svh; }
  .glass-card { padding: 2rem 1.5rem; }
  .glass-card__actions { flex-direction: column; }
  .glass-card__actions .btn { width: 100%; justify-content: center; }

  .section { padding: var(--space-2xl) 0; }

  .intro-split { grid-template-columns: 1fr; gap: var(--space-xl); }
  .intro-split__text { max-width: 100%; }
  .image-frame__img { height: 280px; }
  .image-frame__accent { display: none; }

  .card-grid { grid-template-columns: 1fr; }
  .card-grid--two { grid-template-columns: 1fr; }

  .feature-block { grid-template-columns: 1fr; gap: var(--space-xl); }
  .feature-block__img { height: 280px; }
  .feature-block__content { max-width: 100%; }

  .contact-cards { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: var(--space-xl); }

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__col--brand { margin-bottom: 0; }

  .page-hero { min-height: 45vh; }
  .page-hero--short { min-height: 38vh; }
  .page-hero__content { padding: 2rem 1rem 2.5rem; }

  .recovery-item { flex-direction: column; gap: var(--space-md); }
  .trust-quote { padding: var(--space-md) 0; }

  .glass-card__heading { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .thanks-hero { min-height: calc(60vh - var(--nav-height)); }

  .legal-page__header { padding: var(--space-xl) 0 var(--space-lg); }
  .legal-page__body { padding: var(--space-xl) 0 var(--space-2xl); }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .btn { padding: 0.8rem 1.5rem; font-size: 0.88rem; }
  .cookie-consent { bottom: 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; transform: translateX(-50%); width: 100%; }
  .cookie-consent--expanded { width: 100%; }
}