/* ============================================
   SOFT PINK GLASS — app675y3
   Palette: cream / blush / lavender / hot pink
============================================ */
:root {
    --bg-cream: #fff5f8;
    --bg-soft: #ffe6ef;
    --bg-card: rgba(255, 255, 255, 0.7);
    --text-main: #2a1830;
    --text-muted: #856b7e;
    --pink-soft: #ffb3d1;
    --pink-hot: #ff5eaa;
    --pink-deep: #d63384;
    --lavender: #c8a8ff;
    --peach: #ffc8a2;
    --border-glass: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 20px 50px rgba(255, 94, 170, 0.18);

    --font-display: 'Fraunces', serif;
    --font-body: 'Quicksand', sans-serif;
}

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

html, body {
    background:
        radial-gradient(circle at 20% 10%, #ffe1ec 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, #f0e3ff 0%, transparent 45%),
        var(--bg-cream);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* === Background bubbles === */
.bg-bubble {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.bubble-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: var(--pink-soft); }
.bubble-2 { top: 30%; right: -150px; width: 500px; height: 500px; background: var(--lavender); opacity: 0.45; }
.bubble-3 { bottom: 10%; left: -120px; width: 450px; height: 450px; background: var(--peach); opacity: 0.4; }
.bubble-4 { bottom: -150px; right: 20%; width: 350px; height: 350px; background: var(--pink-hot); opacity: 0.25; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 8px;
    border: none;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--pink-hot) 0%, var(--pink-deep) 100%);
    box-shadow: 0 12px 30px rgba(255, 94, 170, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(255, 94, 170, 0.55);
}

.btn-ghost {
    background: white;
    color: var(--text-main);
    border: 2px solid rgba(255, 94, 170, 0.25);
}

.btn-ghost:hover {
    border-color: var(--pink-hot);
    color: var(--pink-deep);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--pink-hot) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent { color: var(--pink-deep); }

/* === Navbar === */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(214, 51, 132, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

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

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(255, 94, 170, 0.4);
}

.nav-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-main);
}

.nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* === Hero === */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 60px;
    gap: 60px;
}

.hero-text { flex: 1; }

.badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: white;
    color: var(--pink-deep);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(255, 94, 170, 0.18);
    border: 1px solid rgba(255, 94, 170, 0.2);
    margin-bottom: 26px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    width: fit-content;
    box-shadow: 0 10px 24px rgba(255, 94, 170, 0.12);
}

.meta-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.avatar:first-child { margin-left: 0; }
.avatar.a1 { background: linear-gradient(135deg, #ffb3d1, #ff5eaa); }
.avatar.a2 { background: linear-gradient(135deg, #c8a8ff, #9579e0); }
.avatar.a3 { background: linear-gradient(135deg, #ffc8a2, #ff8e5e); }
.avatar.a4 { background: linear-gradient(135deg, #aef0d6, #5ed6a0); }

.meta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.meta-text strong { font-weight: 700; }
.meta-text span { font-size: 0.85rem; color: var(--text-muted); }

/* === Hero Image === */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-frame {
    position: relative;
    padding: 22px;
    background: linear-gradient(150deg, rgba(255,255,255,0.85), rgba(255,229,239,0.7));
    backdrop-filter: blur(20px);
    border: 2px solid white;
    border-radius: 44px;
    box-shadow:
        0 30px 80px rgba(255, 94, 170, 0.3),
        0 0 0 6px rgba(255, 255, 255, 0.4);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotate(0) translateY(-6px);
}

.hero-image {
    display: block;
    width: 100%;
    max-width: 440px;
    border-radius: 30px;
}

.sticker {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 24px rgba(255, 94, 170, 0.25);
    z-index: 5;
    animation: float 3.4s ease-in-out infinite;
}

.sticker-heart { top: -28px; left: -22px; color: var(--pink-hot); }
.sticker-star { top: 30%; right: -34px; color: var(--peach); animation-delay: -1s; }
.sticker-bolt { bottom: -24px; left: 24%; color: var(--lavender); animation-delay: -2s; }

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

/* === Sections === */
section { padding: 120px 0; }

.section-heading {
    text-align: center;
    margin-bottom: 70px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: white;
    color: var(--pink-deep);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 94, 170, 0.2);
    box-shadow: 0 4px 10px rgba(255, 94, 170, 0.1);
}

.section-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* === Features === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px 30px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(214, 51, 132, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
    border-radius: 28px;
}

.feature-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 24px 50px rgba(214, 51, 132, 0.18);
    border-color: var(--pink-soft);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(255, 94, 170, 0.2);
    position: relative;
    z-index: 1;
}

.icon-1 { background: linear-gradient(135deg, #ffe1ec, #ffb3d1); color: var(--pink-deep); }
.icon-2 { background: linear-gradient(135deg, #fff3e0, #ffc8a2); color: #d97742; }
.icon-3 { background: linear-gradient(135deg, #f5e6ff, #c8a8ff); color: #7d4fc4; }
.icon-4 { background: linear-gradient(135deg, #e0f7ff, #9adcff); color: #2b85b3; }
.icon-5 { background: linear-gradient(135deg, #ffeaea, #ff9aa2); color: #c54a52; }
.icon-6 { background: linear-gradient(135deg, #e9ffe5, #aef0d6); color: #2f9168; }

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* === Carousel === */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 30px 60px;
}

.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item {
    height: 480px;
    flex-shrink: 0;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.18);
    border: 4px solid white;
    transition: all 0.4s ease;
}

.carousel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(214, 51, 132, 0.28);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--pink-deep);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(255, 94, 170, 0.3);
    transition: all 0.25s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.08);
    background: var(--pink-hot);
    color: white;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* === CTA === */
.cta-section { padding: 60px 0 100px; }

.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--bg-card), rgba(255,229,239,0.8));
    backdrop-filter: blur(20px);
    border: 2px solid white;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(214, 51, 132, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 94, 170, 0.3), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-emoji {
    font-size: 3.4rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.cta-box h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1.15rem;
}

/* === Footer === */
.footer {
    border-top: 1px solid rgba(214, 51, 132, 0.1);
    padding: 40px 0;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
    font-weight: 600;
}

.footer-links a:hover { color: var(--pink-deep); }

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === Animations === */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* === Responsive === */
@media (max-width: 980px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        gap: 60px;
    }
    .hero-subtitle, .hero-actions, .hero-meta { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-title { font-size: 3.4rem; }
    .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 2.2rem; }
    .cta-box { padding: 60px 24px; }
    .cta-box h2 { font-size: 1.8rem; }
    .carousel-item { height: 380px; }
    .carousel-container { padding: 20px 50px; }
    .nav-btn { display: none; }
    .navbar { width: calc(100% - 16px); }
    .nav-content { padding: 10px 16px; }
}
