@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* =====================
   CUSTOM PROPERTIES
   ===================== */
:root {
  --base-violet: oklch(52% 0.18 280);
  --base-rose: oklch(68% 0.16 10);
  --base-teal: oklch(72% 0.12 195);

  --primary: var(--base-violet);
  --primary-light: color-mix(in oklch, var(--base-violet), white 35%);
  --primary-lighter: color-mix(in oklch, var(--base-violet), white 65%);
  --primary-dark: color-mix(in oklch, var(--base-violet), black 20%);
  --primary-bg: color-mix(in oklch, var(--base-violet), white 92%);

  --secondary: var(--base-rose);
  --secondary-light: color-mix(in oklch, var(--base-rose), white 40%);
  --secondary-bg: color-mix(in oklch, var(--base-rose), white 90%);

  --accent: var(--base-teal);
  --accent-light: color-mix(in oklch, var(--base-teal), white 40%);
  --accent-bg: color-mix(in oklch, var(--base-teal), white 88%);

  --text-dark: oklch(18% 0.02 280);
  --text-mid: oklch(38% 0.04 280);
  --text-light: oklch(56% 0.04 280);
  --text-muted: oklch(72% 0.03 280);

  --bg-base: oklch(98% 0.008 280);
  --bg-card: oklch(100% 0 0);
  --bg-dark: oklch(16% 0.04 280);
  --bg-dark-mid: oklch(20% 0.05 280);

  --border: color-mix(in oklch, var(--base-violet), white 78%);
  --border-light: color-mix(in oklch, var(--base-violet), white 90%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--base-violet), transparent 88%), 0 1px 2px color-mix(in oklch, var(--base-violet), transparent 94%);
  --shadow-md: 0 4px 12px color-mix(in oklch, var(--base-violet), transparent 82%), 0 2px 6px color-mix(in oklch, var(--base-violet), transparent 90%);
  --shadow-lg: 0 12px 40px color-mix(in oklch, var(--base-violet), transparent 76%), 0 4px 16px color-mix(in oklch, var(--base-violet), transparent 86%);
  --shadow-xl: 0 24px 64px color-mix(in oklch, var(--base-violet), transparent 70%), 0 8px 24px color-mix(in oklch, var(--base-violet), transparent 82%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --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: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

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

ul { list-style: none; }

/* =====================
   COOKIE BAR
   ===================== */
.cookie-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid color-mix(in oklch, var(--base-violet), transparent 60%);
  overflow: hidden;
  max-height: fit-content;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease;
  opacity: 1;
  position: fixed;
  bottom: 0;
  z-index: 100;
}

.cookie-bar.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem var(--space-lg);
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-bar__text {
  font-size: 0.82rem;
  color: oklch(82% 0.04 280);
  flex: 1;
  min-width: 200px;
}

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

.cookie-bar__actions { display: flex; gap: 0.5rem; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: oklch(97% 0.01 280);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary-bg);
  box-shadow: var(--shadow-sm);
}

.btn--full { width: 100%; justify-content: center; }

.btn--lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.btn--cookie-accept {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition);
}
.btn--cookie-accept:hover { background: var(--primary-dark); }

.btn--cookie-reject {
  background: transparent;
  color: oklch(70% 0.04 280);
  border: 2px solid oklch(40% 0.04 280);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  transition: color var(--transition), border-color var(--transition);
}
.btn--cookie-reject:hover { color: oklch(85% 0.04 280); border-color: oklch(60% 0.04 280); }

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: color-mix(in oklch, var(--bg-base), transparent 8%);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border-light);
  box-shadow: 0 2px 20px color-mix(in oklch, var(--base-violet), transparent 92%);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: 100%;
  padding: 0 var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__cta-wrap { margin-left: var(--space-sm); }

.nav__cta {
  position: relative;
  padding-left: 1.6rem;
}

.nav__cta-dot {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--secondary-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateY(-50%) scale(1.5); }
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

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

/* =====================
   MOBILE MENU (Curtain)
   ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--space-sm);
  padding: var(--space-xl);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-menu__link {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: oklch(88% 0.05 280);
  text-decoration: none;
  transition: color var(--transition);
  opacity: 0;
  transform: translateY(-20px);
}

.mobile-menu.open .mobile-menu__link {
  animation: slide-in-link 0.4s forwards;
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { animation-delay: 0.17s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { animation-delay: 0.24s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { animation-delay: 0.31s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { animation-delay: 0.38s; }

@keyframes slide-in-link {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu__link:hover { color: var(--primary-light); }

.mobile-menu__close {
  margin-top: var(--space-xl);
  background: none;
  border: 2px solid oklch(35% 0.06 280);
  color: oklch(72% 0.04 280);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition), border-color var(--transition);
}

.mobile-menu__close:hover { color: oklch(90% 0.04 280); border-color: oklch(55% 0.06 280); }

/* =====================
   HERO BLOBS (Chromatic Blur)
   ===================== */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__blob--1 {
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(circle, color-mix(in oklch, var(--base-violet), transparent 30%) 0%, transparent 70%);
  filter: blur(100px);
  top: -15%;
  left: -10%;
  animation: blob-drift-1 18s ease-in-out infinite alternate;
}

.hero__blob--2 {
  width: min(500px, 70vw);
  height: min(500px, 70vw);
  background: radial-gradient(circle, color-mix(in oklch, var(--base-rose), transparent 35%) 0%, transparent 70%);
  filter: blur(120px);
  top: 10%;
  right: -5%;
  animation: blob-drift-2 22s ease-in-out infinite alternate;
}

.hero__blob--3 {
  width: min(400px, 60vw);
  height: min(400px, 60vw);
  background: radial-gradient(circle, color-mix(in oklch, var(--base-teal), transparent 40%) 0%, transparent 70%);
  filter: blur(90px);
  bottom: 0;
  left: 40%;
  animation: blob-drift-3 16s ease-in-out infinite alternate;
}

.hero__blob--4 {
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(circle, color-mix(in oklch, var(--base-violet), transparent 45%) 0%, transparent 70%);
  filter: blur(130px);
  top: -20%;
  right: -15%;
}

.hero__blob--5 {
  width: min(500px, 70vw);
  height: min(500px, 70vw);
  background: radial-gradient(circle, color-mix(in oklch, var(--base-rose), transparent 50%) 0%, transparent 70%);
  filter: blur(110px);
  bottom: -10%;
  left: -5%;
}

.hero__blob--6 {
  width: min(450px, 65vw);
  height: min(450px, 65vw);
  background: radial-gradient(circle, color-mix(in oklch, var(--base-teal), transparent 45%) 0%, transparent 70%);
  filter: blur(100px);
  top: 10%;
  left: -10%;
}

.hero__blob--7 {
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(circle, color-mix(in oklch, var(--base-violet), transparent 35%) 0%, transparent 70%);
  filter: blur(120px);
  top: -30%;
  left: 20%;
}

@keyframes blob-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(3%, 5%) scale(1.05); }
}
@keyframes blob-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 3%) scale(1.08); }
}
@keyframes blob-drift-3 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(3%, -5%) scale(1.04); }
}

/* =====================
   SECTIONS
   ===================== */
.section {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.section--wide {
  padding-left: max(var(--space-sm), calc((100vw - 1280px) / 2));
  padding-right: max(var(--space-sm), calc((100vw - 1280px) / 2));
}

.section--dark {
  background: var(--bg-dark);
}

.section--cta {
  background: var(--bg-dark);
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section__eyebrow--light {
  color: var(--primary-light);
  background: color-mix(in oklch, var(--base-violet), transparent 80%);
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.section__title--light { color: oklch(94% 0.02 280); }

.section__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.section__header .section__title { margin-bottom: var(--space-xs); }

/* =====================
   HERO SECTION
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  animation: hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
  animation: hero-fade-up 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: hero-fade-up 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================
   CARDS
   ===================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.card--featured {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  animation: hero-fade-up 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.card__img--carousel {
  height: 160px;
}

.card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.card__sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.card__features {
  list-style: none;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card__features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card__features li i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.card__icon-wrap--move { background: var(--primary-bg); color: var(--primary); }
.card__icon-wrap--wedding { background: var(--secondary-bg); color: var(--secondary); }
.card__icon-wrap--travel { background: var(--accent-bg); color: var(--accent); }
.card__icon-wrap--budget { background: color-mix(in oklch, oklch(78% 0.14 90), white 70%); color: oklch(52% 0.14 90); }
.card__icon-wrap--accent { background: var(--primary-bg); color: var(--primary); }

.card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.card__step {
  display: inline-block;
  font-size: 2.2rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--primary-lighter);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.card--feature {
  text-align: left;
}

.card--method {
  background: var(--bg-dark-mid);
  border-color: color-mix(in oklch, var(--base-violet), transparent 70%);
  color: oklch(88% 0.03 280);
}

.card--method .card__title { color: oklch(92% 0.03 280); }
.card--method .card__text { color: oklch(72% 0.04 280); }
.card--method .card__step { color: color-mix(in oklch, var(--base-violet), transparent 30%); }

.card--form {
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
}

.card--legal {
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary);
}

.card--legal h2 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.card--legal p { margin-bottom: var(--space-sm); font-size: 0.93rem; }
.card--legal p:last-child { margin-bottom: 0; }

/* =====================
   CAROUSEL
   ===================== */
.carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: var(--space-sm);
}

.carousel::-webkit-scrollbar { height: 4px; }
.carousel::-webkit-scrollbar-track { background: transparent; }
.carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.carousel__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  padding: var(--space-xs) 0;
}

.carousel__slide {
  scroll-snap-align: start;
  width: clamp(280px, 35vw, 340px);
  flex-shrink: 0;
}

/* =====================
   TIMELINE
   ===================== */
.timeline-section .section__header {
  margin-bottom: var(--space-xl);
}

.timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), color-mix(in oklch, var(--base-violet), transparent 60%));
}

.timeline__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.timeline__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--base-violet), transparent 75%), var(--shadow-md);
  position: relative;
  z-index: 1;
}

.timeline__date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.35rem;
}

.timeline__title {
  font-size: 1.15rem;
  color: oklch(94% 0.02 280);
  margin-bottom: 0.5rem;
}

.timeline__text {
  font-size: 0.92rem;
  color: oklch(68% 0.04 280);
  line-height: 1.7;
}

/* =====================
   CHECKLIST SECTION
   ===================== */
.checklist-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.checklist-section__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.checklist__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.checklist__icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.checklist__item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* =====================
   FEATURES GRID
   ===================== */
.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

/* =====================
   ABOUT PREVIEW
   ===================== */
.about-preview__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-preview__img-wrap {
  position: relative;
}

.about-preview__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-preview__badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: white;
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-preview__badge i { color: var(--primary); }

/* =====================
   CTA MINIMAL
   ===================== */
.cta-minimal {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-minimal__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: oklch(96% 0.02 280);
  margin-bottom: var(--space-sm);
}

.cta-minimal__desc {
  color: oklch(72% 0.04 280);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__inner--narrow { max-width: 560px; }

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  animation: hero-fade-up 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* =====================
   APPROACH PAGE
   ===================== */
.approach-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.approach-block {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.approach-block__num {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-lighter);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.approach-block__title {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.approach-block p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.approach-block__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
}

.method-cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

/* =====================
   GLOSSARY
   ===================== */
.glossary {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.glossary__letter {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-xl);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-light);
}

.glossary__letter:first-child { margin-top: 0; }

.glossary__entry {
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--primary-lighter);
}

.glossary__term {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.glossary__def {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* =====================
   REGISTER PAGE
   ===================== */
.register-section { padding-top: var(--space-lg); }

.register-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.register-benefits__title {
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
}

.register-benefits__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.register-benefit {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.register-benefit i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.register-benefit strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.register-benefit p {
  font-size: 0.87rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.register-benefits__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-section { padding-top: var(--space-lg); }

.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.contact-info__block {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.contact-info__block strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-info__block p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0.2rem 0 0;
}

.contact-info__block a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  display: block;
}

.map-wrap {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* =====================
   FORMS
   ===================== */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__group { display: flex; flex-direction: column; gap: 0.4rem; }

.form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-base);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--base-violet), transparent 82%);
}

.form__select { cursor: pointer; }

.form__textarea { resize: vertical; min-height: 120px; }

.form__group--check { margin-top: var(--space-xs); }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form__check a { color: var(--primary); text-decoration: underline; }

.form__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* =====================
   THANKS PAGE
   ===================== */
.thanks-section {
  min-height: calc(100vh - var(--nav-height) - 200px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.thanks-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.thanks-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-sm);
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.thanks-desc {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
  animation: hero-fade-up 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.thanks-timeline {
  margin-top: var(--space-2xl);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks-timeline__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  max-width: 400px;
  width: 100%;
}

.thanks-timeline__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.thanks-timeline__item--done .thanks-timeline__icon {
  background: var(--accent-bg);
  color: var(--accent);
}

.thanks-timeline__item--highlight .thanks-timeline__icon {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px var(--primary-bg);
}

.thanks-timeline__item--upcoming .thanks-timeline__icon {
  background: oklch(93% 0.01 280);
  color: var(--text-muted);
}

.thanks-timeline__content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.thanks-timeline__content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.thanks-timeline__connector {
  width: 2px;
  height: 32px;
  background: var(--border);
  margin: 4px 0 4px 21px;
}

.thanks-timeline__item--upcoming .thanks-timeline__content strong,
.thanks-timeline__item--upcoming .thanks-timeline__content p {
  color: var(--text-muted);
}

/* =====================
   LEGAL PAGES
   ===================== */
.legal-section { padding-top: var(--space-lg); }

.legal-cards {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: var(--space-sm) 0;
}

.cookie-table th {
  text-align: left;
  padding: 0.6rem 0.8rem;
  background: var(--primary-bg);
  color: var(--primary-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.cookie-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-mid);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--bg-dark);
  padding: var(--space-2xl) var(--space-lg) var(--space-sm);
  margin-top: auto;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid color-mix(in oklch, var(--base-violet), transparent 70%);
}

.footer__logo { height: 32px; width: auto; margin-bottom: var(--space-sm); filter: brightness(1.4); }

.footer__tagline {
  font-size: 0.88rem;
  color: oklch(60% 0.04 280);
  line-height: 1.6;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(55% 0.04 280);
  margin-bottom: var(--space-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.88rem;
  color: oklch(65% 0.04 280);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover { color: var(--primary-light); }

.footer__contact p {
  font-size: 0.88rem;
  color: oklch(65% 0.04 280);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer__contact i { color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }

.footer__contact a {
  color: oklch(65% 0.04 280);
  transition: color var(--transition);
}

.footer__contact a:hover { color: var(--primary-light); }

.footer__legal {
  max-width: 1280px;
  margin: var(--space-md) auto 0;
  font-size: 0.78rem;
  color: oklch(45% 0.04 280);
  line-height: 1.8;
}

.footer__legal p { margin-bottom: 0.3rem; }
.footer__legal a { color: oklch(55% 0.04 280); transition: color var(--transition); }
.footer__legal a:hover { color: var(--primary-light); }

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero__inner,
  .checklist-section__inner,
  .about-preview__inner,
  .register-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero__card { max-width: 480px; margin: 0 auto; }

  .approach-grid,
  .method-cards,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .nav__links,
  .nav__cta-wrap { display: none; }

  .nav__hamburger { display: flex; }

  .nav__inner { gap: var(--space-sm); }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-xl));
    min-height: auto;
    padding-bottom: var(--space-xl);
  }

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

  .hero__content { text-align: center; }
  .hero__desc { max-width: 100%; }
  .hero__actions { justify-content: center; }

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .timeline::before { left: 22px; }
  .timeline__item { grid-template-columns: 44px 1fr; }
  .timeline__num { width: 44px; height: 44px; font-size: 0.85rem; }

  .card--form { padding: var(--space-md); }

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

  .cookie-bar__inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .page-hero__title { font-size: 1.9rem; }
  .section__title { font-size: 1.7rem; }
  .cta-minimal__title { font-size: 1.7rem; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .carousel__slide { width: min(300px, 85vw); }

  .cookie-table { font-size: 0.78rem; }
  .cookie-table th, .cookie-table td { padding: 0.4rem 0.5rem; }
}