@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core palette - trustworthy deep emerald + brand lime accent */
  --bg-color: #FAFBF9;        /* clean soft white */
  --bg-alt: #EDF3EF;          /* cool soft mint */
  --surface: #FFFFFF;
  --fg-color: #0C1C17;        /* deep ink green (headings) */

  /* Brand (kept variable names for inline-style compatibility) */
  --lime-color: #0C6B58;       /* deep emerald - primary */
  --primary-hover: #084C3E;    /* darker emerald */
  --accent: #C2F500;           /* brand lime - sharp accent */
  --lime-glow: rgba(12, 107, 88, 0.12);
  --lime-glow-strong: rgba(12, 107, 88, 0.30);
  --primary-soft: rgba(12, 107, 88, 0.06);

  /* Surfaces & lines */
  --glass-bg: #FFFFFF;
  --glass-border: rgba(14, 31, 26, 0.10);
  --glass-border-hover: rgba(12, 107, 88, 0.35);

  --text-color: #44504A;       /* body text */
  --text-muted: #76817B;       /* muted */

  --shadow-sm: 0 4px 16px rgba(14, 31, 26, 0.05);
  --shadow-md: 0 18px 40px rgba(14, 31, 26, 0.08);
  --shadow-lg: 0 30px 60px rgba(14, 31, 26, 0.12);

  --transition-speed: 0.4s;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Soft ambient wash - replaces the noisy grid + glow blobs */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(12, 107, 88, 0.05) 0%, transparent 60%),
    radial-gradient(50% 45% at 0% 30%, rgba(194, 245, 0, 0.05) 0%, transparent 60%);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: rgba(12, 107, 88, 0.30);
  border-radius: 10px;
  border: 2px solid var(--bg-alt);
}
::-webkit-scrollbar-thumb:hover { background: var(--lime-color); }

/* Typography */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--fg-color);
}

h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--fg-color);
}

p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

.highlight {
  color: var(--lime-color);
  font-style: italic;
  background: linear-gradient(transparent 62%, rgba(194, 245, 0, 0.55) 0);
  padding: 0 3px;
  border-radius: 2px;
}

.text-gradient {
  color: var(--fg-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--lime-color);
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 107, 88, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(12, 107, 88, 0.30);
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--fg-color);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  border-color: var(--lime-color);
  color: #fff;
  background-color: var(--lime-color);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(250, 251, 249, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

.navbar.scrolled .navbar-container {
  padding: 14px 24px;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--lime-color);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-speed) ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--lime-color);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover { color: var(--lime-color); }
.nav-link:hover::after { width: 100%; }

/* Section Common */
section {
  padding: 110px 24px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-centered { text-align: center; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime-color);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background-color: var(--accent);
  margin-right: 10px;
}

.section-title {
  font-size: 3.1rem;
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--fg-color);
}

.text-centered.section-title { margin-left: auto; margin-right: auto; }

/* Cards */
.glass-card {
  background-color: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md);
}

/* --- HERO --- */
.hero-section {
  padding: 90px 70px;
  margin-top: 130px;
  margin-bottom: 40px;
  border-radius: 36px;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(12, 107, 88, 0.08) 0%, transparent 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(194, 245, 0, 0.07) 0%, transparent 55%),
    linear-gradient(135deg, #FFFFFF 0%, #EAF2ED 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-left h1 {
  font-size: 4rem;
  margin-bottom: 22px;
  line-height: 1.04;
}

.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta-wrapper { margin-bottom: 16px; }

.hero-sub-cta { font-size: 0.85rem; color: var(--text-muted); }

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Phone Mockup */
.phone-mockup {
  width: 320px;
  height: 640px;
  border-radius: 48px;
  border: 10px solid #20211F;
  background-color: #20211F;
  box-shadow: 0 35px 60px -20px rgba(14, 31, 26, 0.45);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 25px;
  border-radius: 20px;
  background-color: #20211F;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #FFFFFF;
  padding-top: 95px;
  overflow: hidden;
}

/* Instagram-style Chat */
.insta-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: none;
}
.insta-chat::-webkit-scrollbar { display: none; }

.insta-header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 0 16px 12px 16px;
  border-bottom: 1px solid rgba(14, 31, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  z-index: 10;
}

.insta-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(14, 31, 26, 0.06);
  background-color: #FFFFFF;
  z-index: 5;
}

.insta-pill {
  background-color: var(--primary-soft);
  border: 1px solid rgba(12, 107, 88, 0.22);
  color: var(--lime-color);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.insta-pill:hover {
  background-color: var(--lime-color);
  color: #fff;
}

.insta-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(14, 31, 26, 0.08);
  background-color: #FAFAF8;
}

.insta-input-area input {
  flex: 1;
  background-color: #F1EEE9;
  border: 1px solid transparent;
  color: var(--fg-color);
  font-size: 0.8rem;
  padding: 9px 14px;
  border-radius: 20px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.insta-input-area input::placeholder { color: var(--text-muted); }

.insta-input-area input:focus {
  border-color: var(--lime-color);
  background-color: #fff;
}

.insta-input-area button {
  background-color: transparent;
  border: none;
  color: var(--lime-color);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 4px 8px;
}
.insta-input-area button:hover { opacity: 0.7; }

.insta-clear-btn {
  background: transparent;
  border: 1px solid rgba(14, 31, 26, 0.15);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.insta-clear-btn:hover {
  border-color: #d9534f;
  color: #d9534f;
  background-color: rgba(217, 83, 79, 0.06);
}

.insta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 2px;
}

.insta-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--lime-color);
}

.insta-username { font-size: 0.85rem; font-weight: 600; color: var(--fg-color); }

.insta-bubble {
  max-width: 80%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 0.85rem;
  line-height: 1.45;
  animation: pop-message 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.insta-bubble.user {
  background-color: var(--lime-color);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.insta-bubble.ai {
  background-color: #F1EEE9;
  color: var(--fg-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

@keyframes pop-message {
  from { transform: scale(0.85) translateY(14px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Typing indicator */
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 4px 0; }
.typing-indicator span {
  width: 6px; height: 6px;
  background-color: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* Floating channel icons */
/* Channel icons = the AI quietly watching every channel, always on.
   Calm breathing + a round-robin "live ping" that lights one channel at a time. */
.floating-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background-color: #FFFFFF;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  animation: breathe 5.5s ease-in-out infinite;
}

/* The "live" ping ring - colored per channel, fires in sequence */
.floating-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  border: 2px solid currentColor;
  opacity: 0;
  animation: ping-ring 8s ease-out infinite;
}

.fi-whatsapp { top: 10%; left: -25px; animation-delay: 0s;   color: #25D366; }
.fi-instagram { top: 45%; left: -45px; animation-delay: 0.6s; color: #E1306C; }
.fi-phone { top: 20%; right: -35px; animation-delay: 1.2s; color: var(--lime-color); }
.fi-sms { top: 55%; right: -25px; animation-delay: 1.8s; color: #0A84FF; }

.fi-whatsapp::after  { animation-delay: 0s; }
.fi-instagram::after { animation-delay: 2s; }
.fi-phone::after     { animation-delay: 4s; }
.fi-sms::after       { animation-delay: 6s; }

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes ping-ring {
  0%   { transform: scale(0.85); opacity: 0.55; }
  18%  { opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* --- PAIN --- */
.pain-section { display: flex; flex-direction: column; align-items: center; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 40px;
}

.pain-left { display: flex; flex-direction: column; gap: 22px; }
.pain-left p { font-size: 1.18rem; }

.pain-right { display: flex; justify-content: center; }

.phone-mockup-pain {
  width: 320px;
  height: 560px;
  border-radius: 46px;
  border: 9px solid #181a17;
  background:
    radial-gradient(120% 85% at 50% 0%, #3C6B5C 0%, #244A3F 55%, #16302A 100%);
  box-shadow: var(--shadow-lg), inset 0 0 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Dynamic island */
.ios-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 6;
}

/* Status bar */
.ios-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px 0;
  color: #fff;
}
.ios-sb-time { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; }
.ios-sb-right { display: flex; align-items: center; gap: 6px; }
.ios-sb-ico { height: 12px; width: auto; fill: #fff; }
.ios-sb-batt { height: 13px; }

/* Lockscreen clock block */
.lockscreen-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 26px;
  margin-bottom: 26px;
}
.ios-lock {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}
.ios-lock svg { width: 100%; height: 100%; }
.lockscreen-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}
.lockscreen-time {
  font-size: 3.6rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Notifications fill the middle and stack */
.lockscreen-notis {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}

/* Lockscreen footer controls */
.ios-lock-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px 10px;
}
.ios-lock-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ios-lock-btn svg { width: 19px; height: 19px; }
.ios-home-indicator {
  width: 120px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.65);
  margin: 0 auto 8px;
}

/* Notifications drop in and stack one by one - messages piling up, unanswered. */
.phone-notification {
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-16px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.show .phone-notification { opacity: 1; transform: none; }
.fade-up.show .lockscreen-notis .phone-notification:nth-child(1) { transition-delay: 0.25s; }
.fade-up.show .lockscreen-notis .phone-notification:nth-child(2) { transition-delay: 0.55s; }
.fade-up.show .lockscreen-notis .phone-notification:nth-child(3) { transition-delay: 0.85s; }

.noti-icon {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
/* The missed call keeps pulsing - the one that won't stop nagging. */
.noti-icon.missed { background-color: #e8483d; }
.noti-icon.missed::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid #e8483d;
  animation: ping-ring 2.4s ease-out infinite;
}
.noti-icon.voicemail { background-color: #8e8e93; }
.noti-icon.dm { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

.noti-content { flex: 1; }

.noti-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  display: flex;
  justify-content: space-between;
  color: #1E2A25;
}

.noti-time { font-size: 0.72rem; color: #8A938D; font-weight: 500; }
.noti-desc { font-size: 0.8rem; color: #4A554F; }

.pain-punchline {
  font-size: 1.55rem;
  font-weight: 600;
  text-align: center;
  max-width: 720px;
  margin-top: 40px;
  line-height: 1.4;
  color: var(--fg-color);
  font-family: var(--font-serif);
}

/* --- STATS --- */
.stats-section { display: flex; flex-direction: column; align-items: center; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  width: 100%;
  margin-top: 50px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--lime-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg-color);
  margin-bottom: 8px;
}

.stat-desc { font-size: 0.95rem; color: var(--text-muted); }

.stat-emphasis {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg-color);
  line-height: 1.45;
}

/* Calculator */
.calc-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--glass-border);
  padding-top: 22px;
}

.calc-row { display: flex; justify-content: space-between; align-items: center; }
.calc-label { font-size: 0.88rem; color: var(--text-muted); }

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: rgba(12, 107, 88, 0.15);
  outline: none;
  margin: 8px 0;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lime-color);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(12, 107, 88, 0.4);
  transition: transform 0.1s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 18px; height: 18px; border: none;
  border-radius: 50%;
  background: var(--lime-color);
  cursor: pointer;
}

.calc-result { font-size: 1.1rem; font-weight: 700; color: var(--lime-color); }

/* --- DREAM --- */
.dream-section {
  padding: 90px 70px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 36px;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(12, 107, 88, 0.09) 0%, transparent 55%),
    radial-gradient(80% 120% at 100% 100%, rgba(194, 245, 0, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, #EAF2ED 0%, #FFFFFF 100%);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dream-left { display: flex; flex-direction: column; gap: 28px; }

.quote-card {
  border-left: 3px solid var(--accent);
  background-color: var(--primary-soft);
  padding: 22px 24px;
  border-radius: 0 18px 18px 0;
}

.quote-card p {
  color: var(--fg-color);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
}

.dream-right { display: flex; justify-content: center; }

/* AI Live Chat widget */
.chat-widget-mockup {
  width: 100%;
  max-width: 440px;
  height: 440px;
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.chat-widget-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FAFAF8;
}

.chat-bot-profile { display: flex; align-items: center; gap: 12px; }

.chat-bot-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lime-color);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
}

.chat-bot-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--fg-color); }

.chat-bot-info span {
  font-size: 0.75rem;
  color: var(--lime-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-bot-info span::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background-color: #34C759;
  border-radius: 50%;
}

.chat-widget-body {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  background-color: #FCFBF9;
}

.chat-bubble {
  max-width: 85%;
  padding: 13px 17px;
  border-radius: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: pop-message 0.4s ease both;
}

.chat-bubble.bot {
  background-color: #F1EEE9;
  color: var(--fg-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.visitor {
  background-color: var(--lime-color);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.booking-card {
  background-color: var(--primary-soft);
  border: 1px dashed rgba(12, 107, 88, 0.3);
  padding: 16px;
  border-radius: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-card h5 { font-size: 0.9rem; font-weight: 700; color: var(--fg-color); }

.booking-card-detail {
  font-size: 0.8rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-card-detail svg { width: 14px; height: 14px; fill: var(--lime-color); flex-shrink: 0; }

.booking-success {
  background-color: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.3);
  color: #1e7e44;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.insta-booking-card {
  background-color: var(--primary-soft);
  border: 1px dashed rgba(12, 107, 88, 0.3);
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.8rem;
  align-self: flex-start;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: pop-message 0.4s ease both;
}
.insta-booking-card h5 { font-size: 0.85rem; font-weight: 700; color: var(--fg-color); margin-bottom: 2px; }
.insta-booking-card-detail { font-size: 0.78rem; color: var(--text-color); display: flex; align-items: center; gap: 6px; }

/* --- SOLUTION --- */
.solution-section { display: flex; flex-direction: column; align-items: center; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 40px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
}

.solution-icon-container {
  width: 50px; height: 50px;
  border-radius: 14px;
  background-color: var(--primary-soft);
  border: 1px solid rgba(12, 107, 88, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-color);
  transition: all var(--transition-speed) ease;
}

.solution-card:hover .solution-icon-container {
  background-color: var(--lime-color);
  color: #fff;
}

.solution-card h3 { font-size: 1.2rem; color: var(--fg-color); font-weight: 700; }
.solution-card p { font-size: 0.95rem; color: var(--text-muted); }

.solution-explain {
  margin-top: 44px;
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  background-color: var(--surface);
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.solution-explain h4 { font-size: 1.35rem; color: var(--fg-color); margin-bottom: 12px; }

.solution-explain-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--glass-border);
  padding-left: 40px;
}

.explain-loop-item { display: flex; align-items: center; gap: 12px; }
.explain-loop-arrow { color: var(--lime-color); font-weight: 700; }

/* --- PROOF --- */
.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-left { display: flex; flex-direction: column; gap: 22px; }
.proof-left h2 { font-size: 2.9rem; }
.proof-left p { font-size: 1.18rem; }

.proof-right { display: flex; justify-content: center; }

.stat-showcase-card {
  width: 100%;
  max-width: 440px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(12, 107, 88, 0.07) 0%, #FFFFFF 60%);
  border: 1px solid rgba(12, 107, 88, 0.18);
}

.stat-circle-wrapper {
  position: relative;
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}

.stat-circle-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}

.stat-circle-bg { fill: none; stroke: rgba(12, 107, 88, 0.10); stroke-width: 8; }

.stat-circle-progress {
  fill: none;
  stroke: var(--lime-color);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-big-number {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--fg-color);
  z-index: 2;
  font-feature-settings: "tnum";
}

.stat-proof-desc {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-color);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* --- BENEFITS --- */
.benefits-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.benefits-left { display: flex; flex-direction: column; gap: 36px; }
.benefits-left h2 { font-size: 2.9rem; }

.benefits-list { display: flex; flex-direction: column; gap: 22px; }

.benefit-item { display: flex; align-items: flex-start; gap: 16px; }

.benefit-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background-color: var(--lime-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text h3 { font-size: 1.15rem; font-weight: 700; color: var(--fg-color); margin-bottom: 4px; }
.benefit-text p { font-size: 0.95rem; color: var(--text-muted); }

.benefits-right { display: flex; justify-content: center; position: relative; }

/* CSS-composed visual (replaces missing luxury_clinic.png) */
.luxury-visual-container {
  width: 100%;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  position: relative;
  background:
    radial-gradient(70% 60% at 80% 15%, rgba(194, 245, 0, 0.35) 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 90%, rgba(12, 107, 88, 0.55) 0%, transparent 60%),
    linear-gradient(150deg, #356354 0%, #244A3F 55%, #1B362E 100%);
}

.luxury-visual-container::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  top: -60px; right: -60px;
}
.luxury-visual-container::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  bottom: 40px; left: -40px;
}

.luxury-visual-content {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.luxury-visual-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.luxury-visual-headline {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  max-width: 320px;
}

.luxury-float-card {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  animation: soft-float 7s ease-in-out infinite;
}

@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.luxury-float-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--lime-color);
  display: flex; align-items: center; justify-content: center;
}
.luxury-float-icon svg { width: 20px; height: 20px; fill: #fff; }

.luxury-float-stat { display: flex; flex-direction: column; }
.luxury-float-stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg-color);
  line-height: 1;
}
.luxury-float-stat span { font-size: 0.78rem; color: var(--text-muted); }

/* --- FAQ --- */
details.glass-card { list-style: none; }
details.glass-card summary { font-family: var(--font-sans); color: var(--fg-color); }
details.glass-card summary::-webkit-details-marker { display: none; }
details.glass-card[open] summary span:last-child { transform: rotate(45deg); }
details.glass-card summary span:last-child { transition: transform 0.3s ease; display: inline-block; }
details.glass-card p { color: var(--text-color); }

/* --- FINAL CTA --- */
.cta-section { display: flex; flex-direction: column; align-items: center; }
.cta-section p { max-width: 620px; margin-bottom: 40px; }

.calendly-mock {
  width: 100%;
  max-width: 820px;
  background-color: #FFFFFF;
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 520px;
  position: relative;
}

.calendly-left {
  padding: 40px;
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, #EAF2ED 0%, #FFFFFF 60%);
}

.calendly-host { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }

.calendly-host-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background-color: var(--lime-color);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.calendly-host-info h4 { font-size: 0.95rem; color: var(--fg-color); }
.calendly-host-info p { font-size: 0.8rem; color: var(--text-muted); }

.calendly-meeting-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--fg-color);
  margin-bottom: 18px;
  line-height: 1.2;
}

.calendly-meeting-details { display: flex; flex-direction: column; gap: 12px; }

.calendly-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-color);
}
.calendly-detail-item svg { width: 16px; height: 16px; fill: var(--lime-color); flex-shrink: 0; }

.calendly-right {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  background: #FFFFFF;
}

.calendly-reassurance {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 18px;
  text-align: center;
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px;
  background-color: var(--bg-alt);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lime-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-desc { font-size: 1rem; color: var(--text-muted); text-align: center; }

.footer-links { display: flex; gap: 32px; list-style: none; flex-wrap: wrap; justify-content: center; }

.footer-link-item a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
}
.footer-link-item a:hover { color: var(--lime-color); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  width: 100%;
}

.footer-bottom a { color: var(--lime-color); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* --- SCROLL ANIMATION --- */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.show { opacity: 1; transform: translateY(0); }

/* Staggered child reveals - content arrives as a crafted cascade, not one slab. */
.fade-up .stat-card,
.fade-up .solution-card,
.fade-up .benefit-item,
.fade-up .explain-loop-item,
.fade-up details.glass-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.show .stat-card,
.fade-up.show .solution-card,
.fade-up.show .benefit-item,
.fade-up.show .explain-loop-item,
.fade-up.show details.glass-card {
  opacity: 1;
  transform: none;
}

.fade-up.show .stat-card:nth-child(1) { transition-delay: 0.05s; }
.fade-up.show .stat-card:nth-child(2) { transition-delay: 0.17s; }
.fade-up.show .stat-card:nth-child(3) { transition-delay: 0.29s; }

.fade-up.show .solution-card:nth-child(1) { transition-delay: 0.05s; }
.fade-up.show .solution-card:nth-child(2) { transition-delay: 0.15s; }
.fade-up.show .solution-card:nth-child(3) { transition-delay: 0.25s; }
.fade-up.show .solution-card:nth-child(4) { transition-delay: 0.35s; }

.fade-up.show .benefit-item:nth-child(1) { transition-delay: 0.06s; }
.fade-up.show .benefit-item:nth-child(2) { transition-delay: 0.16s; }
.fade-up.show .benefit-item:nth-child(3) { transition-delay: 0.26s; }
.fade-up.show .benefit-item:nth-child(4) { transition-delay: 0.36s; }
.fade-up.show .benefit-item:nth-child(5) { transition-delay: 0.46s; }

.fade-up.show .explain-loop-item:nth-child(1) { transition-delay: 0.10s; }
.fade-up.show .explain-loop-item:nth-child(2) { transition-delay: 0.22s; }
.fade-up.show .explain-loop-item:nth-child(3) { transition-delay: 0.34s; }

.fade-up.show details.glass-card:nth-child(1) { transition-delay: 0.05s; }
.fade-up.show details.glass-card:nth-child(2) { transition-delay: 0.13s; }
.fade-up.show details.glass-card:nth-child(3) { transition-delay: 0.21s; }
.fade-up.show details.glass-card:nth-child(4) { transition-delay: 0.29s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* In-chat speed cue + system meta lines */
.insta-meta {
  align-self: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--lime-color);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 2px 0;
  animation: pop-message 0.4s ease both;
}

.insta-seen {
  align-self: flex-end;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin: -6px 2px 0 0;
  animation: pop-message 0.3s ease both;
}

/* Respect users who prefer less motion - show everything, calmly. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up,
  .fade-up .stat-card,
  .fade-up .solution-card,
  .fade-up .benefit-item,
  .fade-up .explain-loop-item,
  .fade-up details.glass-card,
  .phone-notification {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Calculator inner grid (collapses on mobile) */
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  section { padding: 80px 24px; }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 70px 40px;
    margin-top: 110px;
    text-align: center;
  }
  .hero-left { align-items: center; }
  .hero-left h1 { font-size: 3.1rem; }

  .pain-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-card { min-height: auto; }

  .dream-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 40px;
  }

  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-section { grid-template-columns: 1fr; gap: 50px; }
  .benefits-section { grid-template-columns: 1fr; gap: 50px; }

  .calendly-mock { grid-template-columns: 1fr; min-height: auto; }
  .calendly-left { border-right: none; border-bottom: 1px solid var(--glass-border); }
}

@media (max-width: 768px) {
  section { padding: 64px 18px; }
  .nav-menu { display: none; }
  h1, h2, p { overflow-wrap: break-word; }
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.1em; line-height: 1.5; }

  .hero-left h1 { font-size: 2.35rem; }
  .hero-left p { font-size: 1.05rem; }
  .section-title { font-size: 2rem; }
  .proof-left h2, .benefits-left h2 { font-size: 2rem; }
  .pain-punchline { font-size: 1.3rem; }
  .stat-emphasis { font-size: 1.3rem; }
  .stat-value { font-size: 3.2rem; }

  .solution-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; gap: 28px; }
  .solution-explain { grid-template-columns: 1fr; padding: 26px; }
  .solution-explain-right {
    border-left: none;
    border-top: 1px solid var(--glass-border);
    padding-left: 0;
    padding-top: 24px;
  }

  .hero-section, .dream-section { padding: 44px 22px; border-radius: 28px; }
  .glass-card { padding: 28px; }

  /* Hide off-canvas floating icons so they don't clip at the viewport edge */
  .floating-icon { display: none; }

  /* Calendly embed must not force horizontal overflow on small screens */
  .calendly-inline-widget { min-width: 0 !important; }
  .calendly-left { padding: 28px; }

  /* Header: keep logo + CTA, tighten spacing */
  .navbar-container { padding: 14px 18px; gap: 12px; }
  .logo { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 1.95rem; }
  .section-title { font-size: 1.75rem; }
  .proof-left h2, .benefits-left h2 { font-size: 1.75rem; }
  /* Shrink the phones' real width so they never force horizontal overflow */
  .phone-mockup { width: 286px; height: 580px; }
  .phone-mockup-pain { width: 286px; height: 512px; }
  /* Shrink the nav CTA so the header never wraps */
  .navbar .btn-secondary { padding: 9px 14px !important; font-size: 0.8rem !important; }
}

@media (max-width: 360px) {
  .hero-left h1 { font-size: 1.8rem; }
  .phone-mockup { width: 264px; height: 560px; }
  .phone-mockup-pain { width: 264px; height: 500px; }
  .navbar .btn-secondary { padding: 8px 12px !important; font-size: 0.74rem !important; }
}

/* Particle canvas (unused fallback) */
#particles-js { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.active-tab {
  background-color: var(--lime-color) !important;
  color: #fff !important;
  border-color: var(--lime-color) !important;
}
