*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #F43367;
  --primary-dark: #c41f4e;
  --on-surface: #171717;
  --secondary: #404040;
  --outline: #E5E5E5;
  --surface-low: #FAFAFA;
  --surface: #F5F5F5;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--on-surface);
  overflow-x: hidden;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.6;
}

.cursor.expand {
  width: 20px;
  height: 20px;
}

.cursor-ring.expand {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  height: 64px;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}

header .container {
  position: relative;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-style: italic;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

.logo-image {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateY(100%);
  height: 40px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

header.scrolled .logo {
  transform: translateY(-100%);
  opacity: 0;
}

header.scrolled .logo-image {
  transform: translateY(-50%) translateY(0);
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./../images/wedding-5.jpg');
  background-size: cover;
  background-position: center top;
  filter: sepia(0.3) saturate(0.8) hue-rotate(-10deg) brightness(0.7);
}


.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(244, 51, 103, 0.6);
  border-radius: 50%;
  pointer-events: none;
  backdrop-filter: blur(20px);
  filter: blur(10px);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  width: 100%;
  padding: 0 24px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-download {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-download .app-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  font-style: italic;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.hero-headline .accent { color: var(--primary); }

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  max-width: 520px;
 
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1s;
}

.btn-primary {
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244, 51, 103, 0.4); }

.btn-outline {
  background: transparent;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.5s;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(244, 51, 103, 0.8), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 120px 40px; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.container { max-width: 1120px; margin: 0 auto; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ===== 3D CARD TILT ===== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  will-change: transform;
}

.tilt-card .tilt-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.tilt-card:hover .tilt-shine { opacity: 1; }

/* ===== USP / FEATURES SECTION ===== */
.features-section {
  background: #ffffff;
  color: #1a1a1a;
}

.features-layout {
  margin-top: 64px;
}

.features-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

.feature-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}

.feature-text {
  flex: 1;
  max-width: 400px;
}

.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: #F43367;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
}

.feature-image {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hanging-line {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50px;
  background: #F43367;
}

.hanging-1 {
  transform: rotate(-5deg);
}

.hanging-2 {
  transform: rotate(8deg);
}

.hanging-3 {
  transform: rotate(-3deg);
}

.hanging-4 {
  transform: rotate(6deg);
}

.hanging-5 {
  transform: rotate(-4deg);
}

.hanging-6 {
  transform: rotate(7deg);
}

.feature-image:hover {
  transform: scale(1.1) rotate(0deg);
  z-index: 10;
}

/* ===== PROCESS VERTICAL TIMELINE ===== */
.process-section { 
  background: white; 
  position: relative;
  overflow: hidden;
}

.process-timeline {
  position: relative;
  max-width: 680px;
  margin: 80px auto 0;
  padding: 0 0 40px 0;
}

.timeline-track {
  position: absolute;
  left: 35px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: #E5E5E5;
  border-radius: 2px;
}

.timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--primary), #ff6b9d);
  border-radius: 2px;
  transition: height 0.05s linear;
}

.timeline-ball {
  position: absolute;
  left: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(244, 51, 103, 0.2), 0 0 20px rgba(244, 51, 103, 0.5);
  top: 0%;
  transform: translateY(-50%);
  transition: top 0.05s linear;
  animation: ballPulse 1.5s ease-in-out infinite;
}

@keyframes ballPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244, 51, 103, 0.2), 0 0 20px rgba(244, 51, 103, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(244, 51, 103, 0.15), 0 0 32px rgba(244, 51, 103, 0.7); }
}

.timeline-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 72px;
  position: relative;
  padding-left: 72px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-node {
  position: absolute;
  left: 27px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #E5E5E5;
  background: white;
  z-index: 2;
  transition: border-color 0.4s, background 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.timeline-node.lit {
  border-color: var(--primary);
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 0 5px rgba(244, 51, 103, 0.15), 0 0 16px rgba(244, 51, 103, 0.4);
}

.timeline-content {
  flex: 1;
  opacity: 0.35;
  transform: translateX(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content.lit { opacity: 1; transform: translateX(0); }

.timeline-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.timeline-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 12px;
  line-height: 1.2;
}

.timeline-step-desc {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.75;
  max-width: 480px;
}

.timeline-step-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--outline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-low);
  transition: border-color 0.4s, background 0.4s;
}

.timeline-content.lit .timeline-step-icon {
  border-color: rgba(244, 51, 103, 0.3);
  background: rgba(244, 51, 103, 0.05);
}

.timeline-step-icon .material-symbols-outlined { font-size: 22px; color: var(--primary); }

/* ===== STATS COUNTER ===== */
.stats-section {
  background: #2a2a2a;
  color: white;
  padding: 80px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.stat-item:last-child { border-right: none; }

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244, 51, 103, 0.08), transparent);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.stat-item:hover::before { transform: translateY(0); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-section { background: var(--surface-low); }

.testimonials-slider {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 80px;
}

.testimonial-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 0.7;
  color: var(--primary);
  opacity: 0.2;
  display: block;
  margin-bottom: 24px;
  font-style: italic;
  transform: translateY(20px);
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--on-surface);
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  overflow: hidden;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { text-align: left; }
.author-name { font-size: 14px; font-weight: 700; }
.author-detail { font-size: 12px; color: var(--secondary); margin-top: 2px; }
.stars { display: flex; gap: 3px; margin-top: 4px; }
.stars span { font-size: 14px; color: var(--primary); }

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

/* ===== MEMBERSHIP SECTION ===== */
.membership-section { background: white; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.plan-card {
  border: 1px solid var(--outline);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
  cursor: pointer;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card:hover::before { transform: scaleX(1); }
.plan-card:hover { transform: translateY(-12px); box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1); }

.plan-card.featured {
  border-color: var(--primary);
  background: var(--on-surface);
  color: white;
  transform: scale(1.03);
}

.plan-card.featured::before { transform: scaleX(1); }
.plan-card.featured:hover { transform: scale(1.03) translateY(-12px); }

.plan-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.plan-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.plan-tier { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 32px; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--outline);
}

.plan-card.featured .plan-price { border-bottom-color: rgba(255, 255, 255, 0.1); }
.price-currency { font-size: 20px; color: var(--secondary); }
.plan-card.featured .price-currency { color: rgba(255, 255, 255, 0.5); }

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--on-surface);
}

.plan-card.featured .price-amount { color: white; }
.price-period { font-size: 14px; color: var(--secondary); }
.plan-card.featured .price-period { color: rgba(255, 255, 255, 0.4); }

.plan-features { list-style: none; margin-bottom: 36px; }

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 14px;
}

.plan-card.featured .plan-features li { color: rgba(255, 255, 255, 0.7); }
.plan-features li .material-symbols-outlined { font-size: 18px; color: var(--primary); flex-shrink: 0; }
.plan-features li.disabled { opacity: 0.35; }
.plan-features li.disabled .material-symbols-outlined { color: var(--secondary); }

.plan-cta {
  width: 100%;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--on-surface);
  background: transparent;
  color: var(--on-surface);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.plan-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--on-surface);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.plan-cta span { position: relative; z-index: 1; }
.plan-cta:hover::before { transform: translateY(0); }
.plan-cta:hover { color: white; }

.plan-card.featured .plan-cta { background: var(--primary); border-color: var(--primary); color: white; }
.plan-card.featured .plan-cta::before { background: rgba(255, 255, 255, 0.15); }
.plan-card.featured .plan-cta:hover { color: white; }

/* ===== GALLERY MASONRY ===== */
.gallery-section { background: #fff; padding: 120px 0; }
.gallery-header { padding: 0 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 4px;
  margin-top: 56px;
  overflow: hidden;
}

.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(20%);
}

.gallery-item:hover img { transform: scale(1.08); filter: grayscale(0%); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 51, 103, 0);
  transition: background 0.3s;
}

.gallery-item:hover::after { background: rgba(244, 51, 103, 0.1); }

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  z-index: 2;
}

.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-section::before { width: 600px; height: 600px; top: -200px; right: -100px; }
.cta-section::after { width: 400px; height: 400px; bottom: -150px; left: -50px; }

.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-style: italic;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-sub { font-size: 16px; color: rgba(255, 255, 255, 0.7); margin-bottom: 48px; position: relative; z-index: 2; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--on-surface);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.cta-btn:hover::before { transform: translateX(0); }
.cta-btn:hover { color: white; }
.cta-btn span { position: relative; z-index: 1; }

/* ===== FOOTER ===== */
footer {
  background: white;
  padding: 64px 40px 40px;
  border-top: 1px solid var(--outline);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 48px;
}

.footer-brand .logo { font-size: 28px; }
.footer-copy { font-size: 13px; color: rgba(64, 64, 64, 0.4); margin-top: 8px; }

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--outline);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover { background: var(--primary); border-color: var(--primary); }
.social-link:hover i { color: white; }
.social-link i { font-size: 18px; color: var(--secondary); transition: color 0.3s; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li { margin-bottom: 0; }

.footer-links a {
  font-size: 14px;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}

.footer-links a:hover { color: var(--primary); }
.footer-links a:hover::after { width: 100%; }

/* ===== FLOATING APP BADGE ===== */
.app-badge {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.app-badge-btn {
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 30px rgba(244, 51, 103, 0.4);
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.app-badge-btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(244, 51, 103, 0.5); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(244, 51, 103, 0.4); }
  50% { box-shadow: 0 8px 50px rgba(244, 51, 103, 0.7); }
}

/* ===== LOADING / INTRO SCREEN ===== */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--on-surface);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.8s ease 0.5s, visibility 0.8s ease 0.5s;
}

#intro-overlay.hide { opacity: 0; visibility: hidden; }

.intro-logo {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  font-style: italic;
  animation: introScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.intro-logo .intro-accent { color: var(--primary); }

@keyframes introScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.intro-line {
  width: 0;
  height: 1px;
  background: var(--primary);
  margin-top: 16px;
  animation: introLine 0.8s ease forwards 0.5s;
}

@keyframes introLine { to { width: 80px; } }

.intro-year {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 1s;
}

@keyframes fadeIn { to { opacity: 1; } }
/* ===== APP DOWNLOAD ===== */
.app-download-section { 
  background: var(--surface-low); 
  position: relative;
  overflow: hidden;
}

.app-download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-download-sub {
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 40px;
  max-width: 440px;
}

.app-badges {
  flex-direction: column;
  gap: 12px;
}

.app-store-badge {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.app-store-badge img {
  height: 48px;
  width: auto;
  display: block;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,51,103,0.3);
}

/* Phone mockup */
.app-download-right { display: flex; justify-content: center; }

.phone-mockup-wrapper {
  position: relative;
  width: 260px;
  height: 420px;
}

.phone-mockup {
  position: absolute;
  width: 200px;
  height: 380px;
  border-radius: 32px;
  border: 2px solid rgba(244,51,103,0.25);
  overflow: hidden;
  background: var(--on-surface);
}

.phone-mockup-back {
  top: 40px;
  right: 0;
  opacity: 0.5;
  transform: rotate(6deg);
}

.phone-mockup-front {
  top: 0;
  left: 0;
  z-index: 2;
  border-color: var(--primary);
  box-shadow: 0 24px 64px rgba(244,51,103,0.2);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .app-download-inner { grid-template-columns: 1fr; gap: 48px; }
  .app-download-right { display: none; }
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 769px) and (max-width: 1440px) {
  .hero {
    min-height: none;
  }
  .hero-eyebrow {
    font-size: 9px;
  }
  .hero-headline {
    font-size: 45px;
  }
  .hero-sub {
    font-size: 15px;
    margin: 0;
    max-width: 221px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .hero {
    min-height: none;
  }
  .hero-eyebrow {
    font-size: 12px;
  }
  .hero-headline {
    font-size: 58px;
  }
  .hero-sub {
    font-size: 15px;
    margin: 0;
    max-width: 296px;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  header { padding: 0 20px; }
  nav { display: none; }
  .hero { justify-content: center; }
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 0 24px;
  }
  .hero-text { text-align: center; }
  .hero-download { justify-content: center; }
  .hero-headline { font-size: 44px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 32px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links { align-items: center; }
  .testimonial-slide { padding: 0 20px; }
  .process-steps::before { display: none; }
  .cursor, .cursor-ring { display: none; }
  .app-badge { bottom: 80px; right: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .feature-item {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .feature-image {
    order: -1;
  }
  .feature-text {
    max-width: 400px;
    text-align: center;
  }
  .feature-image {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-row: span 1; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== APP DOWNLOAD ANIMATIONS ===== */
.app-download-left.reveal {
  transform: translateX(-50px);
}
.app-download-left.reveal.active {
  transform: translateX(0);
}
.app-download-right.reveal {
  transform: translateX(50px);
}
.app-download-right.reveal.active {
  transform: translateX(0);
}

/* Floating stat pills on phone mockup */
.phone-stat {
  position: absolute;
  background: white;
  border: 1px solid rgba(244,51,103,0.15);
  border-radius: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 10;
  font-family: 'Manrope', sans-serif;
  animation: floatPill 4s ease-in-out infinite;
  white-space: nowrap;
}

.phone-stat-1 {
  top: -16px;
  right: -20px;
  animation-delay: 0s;
}

.phone-stat-2 {
  bottom: 30px;
  left: -30px;
  animation-delay: 2s;
}

.phone-stat .stat-icon {
  font-size: 18px;
  color: var(--primary);
}

.phone-stat .stat-text {
  font-size: 12px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}

.phone-stat .stat-sub {
  font-size: 10px;
  color: #888;
}

@keyframes floatPill {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Decorative ring behind phone */
.phone-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,51,103,0.12);
  pointer-events: none;
}

.phone-ring-1 {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite;
}

.phone-ring-2 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(244,51,103,0.06);
  animation: ringPulse 6s ease-in-out infinite 1.5s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

/* Trust signals row */
.app-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--outline);
  flex-wrap: wrap;
}

.app-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--secondary);
}

.app-trust-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary);
}

/* ===== POLICY PAGES ===== */
.policy-page {
  background: #ffffff;
  min-height: 100vh;
  padding: 120px 20px 80px;
}

.policy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.policy-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.policy-subtitle {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.policy-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 24px 0 12px;
}

.policy-section p, .policy-section ul {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section ul {
  padding-left: 24px;
}

.policy-section li {
  margin-bottom: 8px;
}

.policy-section a {
  color: #f43367;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.policy-table th, .policy-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  text-align: left;
}

.policy-table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #1a1a1a;
  width: 30%;
}

.policy-table td {
  color: #555555;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.back-link:hover {
  color: #f43367;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}