/* ═══════════════════════════════════════════════
   landing.css — Landing Page
   Pink & Cream Elegant Theme
   ═══════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────── */
:root {
    --cream:            #FFF8F0;
    --cream-soft:       #FFF1E6;
    --cream-mid:        #F0E2D6;
    --cream-dark:       #E4D2C3;
    --white:            #FFFFFF;

    --pink:             #D14D72;
    --pink-dark:        #B73E60;
    --pink-soft:        #F4A7BB;
    --pink-pale:        #FDE8EE;
    --pink-glow:        rgba(209,77,114,.18);

    --rose-gold:        #C9956B;
    --rose-gold-light:  #E2C8A8;

    --text-primary:     #2D1F2B;
    --text-secondary:   #7A6870;
    --text-muted-light: #B0A0A8;
}

/* ── Base ────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--cream);
}

/* ═══  NAVBAR  ═══════════════════════════════ */
.nav-landing {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1050;
    padding: 16px 0;
    transition: all .35s ease;
}
.nav-landing.scrolled {
    background: rgba(255,248,240,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(180,140,120,.12);
    padding: 10px 0;
}
.nav-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.4rem;
    color: var(--text-primary); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
}
.nav-landing:not(.scrolled) .nav-brand { color: #fff; }
.nav-brand .brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: #fff;
}
.nav-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .88rem; font-weight: 500;
    transition: color .25s;
    margin-left: 28px;
}
.nav-landing.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: #fff; }
.nav-landing.scrolled .nav-links a:hover { color: var(--pink); }
.btn-nav {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff; border: none; border-radius: 12px;
    padding: 10px 24px; font-weight: 600; font-size: .85rem;
    text-decoration: none; margin-left: 20px;
    transition: all .3s ease; display: inline-block;
}
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--pink-glow);
    color: #fff;
}

/* ═══  HERO  ═════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: var(--cream);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink-pale);
    border: 1px solid rgba(209,77,114,.2);
    border-radius: 50px; padding: 8px 18px;
    font-size: .78rem; font-weight: 600;
    color: var(--pink);
    margin-bottom: 24px; letter-spacing: .5px;
}
.hero-badge i { font-size: .65rem; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15; margin-bottom: 20px;
    color: var(--text-primary);
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--pink), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero Buttons ──────────────────────────── */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff; border: none; border-radius: 14px;
    padding: 16px 36px; font-weight: 600; font-size: .95rem;
    text-decoration: none; transition: all .3s ease;
    box-shadow: 0 8px 30px var(--pink-glow);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(209,77,114,.3);
    color: #fff;
}
.btn-hero-secondary {
    background: rgba(209,77,114,.08);
    border: 1px solid rgba(209,77,114,.2);
    color: var(--pink); border-radius: 14px;
    padding: 16px 36px; font-weight: 600; font-size: .95rem;
    text-decoration: none; transition: all .3s ease;
}
.btn-hero-secondary:hover {
    background: rgba(209,77,114,.15);
    color: var(--pink-dark);
}

/* ── Hero Visual / Cover Image Slider ──────── */
.hero-visual {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}

/* Fullscreen cover image slider behind hero */
.hero-cover-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-cover-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg,
        rgba(255,248,240,.88) 0%,
        rgba(255,241,230,.84) 40%,
        rgba(253,232,238,.80) 100%);
    z-index: 1;
}

/* ── Hero Mockup Card ──────────────────────── */
.hero-mockup {
    width: 100%; max-width: 360px;
    background: var(--white);
    border: 1px solid var(--cream-mid);
    border-radius: 28px; padding: 24px;
    box-shadow: 0 30px 80px rgba(180,140,120,.18);
}
.mockup-header { text-align: center; margin-bottom: 20px; }
.mockup-header .m-icon {
    width: 48px; height: 48px; margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--pink), var(--rose-gold));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff;
}
.mockup-header h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; margin: 0; color: var(--text-primary);
}
.mockup-header small { font-size: .72rem; color: var(--text-muted-light); }
.mockup-card {
    background: var(--cream-soft);
    border: 1px solid var(--cream-mid);
    border-radius: 14px; padding: 14px 16px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 12px;
}
.mc-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; flex-shrink: 0;
}
.mc-icon.rose  { background: var(--pink-pale); color: var(--pink); }
.mc-icon.gold  { background: rgba(201,149,107,.12); color: var(--rose-gold); }
.mc-icon.green { background: rgba(46,175,125,.1); color: #2EAF7D; }
.mc-text .mc-label { font-size: .72rem; color: var(--text-muted-light); }
.mc-text .mc-val { font-weight: 700; font-size: .95rem; color: var(--text-primary); }
.mockup-progress { margin-top: 14px; }
.mockup-progress small { font-size: .72rem; color: var(--text-muted-light); }
.mp-bar {
    height: 8px; background: var(--cream-mid);
    border-radius: 6px; margin-top: 6px; overflow: hidden;
}
.mp-bar-fill {
    height: 100%; width: 65%;
    background: linear-gradient(90deg, var(--pink), var(--rose-gold));
    border-radius: 6px;
}

/* ═══  STATS BAND  ═══════════════════════════ */
.stats-band {
    background: linear-gradient(135deg, var(--pink-pale), var(--cream-soft));
    padding: 50px 0;
    border-top: 1px solid rgba(209,77,114,.08);
}
.stat-item { text-align: center; padding: 16px 0; }
.stat-item .s-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 2.2rem;
    background: linear-gradient(135deg, var(--pink), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item .s-label {
    font-size: .82rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ═══  FEATURES  ═════════════════════════════ */
.features {
    background: var(--white); color: var(--text-primary);
    padding: 80px 0;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    text-align: center; margin-bottom: 8px;
    color: var(--text-primary);
}
.section-subtitle {
    text-align: center; color: var(--text-secondary);
    font-size: .95rem; margin-bottom: 50px;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
}
.feature-card {
    background: var(--cream); border-radius: 20px;
    padding: 32px 26px; text-align: center;
    box-shadow: 0 8px 30px rgba(180,140,120,.08);
    border: 1px solid var(--cream-mid);
    transition: all .35s ease; height: 100%;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(180,140,120,.14);
}
.feature-icon {
    width: 64px; height: 64px; border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 18px;
}
.fi-crimson { background: var(--pink-pale); color: var(--pink); }
.fi-gold    { background: rgba(201,149,107,.12); color: var(--rose-gold); }
.fi-blue    { background: rgba(75,163,212,.1);   color: #4BA3D4; }
.fi-green   { background: rgba(46,175,125,.1);   color: #2EAF7D; }
.fi-purple  { background: rgba(155,125,212,.1);  color: #9B7DD4; }
.fi-orange  { background: rgba(230,160,64,.1);   color: #E6A040; }
.feature-card h5 {
    font-weight: 700; font-size: 1.05rem;
    margin-bottom: 8px; color: var(--text-primary);
}
.feature-card p {
    font-size: .85rem; color: var(--text-secondary);
    line-height: 1.6; margin: 0;
}

/* ═══  HOW IT WORKS  ═════════════════════════ */
.how-it-works {
    background: var(--cream-soft);
    padding: 80px 0;
}
.how-it-works .section-title { color: var(--text-primary); }
.step-card {
    text-align: center; padding: 20px;
    position: relative;
}
.step-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.4rem;
    margin-bottom: 16px; color: #fff;
    box-shadow: 0 8px 24px var(--pink-glow);
}
.step-card h5 {
    font-weight: 700; font-size: 1rem; margin-bottom: 8px;
    color: var(--text-primary);
}
.step-card p {
    font-size: .83rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══  CTA  ══════════════════════════════════ */
.cta-section {
    background: var(--white); color: var(--text-primary);
    padding: 80px 0; text-align: center;
}
.cta-box {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 28px; padding: 50px 32px;
    color: #fff; max-width: 680px; margin: 0 auto;
    box-shadow: 0 20px 60px var(--pink-glow);
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent);
    top: -60px; right: -60px; border-radius: 50%;
}
.cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.8rem;
    margin-bottom: 12px;
    position: relative; z-index: 2; color: #fff;
}
.cta-box p {
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    position: relative; z-index: 2;
}
.cta-box .btn-hero-primary {
    background: #fff;
    color: var(--pink-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.cta-box .btn-hero-primary:hover {
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
    color: var(--pink-dark);
}

/* ═══  FOOTER  ═══════════════════════════════ */
.footer {
    background: var(--cream-soft);
    border-top: 1px solid var(--cream-mid);
    padding: 30px 0; text-align: center;
}
.footer p {
    font-size: .8rem;
    color: var(--text-muted-light); margin: 0;
}
.footer .f-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700; color: var(--text-primary);
    font-size: 1.1rem; margin-bottom: 8px;
}
.footer .f-brand i,
.footer p i { color: var(--pink); }

/* ═══  MOBILE RESPONSIVE  ════════════════════ */
@media (max-width: 767px) {
    .nav-links { display: none !important; }
    .hero { padding-top: 100px; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 40px; }
}

/* ═══  ANIMATIONS  ═══════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
