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

:root {
    --purple: #A78BFA;
    --purple-dark: #7C6BC4;
    --purple-light: #E9D5FF;
    --pink: #F9A8D4;
    --pink-dark: #EC4899;
    --pink-light: #FCE7F3;
    --blue: #67E8F9;
    --blue-light: #E0F7FF;
    --mint: #6EE7B7;
    --peach: #FDBA74;
    --yellow: #FCD34D;
    --dark: #2D2544;
    --dark-light: #4A4062;
    --gray-100: #FAF8FF;
    --gray-200: #F0EAFF;
    --gray-300: #DDD5F0;
    --gray-500: #8B7FA8;
    --gray-700: #4A4062;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #A78BFA 0%, #F9A8D4 100%);
    --gradient-warm: linear-gradient(135deg, #F9A8D4 0%, #FDBA74 100%);
    --gradient-cool: linear-gradient(135deg, #A78BFA 0%, #67E8F9 100%);
    --gradient-bg: linear-gradient(180deg, #FAF0FF 0%, #FFF0F7 50%, #F0F0FF 100%);
    --shadow-sm: 0 2px 8px rgba(167, 139, 250, 0.1);
    --shadow-md: 0 8px 30px rgba(167, 139, 250, 0.12);
    --shadow-lg: 0 16px 50px rgba(167, 139, 250, 0.15);
    --shadow-xl: 0 24px 70px rgba(167, 139, 250, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    line-height: 1.25;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Background Decorations ===== */
.bg-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.deco {
    position: absolute;
    opacity: 0.07;
    animation: deco-float 20s ease-in-out infinite;
}

.deco-star::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: var(--purple);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.deco-heart::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: var(--pink);
    clip-path: polygon(50% 85%, 15% 45%, 0% 25%, 5% 5%, 25% 0%, 45% 10%, 50% 25%, 55% 10%, 75% 0%, 95% 5%, 100% 25%, 85% 45%);
}

.deco-circle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: var(--blue);
    border-radius: 50%;
}

.d1 { top: 10%; left: 5%; animation-delay: 0s; }
.d2 { top: 30%; right: 8%; animation-delay: 4s; }
.d3 { top: 55%; left: 3%; animation-delay: 8s; }
.d4 { top: 70%; right: 5%; animation-delay: 12s; }
.d5 { top: 85%; left: 10%; animation-delay: 6s; }
.d6 { top: 15%; right: 15%; animation-delay: 10s; }

@keyframes deco-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    75% { transform: translateY(15px) rotate(-3deg); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(167, 139, 250, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-nav {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.4);
}

.apple-icon { width: 18px; height: 22px; }

/* ===== Gradient Text ===== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
    color: var(--purple-dark);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(167, 139, 250, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon { display: flex; }

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

.nav-links a {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.2s;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 4px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mobile-menu.active { display: block; }

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-clouds .cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    animation: cloud-drift linear infinite;
}

.cloud-1 {
    width: 200px;
    height: 40px;
    top: 12%;
    left: -200px;
    animation-duration: 35s;
}

.cloud-2 {
    width: 150px;
    height: 30px;
    top: 25%;
    left: -150px;
    animation-duration: 45s;
    animation-delay: 10s;
}

.cloud-3 {
    width: 180px;
    height: 35px;
    top: 8%;
    left: -180px;
    animation-duration: 40s;
    animation-delay: 20s;
}

@keyframes cloud-drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 400px)); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.badge-icon { color: #FCD34D; font-size: 1rem; }

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }
.a1 { background: linear-gradient(135deg, #A78BFA, #C4B5FD); }
.a2 { background: linear-gradient(135deg, #F9A8D4, #FBCFE8); }
.a3 { background: linear-gradient(135deg, #67E8F9, #A5F3FC); }
.a4 { background: linear-gradient(135deg, #FCD34D, #FDE68A); }

.hero-trust span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* Hero Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(44, 37, 68, 0.25), inset 0 0 0 2px rgba(255,255,255,0.08);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: var(--dark);
    border-radius: 14px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FAF0FF, #FFF5F9);
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.baby-card {
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.1);
    position: relative;
    border: 2px solid var(--purple-light);
}

.baby-card-header .tiny-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.tiny-stars span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
}

.tiny-stars span:nth-child(1) { background: var(--purple); }
.tiny-stars span:nth-child(2) { background: var(--pink); }
.tiny-stars span:nth-child(3) { background: var(--blue); }

.baby-photo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FAF0FF, #FFF0F7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid var(--purple-light);
}

.baby-card-info h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.milestone-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.baby-card-info p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.card-decorations .card-deco {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.cd1 { background: var(--purple); top: 10px; left: 15px; animation-delay: 0s; }
.cd2 { background: var(--pink); top: 15px; right: 20px; animation-delay: 0.8s; }
.cd3 { background: var(--yellow); bottom: 20px; left: 20px; animation-delay: 1.6s; }
.cd4 { background: var(--blue); bottom: 15px; right: 15px; animation-delay: 2.4s; }

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Floating Elements */
.float-element {
    position: absolute;
    z-index: 3;
    animation: float-bob 5s ease-in-out infinite;
}

.fe-1 { top: 20px; right: -20px; animation-delay: 0s; }
.fe-2 { bottom: 80px; left: -30px; animation-delay: 1.5s; }
.fe-3 { top: 50%; right: -40px; animation-delay: 3s; }

.float-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.float-emoji { font-size: 1.5rem; }

.float-card strong {
    display: block;
    font-size: 0.8rem;
    color: var(--dark);
}

.float-card small {
    font-size: 0.7rem;
    color: var(--gray-500);
}

@keyframes float-bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===== Stats Bar ===== */
.stats-bar {
    padding: 40px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: transform 0.3s;
}

.stat-item:hover { transform: translateY(-3px); }

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.stat-item strong {
    display: block;
    font-size: 1.4rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.stat-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* ===== Features ===== */
.features {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(24px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-wrap.purple { background: var(--gradient); }
.feature-icon-wrap.pink { background: linear-gradient(135deg, #F9A8D4, #EC4899); }
.feature-icon-wrap.blue { background: linear-gradient(135deg, #67E8F9, #06B6D4); }
.feature-icon-wrap.mint { background: linear-gradient(135deg, #6EE7B7, #10B981); }
.feature-icon-wrap.peach { background: linear-gradient(135deg, #FDBA74, #F97316); }
.feature-icon-wrap.yellow { background: linear-gradient(135deg, #FCD34D, #F59E0B); }

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.925rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ===== Showcase ===== */
.showcase {
    padding: 120px 0;
    background: var(--gray-100);
}

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

.showcase-card {
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
}

.showcase-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-preview {
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.showcase-preview:hover { transform: translateY(-8px) scale(1.02); }

.showcase-label {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

/* Newborn Card */
.newborn-card {
    background: linear-gradient(180deg, #FAF0FF, #FFF8FC);
    border: 2px solid var(--purple-light);
}

.sc-border {
    position: absolute;
    inset: 8px;
    border: 1px dashed var(--purple-light);
    border-radius: 18px;
    pointer-events: none;
}

.sc-photo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.sc-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple);
    font-weight: 700;
}

.newborn-card h3 {
    font-size: 1.6rem;
    color: var(--purple-dark);
    margin: 4px 0 12px;
}

.sc-details {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 8px;
}

.sc-details span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    padding: 3px 10px;
    background: rgba(167, 139, 250, 0.08);
    border-radius: 50px;
}

.sc-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.sc-tiny-feet {
    margin-top: 12px;
    width: 30px;
    height: 20px;
    position: relative;
}

.sc-tiny-feet::before, .sc-tiny-feet::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 14px;
    border-radius: 50% 50% 40% 40%;
    background: var(--purple-light);
}

.sc-tiny-feet::before { left: 2px; transform: rotate(-10deg); }
.sc-tiny-feet::after { right: 2px; transform: rotate(10deg); }

/* Monthly Card */
.monthly-card {
    background: linear-gradient(180deg, #FFF0F7, #FFF8FC);
    border: 2px solid var(--pink-light);
}

.month-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(249, 168, 212, 0.05);
}

.month-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.monthly-card h3 {
    font-size: 1.2rem;
    color: var(--pink-dark);
    margin-bottom: 4px;
}

.sc-name {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    font-weight: 600;
}

.month-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 160px;
    margin: 0 auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(249, 168, 212, 0.15);
    border: 2px solid var(--pink-light);
}

.dot.filled {
    background: var(--gradient-warm);
    border-color: transparent;
}

/* Collage Card */
.collage-card {
    background: linear-gradient(180deg, #F0F9FF, #FAF0FF);
    border: 2px solid var(--blue-light);
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 120px;
    margin: 0 auto 16px;
}

.cg-item {
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cg1 { background: rgba(167, 139, 250, 0.12); }
.cg2 { background: rgba(249, 168, 212, 0.12); }
.cg3 { background: rgba(103, 232, 249, 0.12); }
.cg4 { background: rgba(252, 211, 77, 0.12); }

.collage-card .sc-subtitle {
    color: var(--blue);
    margin-bottom: 4px;
}

.collage-card h3 {
    font-size: 1.3rem;
    color: var(--purple-dark);
}

/* Invitation Card */
.invitation-card {
    background: linear-gradient(180deg, #FEF9E7, #FFF5F0);
    border: 2px solid #FDE68A;
}

.inv-bunting {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 16px;
}

.flag {
    width: 16px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.f1 { background: var(--purple); }
.f2 { background: var(--pink); }
.f3 { background: var(--yellow); }
.f4 { background: var(--blue); }
.f5 { background: var(--mint); }

.invitation-card .sc-subtitle {
    color: #D97706;
    font-weight: 700;
}

.invitation-card h3 {
    font-size: 1.5rem;
    color: #92400E;
    margin: 4px 0 12px;
}

.inv-cake {
    position: relative;
    width: 40px;
    height: 50px;
    margin: 0 auto 12px;
}

.cake-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 22px;
    background: linear-gradient(135deg, #FDBA74, #F97316);
    border-radius: 4px 4px 8px 8px;
}

.cake-top {
    position: absolute;
    bottom: 20px;
    left: 4px;
    width: 32px;
    height: 18px;
    background: linear-gradient(135deg, #FDE68A, #FCD34D);
    border-radius: 4px 4px 6px 6px;
}

.candle {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 14px;
    background: var(--pink);
    border-radius: 2px;
}

.flame {
    position: absolute;
    bottom: 49px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 8px;
    background: #FCD34D;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2) rotate(5deg); }
}

.invitation-card .sc-date {
    font-weight: 700;
    color: #92400E;
    font-size: 0.8rem;
}

.sc-venue {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    transition: transform 0.4s;
    opacity: 0;
    transform: translateY(24px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover { transform: translateY(-6px); }

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-illustration {
    margin-bottom: 20px;
}

.step-phone {
    width: 120px;
    height: 200px;
    background: var(--dark);
    border-radius: 20px;
    padding: 8px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.step-screen {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.step-screen.pick {
    background: linear-gradient(180deg, #FAF0FF, #FFF0F7);
    padding: 12px 8px;
}

.template-row {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.mini-tpl {
    flex: 1;
    aspect-ratio: 0.75;
    border-radius: 6px;
}

.t1 { background: linear-gradient(135deg, var(--purple-light), var(--pink-light)); }
.t2 { background: linear-gradient(135deg, var(--pink-light), #FEF3C7); }
.t3 { background: linear-gradient(135deg, var(--blue-light), var(--purple-light)); }
.t4 { background: linear-gradient(135deg, #FEF3C7, var(--pink-light)); }
.t5 { background: linear-gradient(135deg, var(--purple-light), var(--blue-light)); }
.t6 { background: linear-gradient(135deg, var(--pink-light), var(--purple-light)); }

.step-screen.edit {
    background: linear-gradient(180deg, #FAF0FF, #FFF5F9);
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.edit-photo-area {
    flex: 1;
    background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
    border-radius: 8px;
    margin-bottom: 8px;
}

.edit-toolbar {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.tool-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.td1 { background: var(--purple); }
.td2 { background: var(--pink); }
.td3 { background: var(--blue); }
.td4 { background: var(--yellow); }

.step-screen.share {
    background: linear-gradient(180deg, #FAF0FF, #FFF5F9);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-preview {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
    border-radius: 10px;
}

.share-icons {
    display: flex;
    gap: 8px;
}

.share-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.sd1 { background: #25D366; }
.sd2 { background: linear-gradient(135deg, #833AB4, #E1306C); }
.sd3 { background: #1877F2; }

.share-btn-mock {
    padding: 4px 20px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== Reviews ===== */
.reviews {
    padding: 120px 0;
    background: var(--gray-100);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(24px);
    border: 2px solid transparent;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.review-stars { margin-bottom: 16px; }
.review-stars span { color: #FCD34D; font-size: 1.1rem; }

.review-card > p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer strong { display: block; font-size: 0.9rem; }
.reviewer span { font-size: 0.8rem; color: var(--gray-500); }

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: var(--white);
}

.cta-card {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-confetti .conf {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: cta-sparkle 4s ease-in-out infinite;
}

.c1 { width: 20px; height: 20px; background: white; top: 15%; left: 10%; animation-delay: 0s; }
.c2 { width: 14px; height: 14px; background: #FCD34D; top: 25%; right: 15%; animation-delay: 0.5s; }
.c3 { width: 18px; height: 18px; background: white; bottom: 20%; left: 15%; animation-delay: 1s; }
.c4 { width: 12px; height: 12px; background: #67E8F9; top: 10%; right: 30%; animation-delay: 1.5s; }
.c5 { width: 16px; height: 16px; background: white; bottom: 15%; right: 10%; animation-delay: 2s; }
.c6 { width: 10px; height: 10px; background: #FCD34D; top: 40%; left: 5%; animation-delay: 2.5s; }
.c7 { width: 22px; height: 22px; background: white; bottom: 30%; right: 25%; animation-delay: 3s; border-radius: 4px; transform: rotate(45deg); }
.c8 { width: 15px; height: 15px; background: #67E8F9; top: 20%; left: 25%; animation-delay: 3.5s; }

@keyframes cta-sparkle {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.15; }
    50% { transform: scale(1.3) translateY(-10px); opacity: 0.3; }
}

.cta-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-card .btn { position: relative; z-index: 1; }

.cta-rating {
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.cta-stars span { color: #FCD34D; font-size: 1.1rem; }

.cta-rating > span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand .logo span { color: var(--white); }

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .section-header h2 { font-size: 2.2rem; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { padding: 120px 0 100px; min-height: auto; }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero h1 { font-size: 2.3rem; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }

    .hero-visual { height: 500px; }
    .fe-1 { right: 0; top: 10px; }
    .fe-2 { left: -10px; bottom: 60px; }
    .fe-3 { display: none; }

    .section-header h2 { font-size: 1.9rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .features-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .showcase-preview { min-height: 270px; padding: 24px 16px; }
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .reviews-grid { grid-template-columns: 1fr; }

    .cta-card { padding: 60px 24px; }
    .cta-card h2 { font-size: 1.9rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .showcase-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .phone-frame { width: 240px; height: 480px; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
