/* ═══════════════ DESIGN TOKENS ═══════════════ */
:root {
  --clr-bg: #FDF6F0;
  --clr-bg-warm: #FFF5EE;
  --clr-bg-alt: #FAE8DE;
  --clr-surface: #FFFFFF;
  --clr-surface-glass: rgba(255, 255, 255, 0.55);
  --clr-primary: #D4727E;
  --clr-primary-light: #F2B5BC;
  --clr-primary-dark: #B34E5A;
  --clr-accent: #C6956C;
  --clr-accent-gold: #D4A76A;
  --clr-sage: #A8BDA0;
  --clr-sage-light: #D4E4CE;
  --clr-text: #3D2C2E;
  --clr-text-light: #7A6365;
  --clr-text-muted: #A89193;
  --clr-border: rgba(212, 114, 126, 0.15);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Nunito Sans', 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.5rem, 4.5vw, 4.2rem);
  --fs-h2: clamp(1.6rem, 2.8vw, 2.6rem);
  --fs-h3: clamp(1.18rem, 1.9vw, 1.55rem);
  --fs-body: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  --fs-small: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --shadow-soft: 0 4px 30px rgba(61, 44, 46, 0.06);
  --shadow-elevated: 0 12px 48px rgba(61, 44, 46, 0.1);
  --shadow-glow: 0 0 40px rgba(212, 114, 126, 0.2);

  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  cursor: none;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--clr-primary);
  text-decoration: none;
  cursor: none;
}

a:hover {
  color: var(--clr-primary-dark);
}

.link-inherit-pointer,
.location-value a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
}

.link-inherit-pointer:hover,
.location-value a:hover {
  color: var(--clr-primary-dark);
}

.link-inherit-pointer:focus-visible,
.location-value a:focus-visible {
  outline: 2px solid var(--clr-primary-light);
  outline-offset: 2px;
  border-radius: 2px;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-text);
}

/* ═══════════════ CUSTOM CURSOR ═══════════════ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--clr-primary-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.3s, background 0.3s;
}

.cursor-ring.hover {
  width: 64px;
  height: 64px;
  background: rgba(212, 114, 126, 0.08);
  border-color: var(--clr-primary);
}

.cursor-dot.hover {
  width: 4px;
  height: 4px;
  background: var(--clr-primary-dark);
}

/* ═══════════════ SVG ICONS ═══════════════ */
.badge-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
}

.inline-icon {
  display: inline;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ═══════════════ SECTION BASE ═══════════════ */
.section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.container {
  max-width: 1280px;
  /* Optimized for 1920px screens */
  margin: 0 auto;
  padding: 0 32px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--clr-surface-glass);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--clr-text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ═══════════════ FLOATING SHAPES ═══════════════ */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  will-change: transform;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--clr-primary-light);
  top: -100px;
  right: -100px;
  animation: floatShape 12s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--clr-sage-light);
  bottom: -80px;
  left: -80px;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--clr-accent-gold);
  top: 50%;
  left: 60%;
  animation: floatShape 10s ease-in-out infinite 2s;
  opacity: 0.25;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(253, 246, 240, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--clr-text);
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.nav-logo:hover .nav-logo-name {
  color: var(--clr-primary);
}

.nav-logo:hover .nav-logo-tagline {
  opacity: 1;
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.nav-logo-tagline {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--clr-text-light);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-light);
  position: relative;
  letter-spacing: 0.02em;
  transition: color var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--clr-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--clr-primary) !important;
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all var(--transition-smooth) !important;
  box-shadow: 0 4px 15px rgba(212, 114, 126, 0.3);
}

.nav-cta:hover {
  background: var(--clr-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 114, 126, 0.4) !important;
  color: #fff !important;
}

/* ─── Nav Active Link ─── */
.nav-links>a.active,
.nav-links>a.active:hover {
  color: var(--clr-primary);
}

.nav-links>a.active::after {
  width: 100%;
}

/* ─── Dropdown Menu ─── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(30, 20, 25, 0.92);
  border: 1px solid rgba(212, 114, 126, 0.2);
  border-radius: var(--radius-md, 12px);
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(212, 114, 126, 0.15);
  color: #fff;
  padding-left: 24px;
}

.nav-dropdown-menu a.active {
  color: var(--clr-primary-light, #E8A0A8);
  font-weight: 600;
}

/* ─── Mobile Submenu ─── */
.mobile-nav-group {
  width: 100%;
}

.mobile-nav-group-toggle {
  display: flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.mobile-nav-group-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-nav-group.open .mobile-nav-group-toggle svg {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px;
}

.mobile-nav-group.open .mobile-nav-submenu {
  max-height: 200px;
}

.mobile-nav-sublink {
  font-size: 0.95em !important;
  opacity: 0.85;
}

.mobile-nav-link.active {
  color: var(--clr-primary) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  position: relative;
  z-index: 1002;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* Burger → ✕ animation */
.nav-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #fff;
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #fff;
}

/* ═══════════════ MOBILE OVERLAY ═══════════════ */
.mobile-overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.mobile-overlay.active {
  pointer-events: auto;
  visibility: visible;
}

.mobile-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 26, 0.95);
  backdrop-filter: blur(30px) saturate(120%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mobile-overlay.active .mobile-overlay-bg {
  opacity: 1;
}

.mobile-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 100px 32px 40px;
  overflow-y: auto;
}

/* ─── Nav links ─── */
.mobile-nav-link {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(240, 230, 236, 0.85);
  text-decoration: none;
  padding: 14px 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: #fff;
}

.mobile-nav-link:hover::after {
  width: 60%;
}

/* ─── Nav group (dropdown container) ─── */
.mobile-nav-group {
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-group .mobile-nav-link {
  opacity: 1;
  transform: none;
}

.mobile-nav-group-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mobile-nav-group-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-nav-group.open .mobile-nav-group-toggle svg {
  transform: rotate(180deg);
}

/* ─── Submenu ─── */
.mobile-nav-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.mobile-nav-group.open .mobile-nav-submenu {
  grid-template-rows: 1fr;
  opacity: 1;
}

.mobile-nav-submenu-inner {
  overflow: hidden;
}

.mobile-nav-sublink {
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: rgba(240, 230, 236, 0.7) !important;
  padding: 10px 0 !important;
}

.mobile-nav-sublink:hover {
  color: var(--clr-primary-light) !important;
}

.mobile-nav-sublink.active {
  color: var(--clr-primary) !important;
}

.mobile-nav-sublink::after {
  display: none !important;
}

/* ─── Stagger animation ─── */
.mobile-overlay.active .mobile-overlay-content>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

.mobile-overlay.active .mobile-overlay-content>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.mobile-overlay.active .mobile-overlay-content>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.mobile-overlay.active .mobile-overlay-content>*:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.mobile-overlay.active .mobile-overlay-content>*:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.30s;
}

.mobile-overlay.active .mobile-overlay-content>*:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

/* CTA in overlay */
.mobile-nav-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(212, 114, 126, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.mobile-overlay.active .mobile-nav-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(212, 114, 126, 0.55);
  color: #fff;
}

/* Phone number */
.mobile-overlay-phone {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.mobile-overlay.active .mobile-overlay-phone {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay-phone a {
  color: rgba(242, 181, 188, 0.5);
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-overlay-phone a:hover {
  color: var(--clr-primary-light);
}

/* Decorative rings */
.mobile-overlay-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 114, 126, 0.06);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.mobile-overlay.active .mobile-overlay-ring {
  opacity: 1;
}

.ring-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: overlayRingSpin 30s linear infinite;
}

.ring-2 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 189, 160, 0.06);
  animation: overlayRingSpin 45s linear infinite reverse;
}

@keyframes overlayRingSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Hide TG widget when menu is open */
body.menu-open .tg-widget {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
}

/* Body lock when menu open */
body.menu-open {
  overflow: hidden;
}

/* ═══════════════ HERO — COSMIC BIRTH ═══════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: #0B0A1A;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 55% 45%, rgba(120, 60, 130, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 60%, rgba(212, 114, 126, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(80, 100, 180, 0.12) 0%, transparent 50%),
    #0B0A1A;
}

#starCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  /* Wider text block for Full HD */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-primary-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.8s ease-out;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #F0E6EC;
  animation: fadeSlideUp 0.8s ease-out 0.15s both;
}

.hero-title .accent {
  background: linear-gradient(135deg, #F2B5BC, #D4A76A, #F2B5BC);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  color: rgba(240, 230, 236, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s ease-out 0.25s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 56px;
  animation: fadeSlideUp 0.8s ease-out 0.35s both;
}

/* ─── BUTTONS (shared) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: none;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  box-shadow: 0 8px 30px rgba(212, 114, 126, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 114, 126, 0.5);
  color: #fff;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid var(--clr-border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: rgba(212, 114, 126, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  /* Tighter spacing */
  animation: fadeSlideUp 0.8s ease-out 0.45s both;
}

.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--fs-small);
  color: rgba(240, 230, 236, 0.45);
  margin-top: 4px;
}

/* ─── COSMIC VISUAL: Baby Silhouette ─── */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Ensure vertical stacking */
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 1s ease-out 0.4s both;
}

.cosmic-cradle {
  position: relative;
  width: 380px;
  height: 380px;
}

/* Life Stages Animation */
.life-stage {
  transition: opacity 2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.life-stage.active {
  opacity: 1;
  visibility: visible;
}


/* Nebula glow behind baby */
.nebula-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 126, 0.15) 0%, rgba(120, 60, 130, 0.08) 40%, transparent 70%);
  animation: nebulaPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes nebulaPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}

/* Heartbeat ring */
.heartbeat-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(242, 181, 188, 0.1);
  z-index: 2;
  animation: heartbeat 1.8s ease-in-out infinite;
}

.heartbeat-ring:nth-child(2) {
  inset: -20px;
  animation-delay: 0.3s;
  border-color: rgba(242, 181, 188, 0.08);
}

.heartbeat-ring:nth-child(3) {
  inset: -40px;
  animation-delay: 0.6s;
  border-color: rgba(242, 181, 188, 0.04);
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  15% {
    transform: scale(1.04);
    opacity: 0.8;
  }

  30% {
    transform: scale(1);
    opacity: 1;
  }

  45% {
    transform: scale(1.06);
    opacity: 0.6;
  }

  60% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Baby SVG silhouette */
.baby-silhouette {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: babyAppear 3s ease-out 1.5s forwards;
}

@keyframes babyAppear {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.8);
  }

  60% {
    opacity: 0.8;
    filter: blur(2px);
    transform: scale(1.02);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.baby-silhouette svg {
  width: 260px;
  height: 260px;
  filter: drop-shadow(0 0 30px rgba(242, 181, 188, 0.3));
  animation: babyFloat 6s ease-in-out infinite 4.5s;
}

@keyframes babyFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

/* Particle canvas for baby area */
#babyParticleCanvas {
  position: absolute;
  inset: -60px;
  z-index: 4;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  pointer-events: none;
}

/* Cosmic label under visual */
.cosmic-label {
  text-align: center;
  margin-top: 24px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: rgba(242, 181, 188, 0.9);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s ease-out 3.5s both;
}

/* Bottom gradient fade from cosmic to warm */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--clr-bg));
  z-index: 5;
  pointer-events: none;
}

/* Navbar in cosmic mode */

.navbar:not(.scrolled) .nav-logo {
  color: #F0E6EC;
}

.navbar:not(.scrolled) .nav-logo-name {
  color: #F0E6EC;
}

.navbar:not(.scrolled) .nav-logo-tagline {
  color: rgba(240, 230, 236, 0.7);
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(240, 230, 236, 0.6);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--clr-primary-light);
}

.navbar:not(.scrolled) .nav-burger span {
  background: #F0E6EC;
}

/* ═══════════════ FOR-YOU SECTION ═══════════════ */
.for-you {
  background: var(--clr-bg-warm);
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.for-you-card {
  background: var(--clr-surface-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  backdrop-filter: blur(15px);
  transition: all var(--transition-smooth);
  transform-style: preserve-3d;
  perspective: 800px;
}

.for-you-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-elevated);
  border-color: var(--clr-primary-light);
}

.for-you-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--clr-primary-light);
  background: rgba(212, 114, 126, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-bounce);
}

.for-you-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--clr-primary);
}

.for-you-card:hover .for-you-card-icon {
  border-color: var(--clr-primary);
  background: rgba(212, 114, 126, 0.12);
  transform: scale(1.1);
}

.for-you-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.for-you-card p {
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* ═══════════════ PROGRAM TIMELINE ═══════════════ */
.timeline {
  position: relative;
  padding: 40px 0 20px;
  margin-top: 48px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--clr-border);
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent, #C6956C));
  transition: height 0.05s linear;
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 48px 56px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.timeline-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-left {
  left: 0;
  text-align: left;
  padding-right: 60px;
}

.timeline-right {
  left: 50%;
  text-align: left;
  padding-left: 60px;
}

.timeline-marker {
  position: absolute;
  top: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(212, 114, 126, 0.08);
  transition: all 0.3s ease;
}

.timeline-marker svg {
  width: 22px;
  height: 22px;
}

.timeline-left .timeline-marker {
  right: -22px;
}

.timeline-right .timeline-marker {
  left: -22px;
}

.timeline-item:hover .timeline-marker {
  box-shadow: 0 0 0 8px rgba(212, 114, 126, 0.15), 0 0 20px rgba(212, 114, 126, 0.2);
  border-color: var(--clr-primary);
  transform: scale(1.1);
}

.timeline-content {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--clr-primary-light);
  box-shadow: var(--shadow-glow, 0 8px 32px rgba(212, 114, 126, 0.12));
  transform: translateY(-4px);
}

.timeline-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-primary-light);
  line-height: 1;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.timeline-content p {
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.timeline-content .sub-list {
  margin-top: 12px;
  padding-left: 0;
}

.timeline-content .sub-list li {
  position: relative;
  padding-left: 18px;
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  margin-bottom: 6px;
}

.timeline-content .sub-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: 700;
}

/* ═══════════════ WORKBOOK / BONUS ═══════════════ */
.workbook {
  background: linear-gradient(180deg, var(--clr-bg-warm), var(--clr-bg));
}

.workbook-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.workbook-visual {
  position: relative;
  perspective: 1000px;
}

.workbook-3d {
  width: 320px;
  height: 420px;
  margin: 0 auto;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.workbook-3d:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.workbook-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: var(--radius-sm) var(--radius-md) var(--radius-md) var(--radius-sm);
  box-shadow: 10px 10px 40px rgba(61, 44, 46, 0.2), 2px 0 0 var(--clr-primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: #fff;
  transform: translateZ(20px);
}

.workbook-cover h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}

.workbook-spine {
  position: absolute;
  left: -10px;
  top: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-primary-dark), #8A3A44);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transform: rotateY(-90deg) translateZ(7px);
}

.workbook-info h3 {
  font-size: var(--fs-h3);
  margin-bottom: 16px;
}

.workbook-info p {
  color: var(--clr-text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ═══════════════ BONUS ═══════════════ */
.bonus-highlight {
  margin-top: 60px;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg,
      rgba(212, 114, 126, 0.04),
      rgba(168, 189, 160, 0.06),
      rgba(212, 114, 126, 0.03));
  border: 1px solid rgba(212, 114, 126, 0.12);
  box-shadow: 0 8px 40px rgba(212, 114, 126, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
}

.bonus-highlight-header {
  text-align: center;
  margin-bottom: 28px;
}

.bonus-highlight-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(212, 114, 126, 0.12), rgba(212, 114, 126, 0.06));
  border: 1px solid rgba(212, 114, 126, 0.2);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(212, 114, 126, 0.1);
}

.bonus-highlight-sub {
  margin-top: 10px;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.bonus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  grid-template-rows: 420px;
}

/* ═══════════════ BONUS HIGHLIGHT ═══════════════ */
.bonus-highlight {
  margin-top: 80px;
  text-align: center;
}

.bonus-highlight-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bonus-highlight-sub {
  font-size: 1.15rem;
  color: var(--clr-text-light);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: stretch;
  grid-template-rows: 420px;
}

.bonus-card {
  background: linear-gradient(145deg, var(--clr-surface-glass), rgba(212, 228, 206, 0.2));
  border: 1px solid var(--clr-sage-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

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

.bonus-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-card p {
  color: var(--clr-text-light);
  font-size: 1.05rem;
  /* Increased from small */
  line-height: 1.6;
}

/* ─── Support card redesign ─── */
.bonus-card--support {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  height: 420px;
  text-align: left;
  background: var(--clr-surface) !important;
  border: 1px solid rgba(168, 189, 160, 0.2) !important;
}

/* Header gradient strip */
.support-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--clr-sage), #7FA37A);
  color: #fff;
  flex-shrink: 0;
}

.support-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.support-header-text h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}

.support-header-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Stats row */
.support-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 24px;
  border-bottom: 1px solid var(--clr-border);
  flex-shrink: 0;
}

.support-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.support-stat-num {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
}

.support-stat-label {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.support-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* Feature list */
.support-features {
  list-style: none;
  padding: 12px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.support-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(168, 189, 160, 0.06);
  border: 1px solid rgba(168, 189, 160, 0.1);
  transition: all var(--transition-smooth);
}

.support-features li:hover {
  background: rgba(168, 189, 160, 0.14);
  border-color: rgba(168, 189, 160, 0.25);
  transform: translateX(4px);
}

.support-feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 189, 160, 0.12);
  border-radius: 10px;
}

.support-features li strong {
  display: block;
  font-size: 0.88rem;
  color: var(--clr-text);
  margin-bottom: 1px;
  font-family: var(--ff-body);
}

.support-features li span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.3;
}

/* Bottom bar */
.support-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-top: 1px solid var(--clr-border);
  background: rgba(168, 189, 160, 0.04);
  flex-shrink: 0;
}

.support-avatars {
  display: flex;
  flex-shrink: 0;
}

.support-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-surface);
  margin-left: -8px;
  transition: transform 0.2s ease;
}

.support-avatar:first-child {
  margin-left: 0;
}

.support-bottom:hover .support-avatar {
  margin-left: -4px;
}

.support-bottom:hover .support-avatar:first-child {
  margin-left: 0;
}

.support-bottom-text {
  font-size: 0.78rem;
  color: var(--clr-sage);
  font-weight: 600;
  transition: color 0.3s ease;
}

.support-bottom:hover .support-bottom-text {
  color: var(--clr-text);
}

/* ═══════════════ TELEGRAM CHAT SIMULATION ═══════════════ */
.bonus-card--chat {
  padding: 0 !important;
  overflow: hidden;
  background: none !important;
  border: none !important;
  display: flex;
}

.bonus-card--chat:hover {
  transform: none;
}

.tg-chat {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0E1621;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  text-align: left;
}

/* ─── Header ─── */
.tg-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #17212B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.tg-header-avatar {
  flex-shrink: 0;
}

.tg-header-info {
  flex: 1;
  min-width: 0;
}

.tg-header-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tg-header-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tg-online-dot {
  width: 6px;
  height: 6px;
  background: #4FAE4E;
  border-radius: 50%;
  animation: tgPulse 2s ease-in-out infinite;
}

@keyframes tgPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.tg-header-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ─── Body ─── */
.tg-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  scrollbar-width: none;
}

.tg-body::-webkit-scrollbar {
  display: none;
}

.tg-date-badge {
  text-align: center;
  margin: 4px 0 8px;
}

.tg-date-badge {
  display: inline-block;
  align-self: center;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.02em;
}

/* ─── Messages ─── */
.tg-msg {
  display: flex;
  gap: 6px;
  max-width: 85%;
  animation: tgMsgIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  align-items: flex-end;
}

.tg-msg--in {
  align-self: flex-start;
}

.tg-msg--out {
  align-self: flex-end;
  flex-direction: row-reverse;
}

@keyframes tgMsgIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tg-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.tg-msg-bubble {
  padding: 7px 11px 5px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  position: relative;
  word-break: break-word;
}

.tg-msg--in .tg-msg-bubble {
  background: #182533;
  color: rgba(255, 255, 255, 0.88);
  border-bottom-left-radius: 4px;
}

.tg-msg--out .tg-msg-bubble {
  background: #2B5278;
  color: rgba(255, 255, 255, 0.92);
  border-bottom-right-radius: 4px;
}

.tg-msg-sender {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.tg-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
}

.tg-msg-time {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
}

.tg-msg-check {
  font-size: 0.55rem;
  color: #4FAE4E;
  letter-spacing: -2px;
}

/* Emoji reactions */
.tg-msg-reaction {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  background: rgba(79, 174, 78, 0.15);
  border: 1px solid rgba(79, 174, 78, 0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  margin-top: 4px;
  cursor: default;
  animation: tgReact 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes tgReact {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.tg-msg-reaction span {
  font-size: 0.6rem;
  color: #4FAE4E;
  font-weight: 600;
}

/* Sticker */
.tg-sticker {
  font-size: 3rem;
  line-height: 1;
  animation: tgStickerBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes tgStickerBounce {
  0% {
    transform: scale(0) rotate(-20deg);
  }

  60% {
    transform: scale(1.2) rotate(5deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* ─── Typing indicator ─── */
.tg-typing {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  align-self: flex-start;
  max-width: 85%;
  animation: tgMsgIn 0.3s ease both;
}

.tg-typing-bubble {
  background: #182533;
  padding: 10px 16px;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.tg-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: tgTypingBounce 1.2s ease-in-out infinite;
}

.tg-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.tg-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes tgTypingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* ─── Input bar ─── */
.tg-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #17212B;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.tg-input-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
}

/* ═══════════════ PRICING ═══════════════ */
.pricing {
  background: linear-gradient(180deg, var(--clr-bg-warm) 0%, #fff0f5 50%, var(--clr-bg) 100%);
  position: relative;
  overflow: hidden;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

/* Floating Hearts Animation */
.heart-particle {
  position: absolute;
  bottom: -50px;
  color: var(--clr-primary);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 5px rgba(212, 114, 126, 0.2));
}

@keyframes floatHeart {
  0% {
    transform: translateY(0) scale(0.5) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0;
  }

  100% {
    transform: translateY(-180vh) scale(1.2) rotate(20deg);
    opacity: 0;
  }
}

.pricing-card {
  max-width: 520px;
  margin: 48px auto 0;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--clr-primary-light), transparent, var(--clr-sage-light), transparent);
  animation: rotateBorder 8s linear infinite;
  z-index: -1;
}

@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--clr-surface);
  border-radius: calc(var(--radius-lg) - 3px);
  z-index: -1;
}

.pricing-price {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--clr-primary);
  margin: 0 0 12px;
  line-height: 1;
  white-space: nowrap;
}

.pricing-per {
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-text-light);
  font-size: var(--fs-small);
}

.pricing-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--clr-sage-light);
  color: var(--clr-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════ ABOUT ═══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.about-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--clr-primary-light), var(--clr-sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about-text h3 {
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--clr-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-more {
  margin: 14px 0 28px;
}

.about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(212, 114, 126, 0.45);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  box-shadow: 0 10px 26px rgba(212, 114, 126, 0.28);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    color var(--transition-smooth), border-color var(--transition-smooth);
}

.about-more-link svg {
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}

.about-more-link:hover {
  color: #ffffff;
  border-color: rgba(212, 114, 126, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 114, 126, 0.34);
}

.about-more-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .about-more {
    margin: 16px 0 24px;
  }

  .about-more-link {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 14px 18px;
  }
}

.about-certs {
  margin-top: 32px;
}

.about-certs h4 {
  font-size: 1.18rem;
  margin-bottom: 16px;
  color: var(--clr-primary);
}

.cert-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--clr-text-light);
  font-size: var(--fs-small);
}

.cert-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--clr-accent-gold);
  font-size: 0.6rem;
  top: 12px;
}

.about-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface-glass);
  border: 1.5px solid var(--clr-border);
  transition: all var(--transition-smooth);
  color: var(--clr-text-light);
  text-decoration: none;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: fill var(--transition-smooth);
}

.social-btn:hover {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 114, 126, 0.3);
}

/* ═══════════════ LOCATION ═══════════════ */
.location {
  background: var(--clr-bg-warm);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: center;
}

.location-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--clr-primary);
  font-weight: 700;
}


/* ═══════════════ REVIEWS ═══════════════ */
.reviews {
  background: linear-gradient(135deg, #FFF0F5 0%, #FAFAFA 100%);
  /* Soft Pink to White */
  margin: 60px 20px;
  /* Float it with margin */
  border-radius: var(--radius-xl);
  padding: 80px 20px;
  /* Internal spacing */
  box-shadow: 0 20px 60px rgba(212, 114, 126, 0.08);
  /* Soft shadow */
  position: relative;
  overflow: hidden;
}

/* Decorative background shape for Reviews */
.reviews::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--clr-primary-light);
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.review-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(242, 181, 188, 0.2);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-light);
}

.review-stars {
  color: #FFC107;
  /* Gold */
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
  /* Push footer down */
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--clr-primary-light);
}

.review-info h4 {
  font-size: 1.08rem;
  color: var(--clr-heading);
  margin-bottom: 2px;
}

.review-info span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-primary-light);
  background: rgba(212, 114, 126, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.location-icon svg {
  width: 20px;
  height: 20px;
}

.location-info-list li:hover .location-icon {
  border-color: var(--clr-primary);
  background: rgba(212, 114, 126, 0.08);
  transform: scale(1.08);
}

.location-label {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-value {
  color: var(--clr-text);
  font-weight: 500;
  margin-top: 2px;
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  aspect-ratio: 4/3;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════ CTA (Golden Hour) ═══════════════ */
.cta-section {
  background: radial-gradient(circle at 20% 120%, #D4A76A 0%, #D4727E 40%, #764A6E 80%, #3D2C2E 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Floating Orbs */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.cta-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: #F2B5BC;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.cta-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: #D4A76A;
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
  z-index: 0;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 40px) scale(1.1);
  }
}

/* Background Visual SVG */
.cta-visual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.cta-visual-bg svg {
  width: 100%;
  height: 100%;
  animation: rotateBg 60s linear infinite;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-section .section-title {
  color: #fff;
  font-family: var(--ff-display);
  /* Use serif font */
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-accent {
  font-style: italic;
  font-weight: 400;
  /* Lighter weight for script fell */
  color: #FFE5B4;
  /* Soft peach/gold */
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Keep CTA target comfortably in view when reached via anchor links */
#cta-action {
  scroll-margin-top: 140px;
  position: relative;
  isolation: isolate;
  overflow: visible;
  animation: ctaButtonPulse 1.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  will-change: box-shadow;
}

#cta-action .u-inline-icon-mr-6 {
  display: inline-block;
  transform-origin: 50% 55%;
  animation: ctaPlaneFly 3.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  will-change: transform, filter;
  transition: filter 0.35s ease;
}

#cta-action::before,
#cta-action::after {
  content: '';
  position: absolute;
  left: 18px;
  background: linear-gradient(90deg,
      rgba(212, 114, 126, 0),
      rgba(212, 114, 126, 0.32),
      rgba(212, 114, 126, 0));
  transform: translateY(-50%) translateX(-8px) scaleX(0.55);
  opacity: 0.18;
  pointer-events: none;
  will-change: transform, opacity;
  animation: ctaWindFlow 3.2s linear infinite;
}

#cta-action::before {
  top: 44%;
  width: 34px;
  height: 2px;
}

#cta-action::after {
  top: 58%;
  width: 24px;
  height: 1px;
  animation-delay: 1.2s;
}

#cta-action:hover .u-inline-icon-mr-6,
#cta-action:focus-visible .u-inline-icon-mr-6 {
  animation-duration: 2.8s;
  filter: drop-shadow(0 1px 5px rgba(212, 114, 126, 0.28));
}

#cta-action:hover::before,
#cta-action:hover::after,
#cta-action:focus-visible::before,
#cta-action:focus-visible::after {
  animation-duration: 1.9s;
  opacity: 0.28;
}

@keyframes ctaPlaneFly {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.5deg);
  }

  12% {
    transform: translate3d(1.4px, -2.2px, 0) rotate(-3deg);
  }

  25% {
    transform: translate3d(2.8px, -4.2px, 0) rotate(-4.5deg);
  }

  37% {
    transform: translate3d(4.2px, -2px, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(5.8px, 1.8px, 0) rotate(1.5deg);
  }

  62% {
    transform: translate3d(7px, 4.4px, 0) rotate(3.5deg);
  }

  75% {
    transform: translate3d(5.3px, 1.2px, 0) rotate(1deg);
  }

  88% {
    transform: translate3d(3.2px, -3.8px, 0) rotate(-4deg);
  }
}

@keyframes ctaWindFlow {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(-8px) scaleX(0.55);
  }

  30% {
    opacity: 0.28;
  }

  70% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(14px) scaleX(1.15);
  }
}

@keyframes ctaButtonPulse {
  0%,
  100% {
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.15),
      0 0 0 0 rgba(255, 255, 255, 0.9),
      0 0 0 0 rgba(255, 233, 245, 0.72);
  }

  10% {
    box-shadow:
      0 14px 42px rgba(0, 0, 0, 0.24),
      0 0 0 10px rgba(255, 255, 255, 0.22),
      0 0 0 20px rgba(255, 233, 245, 0.06);
  }

  22% {
    box-shadow:
      0 12px 38px rgba(0, 0, 0, 0.2),
      0 0 0 16px rgba(255, 255, 255, 0),
      0 0 0 30px rgba(255, 233, 245, 0);
  }

  32% {
    box-shadow:
      0 11px 34px rgba(0, 0, 0, 0.2),
      0 0 0 8px rgba(255, 255, 255, 0.16),
      0 0 0 16px rgba(255, 233, 245, 0.04);
  }

  42% {
    box-shadow:
      0 10px 32px rgba(0, 0, 0, 0.18),
      0 0 0 14px rgba(255, 255, 255, 0),
      0 0 0 24px rgba(255, 233, 245, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #cta-action {
    animation: none;
  }

  #cta-action .u-inline-icon-mr-6 {
    animation: none;
  }

  #cta-action::before,
  #cta-action::after {
    animation: none;
    display: none;
  }
}

.cta-quotes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.cta-quote {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* Stronger border */
  color: #fff;
  padding: 32px 28px;
  /* More padding */
  border-radius: 24px;
  font-style: italic;
  font-size: 1.05rem;
  max-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Large decorative quote mark */
.cta-quote::before {
  content: '❝';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  font-family: serif;
  pointer-events: none;
}

/* Add subtle rotation for organic feel */
.cta-quote:nth-child(1) {
  transform: rotate(-3deg);
}

.cta-quote:nth-child(2) {
  transform: rotate(2deg);
  margin-top: 20px;
}

.cta-quote:nth-child(3) {
  transform: rotate(-2deg);
}

.cta-quote:hover {
  transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  /* Reset rotation on hover */
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  /* Gold border on hover */
  box-shadow: 0 15px 50px rgba(212, 167, 106, 0.3);
}

.cta-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.btn-white {
  background: #fff;
  color: var(--clr-primary);
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--clr-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--clr-primary-dark);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--clr-text);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-link:hover {
  background: rgba(212, 114, 126, 0.1);
  transform: translateY(-3px);
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 15px rgba(212, 114, 126, 0.25);
}

/* Removed individual brand colors for consistency */

/* Keep Dzen glyph rendering consistent across browsers */
.footer-social-link--dzen svg path {
  fill-rule: evenodd;
  clip-rule: evenodd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer h3,
.footer h4 {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 16px;
}

.footer p {
  font-size: var(--fs-small);
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-small);
  transition: color var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--clr-primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════ PARALLAX LAYERS ═══════════════ */
.parallax-layer {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

/* ═══════════════ 3D TILT DATA ATTRIBUTE ═══════════════ */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ═══════════════ FOOTER SOCIALS ═══════════════ */


/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 24px;
    text-align: left;
  }

  .timeline-left,
  .timeline-right {
    left: 0;
    padding-left: 60px;
    padding-right: 24px;
    text-align: left;
  }

  .timeline-line {
    left: 20px;
    transform: none;
  }

  .timeline-left .timeline-marker,
  .timeline-right .timeline-marker {
    left: -2px;
    right: auto;
  }

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

  .workbook-split {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --fs-body: 1rem;
    --fs-small: 0.95rem;
  }

  .section {
    padding: 70px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .timeline-item {
    padding-bottom: 40px;
  }

  .timeline-num {
    font-size: 2rem;
  }

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

  /* Fix navbar when menu is open - ensure it blends with overlay */
  body.menu-open .navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  /* Disable tilt effects on mobile */
  [data-tilt] {
    transform: none !important;
    perspective: none !important;
  }

  .for-you-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .pricing-card {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  html,
  body,
  a,
  .btn,
  .nav-burger {
    cursor: auto;
  }

  .cta-quotes {
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav-link,
  .mobile-nav-cta,
  .mobile-overlay-phone a {
    cursor: auto;
  }

  .nav-logo-tagline {
    font-size: 0.82rem;
  }

  .hero-badge {
    font-size: 0.9rem;
  }

  .support-header-text span {
    font-size: 0.9rem;
  }

  .support-features li strong {
    font-size: 0.95rem;
  }

  .support-features li span {
    font-size: 0.9rem;
  }

  .support-bottom-text {
    font-size: 0.9rem;
  }

  .support-stat-label {
    font-size: 0.85rem;
  }

  .tg-header-name {
    font-size: 0.95rem;
  }

  .tg-header-status {
    font-size: 0.85rem;
  }

  .tg-msg-bubble {
    font-size: 0.9rem;
  }

  .tg-msg-sender {
    font-size: 0.82rem;
  }

  .tg-msg-time {
    font-size: 0.82rem;
  }

  .tg-date-badge {
    font-size: 0.82rem;
  }

  .tg-msg-reaction {
    font-size: 0.82rem;
  }

  .tg-msg-reaction span {
    font-size: 0.8rem;
  }

  .tg-input-text {
    font-size: 0.9rem;
  }

  .review-info span {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-hero: 2.2rem;
    /* Scaled down from clamp value */
    --fs-h2: 1.6rem;
  }

  .container {
    padding: 0 20px;
    overflow-wrap: break-word;
    /* Prevent long words from overflowing */
  }

  .cosmic-cradle {
    width: 280px;
    height: 280px;
  }

  .baby-silhouette svg {
    width: 180px;
    height: 180px;
  }

  .workbook-3d {
    width: 240px;
    height: 320px;
  }

  .mobile-nav-link {
    font-size: 1.6rem;
    padding: 12px 0;
  }

  .mobile-nav-cta {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .pricing-price {
    font-size: 3.2rem;
  }
}

@media (max-width: 380px) {
  .pricing-price {
    font-size: 2.6rem;
  }
}

/* ─── Hero Bottom Fade ─── */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, var(--clr-bg) 20%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Utility classes extracted from former inline styles */
.u-text-primary { color: var(--clr-primary); }

.u-float-pos-tr-out { top: -60px; right: -100px; left: auto; bottom: auto; }
.u-float-pos-left-out { top: 20%; left: -120px; right: auto; }
.u-float-pos-tr-in { top: 10%; right: 5%; left: auto; }

.u-timeline-line-reset { padding: 0; margin: 0; border: none; }
.u-list-none { list-style: none; }

.u-mb-16 { margin-bottom: 16px; }
.u-mb-8 { margin-bottom: 8px; }
.u-mt-24 { margin-top: 24px; }
.u-mx-auto { margin: 0 auto; }
.u-mx-auto-mb-20 { margin: 0 auto 20px; }
.u-badge-center-table { margin: 0 auto 20px; display: table; }
.u-maxw-none { max-width: none; }

.u-text-center { text-align: center; }
.u-layer-2 { position: relative; z-index: 2; }

.u-inline-icon { display: inline; vertical-align: middle; }
.u-inline-icon-mr-4 { display: inline; vertical-align: middle; margin-right: 4px; }
.u-inline-icon-mr-6 { display: inline; vertical-align: middle; margin-right: 6px; }

.u-flex-center-wrap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.u-flex-center-wrap-mt-32 { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

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

.u-caption-muted { font-size: 0.85rem; opacity: 0.85; margin-top: 8px; }
.u-note-muted { margin-top: 16px; font-size: 0.85rem; opacity: 0.7; }
.u-hero-desc-soft { opacity: 0.8; animation-delay: 0.35s; }
.u-cta-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 32px; font-family: var(--ff-display); }

.u-footer-center-block { display: block; text-align: center; }

.u-bg-rose { background: #D4727E; }
.u-bg-blue { background: #6C9BD2; }
.u-bg-sage { background: #A8BDA0; }
.u-bg-gold { background: #D4A76A; }
.u-bg-violet { background: #9B7DC4; }
