/* ═══════════════════════════════════════════════════════════════
   FRIENDLY REMINDER LANDING PAGE — MAIN STYLES
   Colors, Layout, Typography, Components
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bg-main: #F5F0DD;
  --bg-secondary: #FCF7E6;
  --accent: #FA6C4C;
  --dark-blue: #062943;
  --confirm-green: #00CA85;
  --secondary: #03DAC6;
  --text-color: #052136;
  --text-light: rgba(5, 33, 54, 0.7);
  --text-medium: rgba(5, 33, 54, 0.85);

  /* Color palette */
  --green: #00D084;
  --blue: #1E90FF;
  --red: #FF5E5E;
  --orange: #FFB92E;
  --purple: #A86CFF;
  --teal: #39D3A7;
  --cyan: #48E1E4;
  --coral: #FF7A5C;
  --yellow: #FFD049;
  --light-purple: #D1AEFF;

  /* Fonts */
  --font-primary: 'Sora', sans-serif;
  --font-title: 'Tiro Devanagari', serif;
  --font-secondary: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 0;
  --content-max-width: 1400px;
  --nav-height: 72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-main);
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Noise / Grain Overlay ─────────────────────────────────── */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Light Sweep ───────────────────────────────────────────── */
.light-sweep {
  position: fixed;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.03) 45%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 55%,
    transparent 60%
  );
  opacity: 0;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 9999;
  background: rgba(252, 247, 230, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 41, 67, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled {
  background: rgba(252, 247, 230, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.navbar-dark {
  background: rgba(6, 41, 67, 0.9);
  border-bottom-color: rgba(255,255,255,0.06);
}

.navbar.navbar-dark .nav-logo-text,
.navbar.navbar-dark .nav-link {
  color: var(--bg-main);
}

.navbar.navbar-dark .nav-link.active,
.navbar.navbar-dark .nav-link:hover {
  color: var(--accent);
}

.nav-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.nav-logo-icon-light {
  background: var(--accent);
}

.nav-logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-blue);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-cta {
  display: flex;
}

.nav-download-btn {
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(250, 108, 76, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 40px;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-mobile-menu.show {
  display: flex;
}

.nav-mobile-link {
  padding: 12px 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-blue);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-mobile-cta {
  margin-top: 8px;
  text-align: center;
  padding: 12px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS — Base Layout (16:9)
   ══════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: background-color 0.6s ease;
}

/* Maintain 16:9 aspect with minimum full viewport */
@media (min-aspect-ratio: 16/9) {
  .section {
    min-height: 100vh;
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTION 1: HERO
   ══════════════════════════════════════════════════════════════ */
.section-hero {
  background: var(--bg-main);
  padding-top: var(--nav-height);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max-width);
  width: 100%;
  padding: 60px 60px 40px;
  gap: 60px;
}

.hero-left {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-right {
  flex: 0 0 48%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: -40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 202, 133, 0.1);
  border: 1px solid rgba(0, 202, 133, 0.3);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--confirm-green);
  width: fit-content;
}

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

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

.hero-headline {
  font-family: var(--font-title);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark-blue);
  letter-spacing: -1px;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.hero-accent {
  color: var(--accent) !important;
}

.hero-heart {
  display: inline-block;
  font-size: 0.7em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Store Badges (official Apple / Google Play images) */
.store-badge-link {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.store-badge-link:hover {
  opacity: 0.82;
  transform: scale(1.04);
}

.store-badge-link:active {
  transform: scale(0.97);
  opacity: 0.7;
}

.store-badge-img {
  display: block;
}

.store-badge-apple {
  height: 50px;
}

.store-badge-google {
  height: 74px;
  margin: -12px 0;
}

/* Legacy store button styles (kept for compatibility) */
.store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-label {
  font-size: 10px;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1;
}

.store-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -4px;
}

.scroll-chevrons svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  animation: bounce-chevron 2s ease-in-out infinite;
}

.scroll-chevrons svg:nth-child(2) {
  animation-delay: 0.15s;
  opacity: 0.5;
}

@keyframes bounce-chevron {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Blobs — REMOVED from hero, hide them */
.blob { display: none; }

/* ══════════════════════════════════════════════════════════════
   HUGEICONS SIZING
   ══════════════════════════════════════════════════════════════ */
.bullet-icon i,
.ideas-feature-icon i {
  font-size: 16px;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   LIQUID DISSOLVE CANVAS (Hero → Timeline WebGL transition)
   ══════════════════════════════════════════════════════════════ */
.liquid-dissolve-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* ══════════════════════════════════════════════════════════════
   AVATAR COMPOSITOR (for friend cards on phone screens)
   ══════════════════════════════════════════════════════════════ */
.avatar-composite {
  position: relative;
  flex-shrink: 0;
}

.avatar-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.avatar-body-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* ══════════════════════════════════════════════════════════════
   DECORATIVE ILLUSTRATIONS (positioned in sections)
   ══════════════════════════════════════════════════════════════ */
.section-illustration {
  position: absolute;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.05));
}

.hero-illustration-deco {
  position: absolute;
  width: 260px;
  bottom: 40px;
  right: 80px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.section-illustration-timeline {
  width: 220px;
  bottom: 30px;
  left: 60px;
}

.section-illustration-profile {
  width: 200px;
  top: 40px;
  right: 60px;
}

.section-illustration-stats {
  width: 240px;
  bottom: 20px;
  right: 60px;
}

.section-illustration-faq {
  width: 200px;
  bottom: 30px;
  left: 40px;
}

.section-illustration-calendar {
  width: 200px;
  bottom: 40px;
  left: 60px;
}

.section-calendar {
  background: var(--bg-secondary);
  margin-top: -1px;
}

/* ══════════════════════════════════════════════════════════════
   DECORATIVE SVG PATHS / WAVE LINES
   ══════════════════════════════════════════════════════════════ */
.deco-path {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.deco-path-hero {
  height: 120px;
  bottom: 0;
}

.deco-path-timeline {
  height: 160px;
  bottom: 0;
}

.deco-path-ideas {
  height: 140px;
  bottom: -10px;
}

.deco-path-profile {
  height: 160px;
  bottom: 0;
}

.deco-path-stats {
  height: 120px;
  bottom: 0;
}

.deco-path-calendar {
  height: 140px;
  bottom: -10px;
}

.deco-path path {
  opacity: 1 !important;
}

/* ── Floating Decorative SVG Lines ─────────────────────────── */
.deco-float {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-float-1 {
  width: 180px;
  height: 180px;
  top: 15%;
  right: 5%;
  animation: deco-drift-1 18s ease-in-out infinite;
}

.deco-float-2 {
  width: 240px;
  height: 160px;
  bottom: 25%;
  left: 3%;
  animation: deco-drift-2 22s ease-in-out infinite;
}

.deco-float-3 {
  width: 160px;
  height: 160px;
  top: 40%;
  left: 15%;
  animation: deco-drift-3 20s ease-in-out infinite;
}

.deco-float-4 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 8%;
  animation: deco-drift-2 24s ease-in-out infinite;
}

.deco-float-5 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  left: 5%;
  animation: deco-drift-1 16s ease-in-out infinite reverse;
}

.deco-float-6 {
  width: 180px;
  height: 180px;
  top: 20%;
  left: 10%;
  animation: deco-drift-3 25s ease-in-out infinite;
}

.deco-float-7 {
  width: 220px;
  height: 150px;
  bottom: 15%;
  right: 6%;
  animation: deco-drift-1 20s ease-in-out infinite;
}

.deco-float-8 {
  width: 160px;
  height: 160px;
  top: 25%;
  right: 12%;
  animation: deco-drift-2 19s ease-in-out infinite reverse;
}

@keyframes deco-drift-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(3deg); }
  50% { transform: translate(-10px, -35px) rotate(-2deg); }
  75% { transform: translate(20px, -15px) rotate(4deg); }
}

@keyframes deco-drift-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, 15px) rotate(-3deg); }
  66% { transform: translate(15px, -25px) rotate(2deg); }
}

@keyframes deco-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -20px) scale(1.05); }
}

/* ══════════════════════════════════════════════════════════════
   PHONE FRAMES
   ══════════════════════════════════════════════════════════════ */
.hero-phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── iPhone frame (SVG overlay approach) ── */
.phone-frame {
  position: relative;
  width: 280px;
  aspect-ratio: 1300 / 2642;
  filter: drop-shadow(0 20px 60px rgba(6, 41, 67, 0.3));
}

.phone-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../phonescreen/iphone-frame.svg') center / contain no-repeat;
  pointer-events: none;
  z-index: 10;
}

.phone-frame-light {
  filter: drop-shadow(0 20px 60px rgba(6, 41, 67, 0.4));
}

.phone-frame-small {
  width: 220px;
}

.phone-frame-small .phone-screen {
  transform: scale(0.79);
  transform-origin: top left;
  width: 114.3%;
  height: 121.8%;
}

.phone-screen {
  position: absolute;
  left: 5%;
  top: 2.08%;
  width: 90%;
  height: 95.84%;
  background: var(--bg-main);
  border-radius: 12.7% / 6.25%;
  overflow: hidden;
}

/* Floating notification cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 5;
  opacity: 0;
  white-space: nowrap;
}

.floating-emoji {
  font-size: 24px;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
}

.floating-card-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
}

.floating-card-text span {
  font-size: 11px;
  color: var(--text-light);
}

.floating-card-1 { top: 15%; right: -40px; }
.floating-card-2 { top: 45%; left: -50px; }
.floating-card-3 { bottom: 20%; right: -30px; }

/* ══════════════════════════════════════════════════════════════
   FEATURE SECTIONS
   ══════════════════════════════════════════════════════════════ */
.section-feature {
  padding: 80px 0;
}

/* Dark section text */
.section-timeline,
.section-profile {
  color: var(--bg-main);
}

.section-timeline .feature-description,
.section-profile .feature-description {
  color: rgba(245, 240, 221, 0.7);
}

.section-timeline .feature-bullet span,
.section-profile .feature-bullet span {
  color: rgba(245, 240, 221, 0.85);
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.feature-content-reverse {
  flex-direction: row-reverse;
}

.feature-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-phone-side {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.label-line {
  width: 32px;
  height: 2px;
  border-radius: 1px;
}

.section-label[data-color="#FA6C4C"] { color: var(--accent); }
.section-label[data-color="#FA6C4C"] .label-line { background: var(--accent); }
.section-label[data-color="#00CA85"] { color: var(--confirm-green); }
.section-label[data-color="#00CA85"] .label-line { background: var(--confirm-green); }
.section-label[data-color="#1E90FF"] { color: var(--blue); }
.section-label[data-color="#1E90FF"] .label-line { background: var(--blue); }
.section-label[data-color="#A86CFF"] { color: var(--purple); }
.section-label[data-color="#A86CFF"] .label-line { background: var(--purple); }

.feature-headline {
  font-family: var(--font-title);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--confirm-green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(135deg, var(--purple), var(--light-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: linear-gradient(135deg, var(--accent), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 500px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.feature-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
}

.bullet-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Decorative circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.deco-circle-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
}

.deco-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -100px;
}

.deco-circle-3 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
}

.deco-circle-4 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
}

/* SVG decoration path */
.deco-path {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  opacity: 0.3;
}

/* Swipe trails */
.swipe-trail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
}

.swipe-trail-left {
  left: -60px;
  color: var(--accent);
}

.swipe-trail-right {
  right: -60px;
  color: var(--confirm-green);
}

/* Triple phone layout */
.feature-phone-triple {
  flex: 0 0 55%;
}

.triple-phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  perspective: 1200px;
  position: relative;
  padding: 20px 0;
}

/* Reduce shadow on triple phones to prevent blue blur appearance */
.triple-phone-container .phone-frame {
  filter: drop-shadow(0 10px 30px rgba(6, 41, 67, 0.15));
}

.triple-phone {
  transition: none;
}

.triple-phone-left {
  transform: translateX(60px) rotateY(25deg);
  z-index: 1;
}

.triple-phone-center {
  z-index: 3;
  position: relative;
}

.triple-phone-right {
  transform: translateX(-60px) rotateY(-25deg);
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════════════════ */
.section-stats {
  background: var(--bg-secondary);
  padding: 80px 0 60px;
  position: relative;
}

.stats-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 40px 60px;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-headline {
  font-family: var(--font-title);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card {
  background: var(--bg-main);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-blue);
  font-family: var(--font-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-icon {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  opacity: 0.3;
}

/* Value proposition cards */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-main);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Activity marquee */
.activity-marquee {
  overflow: hidden;
  padding: 40px 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee-track-1 {
  animation: marquee-left 60s linear infinite;
}

.marquee-track-2 {
  animation: marquee-right 70s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-pill {
  padding: 10px 20px;
  background: var(--bg-main);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════════ */
.section-faq {
  background: var(--bg-main);
  padding: 80px 0;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 60px;
}

.faq-headline {
  font-family: var(--font-title);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(250, 108, 76, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
  padding: 0 24px;
}

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

.faq-answer p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER / CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.section-footer {
  background: var(--dark-blue);
  color: var(--bg-main);
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: visible;
  gap: 0;
}

.footer-blob-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250,108,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.footer-headline {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bg-main);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  min-height: 2.3em;
}

.footer-subtitle {
  font-size: 18px;
  color: rgba(245, 240, 221, 0.7);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.footer-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 221, 0.08);
  padding: 24px 0 40px;
}

.footer-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(245, 240, 221, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(245, 240, 221, 0.4);
}

/* ══════════════════════════════════════════════════════════════
   IDEAS SHOWCASE LAYOUT (unique centered layout for section 3)
   ══════════════════════════════════════════════════════════════ */
.ideas-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 60px 40px;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.ideas-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ideas-headline {
  text-align: center;
}

.ideas-description {
  text-align: center;
  max-width: 560px;
}

.ideas-phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.ideas-phone-wrapper {
  position: relative;
  z-index: 2;
}

.ideas-illustration {
  position: absolute;
  width: 195px;
  opacity: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  z-index: 1;
}

.ideas-illustration-left {
  left: -170px;
  bottom: 15%;
  transform: rotate(-5deg);
}

.ideas-illustration-right {
  right: -170px;
  top: 15%;
  transform: rotate(5deg);
}

.ideas-features-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.ideas-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-main);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ideas-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ideas-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   SECTION TRANSITIONS — Clip-Path Reveal System
   ══════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  will-change: clip-path;
}

#hero     { z-index: 1; }
#features { z-index: 2; }
#ideas    { z-index: 3; }
#social   { z-index: 4; }
#profile  { z-index: 5; }
#calendar { z-index: 6; }
#stats    { z-index: 7; }
#faq      { z-index: 8; }
#download { z-index: 9; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .value-props { grid-template-columns: repeat(2, 1fr); }
  .triple-phone-container { gap: 0; }
  .phone-frame-small { width: 180px; }
}

@media (max-width: 968px) {
  .deco-float { display: none; }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-left {
    flex: 1;
    align-items: center;
  }

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

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

  .hero-right {
    flex: 1;
  }

  .feature-content,
  .feature-content-reverse {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 40px;
  }

  .feature-text-side {
    align-items: center;
  }

  .feature-description {
    text-align: center;
  }

  .feature-bullets {
    align-items: flex-start;
  }

  .section-label {
    justify-content: center;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .triple-phone-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .triple-phone-left { transform: translateX(15px) rotateY(8deg); }
  .triple-phone-right { transform: translateX(-15px) rotateY(-8deg); }

  .phone-frame-small { width: 160px; }

  .floating-card-1 { right: -10px; }
  .floating-card-2 { left: -10px; }
  .floating-card-3 { right: -10px; }

  /* Responsive blob illustrations */
  .hero-illustration-deco {
    width: 160px;
    bottom: 20px;
    right: 30px;
  }

  .section-illustration-timeline {
    width: 140px;
    bottom: 20px;
    left: 30px;
  }

  .section-illustration-profile {
    width: 130px;
    top: 30px;
    right: 30px;
  }

  .section-illustration-stats {
    width: 150px;
    bottom: 15px;
    right: 30px;
  }

  .section-illustration-faq {
    width: 120px;
    bottom: 20px;
    left: 20px;
  }

  /* Ideas showcase responsive */
  .ideas-showcase { padding: 40px 24px; gap: 30px; }
  .ideas-illustration { width: 80px; }
  .ideas-illustration-left { left: -100px; }
  .ideas-illustration-right { right: -100px; }
  .ideas-features-row { gap: 12px; }
  .ideas-feature-card { padding: 12px 16px; font-size: 13px; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: 36px; }
  .phone-frame { width: 240px; }
  .phone-frame-small { width: 140px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .value-props { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .faq-content { padding: 40px 20px; }
  .feature-content { padding: 40px 20px; }
  .stats-content { padding: 40px 20px; }
  .nav-inner { padding: 0 20px; }
  .floating-card { display: none; }
  
  /* Hide blob illustrations on small screens to prevent overlap */
  .hero-illustration-deco,
  .section-illustration-timeline,
  .section-illustration-profile,
  .section-illustration-stats,
  .section-illustration-faq {
    display: none;
  }
  
  /* Ideas illustrations hidden on small screens */
  .ideas-illustration { display: none; }
  .ideas-features-row { flex-direction: column; align-items: center; }
}
