/* =========================================================
   DILLINK
   Global Styles
========================================================= */

:root {

    --pink: #f52f79;
    --pink-light: #ff6fa3;
    --pink-soft: #ffe8f0;
    --pink-pale: #fff4f7;

    --cream: #fff9f7;
    --white: #ffffff;

    --plum: #351022;
    --plum-light: #63364d;

    --border: rgba(53, 16, 34, 0.08);

    --shadow-soft:
        0 20px 60px rgba(245, 47, 121, 0.08);

    --shadow-card:
        0 15px 45px rgba(53, 16, 34, 0.08);

    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--plum);
    overflow-x: hidden;
}

button,
a {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 249, 247, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(53, 16, 34, 0.05);
}

.nav-container {
    max-width: var(--container);

    margin: auto;

    height: 76px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;
    font-weight: 800;
}

.logo-heart {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--pink-light),
            var(--pink)
        );

    border-radius: 11px;

    font-size: 16px;

    box-shadow:
        0 8px 20px rgba(245, 47, 121, 0.25);
}

.logo-text span {
    color: var(--pink);
}


/* Desktop nav */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;

    color: rgba(53, 16, 34, 0.68);

    transition: 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--pink);
}


/* Create button */

.nav-create-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--pink-light),
            var(--pink)
        );

    border-radius: 100px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(245, 47, 121, 0.18);

    transition: 0.25s ease;
}

.nav-create-btn:hover {
    transform: translateY(-2px);
}


/* Mobile menu button */

.mobile-menu-btn {
    display: none;

    background: transparent;

    color: var(--plum);

    font-size: 22px;
}


/* Mobile menu */

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    max-width: var(--container);

    margin: auto;

    padding:
        90px 24px
        100px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 60px;

    overflow: hidden;
}


/* Hero background glow */

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 40px;
    right: -150px;

    background:
        radial-gradient(
            circle,
            rgba(255, 111, 163, 0.22),
            transparent 70%
        );

    pointer-events: none;
}


/* Hero content */

.hero-content {
    position: relative;
    z-index: 2;
}


/* Eyebrow */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    background: var(--pink-soft);

    color: var(--pink);

    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 24px;
}

.eyebrow span {
    font-size: 14px;
}


/* Heading */

.hero h1 {
    max-width: 620px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(42px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}

.hero h1 span {
    display: block;

    color: var(--pink);
}


/* Description */

.hero-description {
    max-width: 560px;

    margin-top: 25px;

    font-size: 17px;

    line-height: 1.75;

    color:
        rgba(53, 16, 34, 0.64);
}


/* Hero buttons */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;
}


/* Primary button */

.primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 22px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--pink-light),
            var(--pink)
        );

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 15px 30px rgba(245, 47, 121, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(245, 47, 121, 0.28);
}


/* Secondary */

.secondary-btn {
    min-height: 54px;

    padding: 0 20px;

    background: white;

    color: var(--plum);

    border: 1px solid var(--border);

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.secondary-btn:hover {
    border-color: rgba(245, 47, 121, 0.25);

    color: var(--pink);

    transform: translateY(-2px);
}


/* Hero note */

.hero-note {
    margin-top: 18px;

    font-size: 12px;

    color:
        rgba(53, 16, 34, 0.46);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: grid;

    place-items: center;
}


/* Main preview */

.main-preview-card {
    position: relative;
    z-index: 5;

    width: min(360px, 80%);

    min-height: 430px;

    padding: 35px 28px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff2f6
        );

    border: 1px solid
        rgba(245, 47, 121, 0.08);

    border-radius: 38px;

    box-shadow:
        0 35px 80px rgba(53, 16, 34, 0.13);

    transform:
        rotate(2deg);

    animation:
        cardFloat 5s ease-in-out infinite;
}


@keyframes cardFloat {

    0%,
    100% {
        transform:
            rotate(2deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(1deg)
            translateY(-10px);
    }

}


/* Preview top */

.preview-top {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color:
        rgba(53, 16, 34, 0.42);
}


/* Dots */

.preview-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--pink-light);
}


/* Heart */

.preview-heart {
    width: 90px;
    height: 90px;

    display: grid;
    place-items: center;

    margin: 35px 0 20px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #ffb2ca,
            #f52f79
        );

    color: white;

    font-size: 40px;

    box-shadow:
        0 20px 35px
        rgba(245, 47, 121, 0.25);
}


.main-preview-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 27px;

    font-weight: 800;
}


.main-preview-card > p {
    max-width: 230px;

    margin-top: 10px;

    line-height: 1.6;

    color:
        rgba(53, 16, 34, 0.58);

    font-size: 14px;
}


/* Preview button */

.preview-open-btn {
    margin-top: 28px;

    padding: 13px 20px;

    border-radius: 100px;

    background: white;

    color: var(--pink);

    font-weight: 700;

    font-size: 12px;

    box-shadow:
        0 10px 30px
        rgba(53, 16, 34, 0.08);
}


/* Floating cards */

.floating-card {
    position: absolute;

    padding: 15px 18px;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(15px);

    border:
        1px solid
        rgba(53, 16, 34, 0.06);

    border-radius: 18px;

    box-shadow:
        0 18px 40px
        rgba(53, 16, 34, 0.09);

    font-size: 11px;

    z-index: 8;
}

.floating-card span {
    font-size: 21px;
}

.floating-card p {
    margin-top: 6px;

    font-weight: 600;

    color:
        rgba(53, 16, 34, 0.65);
}


.card-left {
    left: 0;
    top: 115px;

    transform: rotate(-7deg);

    animation:
        floatLeft 4s ease-in-out infinite;
}


.card-right {
    right: 0;
    bottom: 105px;

    transform: rotate(7deg);

    animation:
        floatRight 4.5s ease-in-out infinite;
}


.card-back {
    right: 40px;
    top: 35px;

    transform: rotate(7deg);

    opacity: 0.7;
}


@keyframes floatLeft {

    0%,
    100% {
        transform:
            rotate(-7deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-5deg)
            translateY(-8px);
    }

}


@keyframes floatRight {

    0%,
    100% {
        transform:
            rotate(7deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(5deg)
            translateY(-10px);
    }

}


/* Sparkles */

.preview-sparkle {
    position: absolute;

    color: var(--pink);

    font-size: 20px;

    animation:
        sparkle 2s ease-in-out infinite;
}

.sparkle-one {
    top: 100px;
    right: 60px;
}

.sparkle-two {
    bottom: 80px;
    left: 65px;

    animation-delay: 0.8s;
}


@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

}


/* Decorative hero elements */

.hero-decoration {
    position: absolute;

    color:
        rgba(245, 47, 121, 0.25);

    pointer-events: none;
}

.hero-heart-one {
    left: 2%;
    top: 18%;

    font-size: 30px;

    animation:
        floatDecoration 4s infinite ease-in-out;
}

.hero-heart-two {
    right: 2%;
    top: 30%;

    font-size: 22px;
}

.hero-star-one {
    left: 45%;
    top: 8%;

    font-size: 18px;
}

.hero-star-two {
    right: 40%;
    bottom: 12%;

    font-size: 16px;
}


@keyframes floatDecoration {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding:
        0 24px 90px;
}

.stats-container {
    max-width: 900px;

    margin: auto;

    padding: 28px 35px;

    display: flex;

    justify-content: space-around;
    align-items: center;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 25px;

    box-shadow:
        var(--shadow-soft);
}

.stat-item {
    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;
}

.stat-item strong {
    font-family: "Manrope", sans-serif;

    font-size: 27px;

    color: var(--pink);

    font-weight: 800;
}

.stat-item span {
    margin-top: 4px;

    font-size: 12px;

    color:
        rgba(53, 16, 34, 0.48);
}

.stat-divider {
    width: 1px;
    height: 45px;

    background:
        rgba(53, 16, 34, 0.08);
}


/* =========================================================
   GENERIC SECTION
========================================================= */

.section {
    max-width: var(--container);

    margin: auto;

    padding:
        100px 24px;
}


/* Heading */

.section-heading {
    max-width: 650px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-pill {
    display: inline-block;

    padding: 8px 13px;

    background: var(--pink-soft);

    color: var(--pink);

    border-radius: 100px;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 18px;
}

.section-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.8px;

    font-weight: 800;
}

.section-heading h2 span {
    color: var(--pink);
}

.section-heading p {
    margin-top: 16px;

    color:
        rgba(53, 16, 34, 0.58);

    line-height: 1.7;

    font-size: 15px;
}


/* =========================================================
   MOMENT CARDS
========================================================= */

.moment-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.moment-card {
    position: relative;

    min-height: 310px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        var(--shadow-card);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.moment-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px
        rgba(53, 16, 34, 0.11);
}


.moment-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: var(--pink-soft);

    font-size: 27px;
}

.moment-tag {
    margin-top: 25px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    color: var(--pink);

    font-weight: 700;
}

.moment-card h3 {
    margin-top: 7px;

    font-family: "Manrope", sans-serif;

    font-size: 24px;

    font-weight: 800;
}

.moment-card p {
    margin-top: 9px;

    font-size: 13px;

    line-height: 1.6;

    color:
        rgba(53, 16, 34, 0.55);
}

.moment-card button {
    width: fit-content;

    margin-top: auto;

    padding: 11px 16px;

    border-radius: 100px;

    background: var(--pink-pale);

    color: var(--pink);

    font-size: 12px;

    font-weight: 700;

    transition: 0.25s ease;
}

.moment-card button:hover {
    background: var(--pink);

    color: white;
}


/* Different soft backgrounds */

.birthday {
    background:
        linear-gradient(
            145deg,
            white,
            #fff2f6
        );
}

.anniversary {
    background:
        linear-gradient(
            145deg,
            white,
            #fff0f4
        );
}

.proposal {
    background:
        linear-gradient(
            145deg,
            white,
            #f9f0ff
        );
}

.apology {
    background:
        linear-gradient(
            145deg,
            white,
            #eef8ff
        );
}

.just-because {
    background:
        linear-gradient(
            145deg,
            white,
            #fff8e9
        );
}

.friendship {
    background:
        linear-gradient(
            145deg,
            white,
            #effaf5
        );
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
    margin-top: 40px;

    padding:
        100px 24px;

    background:
        linear-gradient(
            145deg,
            #fff0f5,
            #ffe1eb
        );
}

.experience-container {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 70px;
}

.experience-copy h2 {
    max-width: 500px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}

.experience-copy h2 span {
    color: var(--pink);
}

.experience-copy p {
    max-width: 500px;

    margin-top: 20px;

    line-height: 1.75;

    color:
        rgba(53, 16, 34, 0.58);
}

.small-btn {
    margin-top: 28px;
}


/* Demo */

.experience-demo {
    display: flex;

    justify-content: center;
}

.demo-phone {
    position: relative;

    width: 280px;
    height: 550px;

    padding: 10px;

    background: #24121c;

    border-radius: 42px;

    box-shadow:
        0 35px 70px
        rgba(53, 16, 34, 0.2);
}

.phone-notch {
    position: absolute;

    z-index: 3;

    top: 16px;
    left: 50%;

    width: 95px;
    height: 23px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: #24121c;
}

.demo-screen {
    height: 100%;

    padding: 90px 25px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background:
        linear-gradient(
            160deg,
            #fffaf8,
            #ffe8f0
        );

    border-radius: 34px;
}

.demo-small {
    font-size: 8px;

    letter-spacing: 1px;

    color:
        rgba(53, 16, 34, 0.42);
}

.demo-big-heart {
    width: 90px;
    height: 90px;

    margin-top: 55px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #ff9fbd,
            #f52f79
        );

    border-radius: 30px;

    color: white;

    font-size: 42px;

    box-shadow:
        0 20px 35px
        rgba(245, 47, 121, 0.25);
}

.demo-screen h3 {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;

    font-size: 25px;
}

.demo-screen p {
    margin-top: 10px;

    color:
        rgba(53, 16, 34, 0.55);

    font-size: 13px;

    line-height: 1.6;
}

.demo-screen button {
    margin-top: auto;

    padding: 14px 30px;

    border-radius: 100px;

    background: var(--pink);

    color: white;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   STEPS
========================================================= */

.steps {
    display: flex;

    align-items: stretch;

    justify-content: center;
}

.step {
    flex: 1;

    max-width: 240px;

    text-align: center;
}

.step-number {
    font-family: "Manrope", sans-serif;

    font-size: 12px;

    color: var(--pink);

    font-weight: 800;
}

.step-icon {
    width: 65px;
    height: 65px;

    margin: 14px auto;

    display: grid;
    place-items: center;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 10px 25px
        rgba(53, 16, 34, 0.06);

    font-size: 26px;
}

.step h3 {
    font-family: "Manrope", sans-serif;

    font-size: 16px;
}

.step p {
    margin-top: 9px;

    color:
        rgba(53, 16, 34, 0.5);

    font-size: 12px;

    line-height: 1.6;
}

.step-line {
    width: 50px;

    height: 1px;

    margin-top: 110px;

    background:
        rgba(245, 47, 121, 0.18);
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    padding-top: 60px;
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.testimonial-card {
    padding: 26px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 25px;

    box-shadow:
        var(--shadow-card);
}

.testimonial-top {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.quote-icon {
    color: var(--pink);

    font-family: Georgia, serif;

    font-size: 45px;

    line-height: 0.6;
}

.occasion-badge {
    padding: 7px 10px;

    background: var(--pink-soft);

    color: var(--pink);

    border-radius: 100px;

    font-size: 9px;

    font-weight: 700;
}

.testimonial-card > p {
    margin-top: 20px;

    font-size: 14px;

    line-height: 1.75;

    color:
        rgba(53, 16, 34, 0.7);
}

.testimonial-user {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 25px;
}

.avatar {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pink-soft);

    color: var(--pink);

    font-weight: 800;
}

.testimonial-user strong {
    display: block;

    font-size: 12px;
}

.testimonial-user span {
    display: block;

    margin-top: 2px;

    font-size: 10px;

    color:
        rgba(53, 16, 34, 0.45);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    max-width: 900px;
}

.faq-container {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.faq-item {
    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 10px 30px
        rgba(53, 16, 34, 0.04);
}

.faq-question {
    width: 100%;

    padding: 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    background: white;

    color: var(--plum);

    text-align: left;

    font-size: 14px;

    font-weight: 700;
}

.faq-icon {
    color: var(--pink);

    font-size: 22px;

    font-weight: 400;

    transition: transform 0.25s ease;
}

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}

.faq-answer p {
    overflow: hidden;

    padding:
        0 22px;

    color:
        rgba(53, 16, 34, 0.56);

    font-size: 13px;

    line-height: 1.7;

    transition:
        padding 0.35s ease;
}

.faq-item.active
.faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active
.faq-answer p {
    padding:
        0 22px 22px;
}

.faq-item.active
.faq-icon {
    transform: rotate(45deg);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    position: relative;

    overflow: hidden;

    padding:
        110px 24px;

    background:
        linear-gradient(
            145deg,
            #ff82ad,
            #f52f79
        );

    color: white;

    text-align: center;
}

.final-cta::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.18),
            transparent 65%
        );
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 650px;

    margin: auto;
}

.cta-pill {
    display: inline-block;

    padding: 9px 15px;

    background:
        rgba(255,255,255,0.16);

    border:
        1px solid
        rgba(255,255,255,0.2);

    border-radius: 100px;

    font-size: 11px;

    font-weight: 700;
}

.cta-content h2 {
    margin-top: 22px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(38px, 5vw, 62px);

    line-height: 1.02;

    letter-spacing: -2.5px;

    font-weight: 800;
}

.cta-content h2 span {
    display: block;
}

.cta-content > p {
    max-width: 510px;

    margin: 20px auto 0;

    line-height: 1.7;

    font-size: 15px;

    color:
        rgba(255,255,255,0.82);
}

.cta-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 16px 25px;

    border-radius: 100px;

    background: white;

    color: var(--pink);

    font-weight: 800;

    box-shadow:
        0 20px 40px
        rgba(80, 0, 30, 0.18);

    transition: 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
}

.cta-small {
    margin-top: 18px;

    font-size: 11px;

    color:
        rgba(255,255,255,0.7);
}


/* CTA decorations */

.cta-sparkle {
    position: absolute;

    color:
        rgba(255,255,255,0.45);

    font-size: 25px;

    animation:
        floatDecoration 4s ease-in-out infinite;
}

.sparkle-a {
    top: 20%;
    left: 10%;
}

.sparkle-b {
    right: 12%;
    top: 30%;

    animation-delay: 1s;
}

.sparkle-c {
    bottom: 20%;
    left: 18%;

    animation-delay: 2s;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #351022;

    color: white;

    padding:
        70px 24px 25px;
}

.footer-container {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;
}

.footer-logo {
    color: white;
}

.footer-brand > p {
    max-width: 300px;

    margin-top: 18px;

    font-size: 13px;

    line-height: 1.7;

    color:
        rgba(255,255,255,0.55);
}

.social-links {
    margin-top: 22px;
}

.social-links a {
    color:
        rgba(255,255,255,0.75);

    font-size: 12px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 6px;

    font-size: 13px;
}

.footer-column a {
    color:
        rgba(255,255,255,0.5);

    font-size: 12px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--container);

    margin:
        60px auto 0;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,0.38);

    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .desktop-nav,
    .nav-create-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        padding:
            20px 24px 25px;

        background:
            rgba(255,249,247,0.97);

        border-top:
            1px solid var(--border);

        flex-direction: column;

        gap: 16px;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        font-size: 14px;

        font-weight: 600;

        color:
            rgba(53,16,34,0.7);
    }

    .mobile-menu button {
        padding: 14px;

        border-radius: 100px;

        background: var(--pink);

        color: white;

        font-weight: 700;
    }


    /* Hero */

    .hero {
        min-height: auto;

        padding-top: 65px;

        grid-template-columns: 1fr;

        text-align: center;

        gap: 45px;
    }

    .hero-content {
        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons button {
        width: 100%;
    }

    .hero-visual {
        min-height: 470px;
    }

    .card-left {
        left: 0;
    }

    .card-right {
        right: 0;
    }


    /* Stats */

    .stats-section {
        padding-bottom: 50px;
    }

    .stats-container {
        padding: 22px 12px;
    }

    .stat-item strong {
        font-size: 21px;
    }

    .stat-item span {
        font-size: 9px;
    }


    /* Generic */

    .section {
        padding:
            75px 20px;
    }


    /* Moments */

    .moment-grid {
        grid-template-columns: 1fr;
    }

    .moment-card {
        min-height: 270px;
    }


    /* Experience */

    .experience-container {
        grid-template-columns: 1fr;

        gap: 50px;

        text-align: center;
    }

    .experience-copy {
        display: flex;

        flex-direction: column;

        align-items: center;
    }


    /* Steps */

    .steps {
        flex-direction: column;

        align-items: center;

        gap: 30px;
    }

    .step {
        max-width: 330px;
    }

    .step-line {
        width: 1px;

        height: 35px;

        margin: 0;
    }


    /* Testimonials */

    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    /* Footer */

    .footer-container {
        grid-template-columns:
            1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 450px) {

    .nav-container {
        height: 68px;

        padding:
            0 18px;
    }

    .hero {
        padding:
            50px 18px 70px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .main-preview-card {
        width: 270px;

        min-height: 370px;

        border-radius: 30px;
    }

    .floating-card {
        padding: 11px 13px;

        font-size: 9px;
    }

    .card-left {
        left: -5px;
    }

    .card-right {
        right: -5px;
    }

    .stats-container {
        gap: 8px;
    }

    .stat-divider {
        height: 35px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .experience-section {
        padding:
            75px 18px;
    }

    .demo-phone {
        width: 255px;
        height: 500px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible {
    outline:
        3px solid
        rgba(245, 47, 121, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   DILLINK — STEP 2A
   PREMIUM NAVBAR + HERO POLISH
========================================================= */


/* =========================================================
   PREMIUM NAVBAR
========================================================= */

.navbar {
    background:
        rgba(255, 249, 247, 0.78);

    backdrop-filter:
        blur(22px)
        saturate(160%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(160%);

    border-bottom:
        1px solid
        rgba(53, 16, 34, 0.045);

    box-shadow:
        0 4px 25px
        rgba(53, 16, 34, 0.025);
}


.nav-container {
    height: 72px;
}


/* =========================================================
   LOGO POLISH
========================================================= */

.logo {
    position: relative;

    gap: 9px;

    transition:
        transform 0.25s ease;
}

.logo:hover {
    transform:
        translateY(-1px);
}


.logo-heart {
    position: relative;

    width: 35px;
    height: 35px;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #ff9cbd 0%,
            #f52f79 100%
        );

    box-shadow:
        0 8px 20px
        rgba(245, 47, 121, 0.22);

    transition:
        transform 0.3s ease;
}


.logo:hover .logo-heart {
    transform:
        rotate(-7deg)
        scale(1.04);
}


.logo-text {
    letter-spacing:
        -0.7px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    gap: 30px;
}


.desktop-nav a {
    position: relative;

    padding:
        8px 2px;

    color:
        rgba(53, 16, 34, 0.58);

    transition:
        color 0.25s ease;
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 1px;

    height: 2px;

    background:
        var(--pink);

    border-radius:
        100px;

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform 0.25s ease;
}


.desktop-nav a:hover {
    color:
        var(--plum);
}


.desktop-nav a:hover::after {
    transform:
        scaleX(1);
}


/* =========================================================
   NAV CREATE BUTTON
========================================================= */

.nav-create-btn {
    position: relative;

    overflow: hidden;

    min-height:
        42px;

    padding:
        0 18px;

    box-shadow:
        0 8px 25px
        rgba(245, 47, 121, 0.17);
}


.nav-create-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.32),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.55s ease;
}


.nav-create-btn:hover::before {
    left: 140%;
}


/* =========================================================
   HERO — BACKGROUND
========================================================= */

.hero {
    min-height:
        730px;

    padding-top:
        82px;

    padding-bottom:
        92px;
}


/* Large ambient glow */

.hero::before {
    width:
        650px;

    height:
        650px;

    top:
        -100px;

    right:
        -230px;

    background:
        radial-gradient(
            circle,
            rgba(255, 111, 163, 0.17) 0%,
            rgba(255, 111, 163, 0.06) 35%,
            transparent 70%
        );

    filter:
        blur(5px);
}


/* Second glow */

.hero::after {
    content: "";

    position: absolute;

    width:
        420px;

    height:
        420px;

    left:
        -240px;

    bottom:
        -220px;

    background:
        radial-gradient(
            circle,
            rgba(245, 47, 121, 0.07),
            transparent 68%
        );

    pointer-events:
        none;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.eyebrow {
    position:
        relative;

    padding:
        9px 15px;

    background:
        rgba(255, 232, 240, 0.78);

    border:
        1px solid
        rgba(245, 47, 121, 0.08);

    box-shadow:
        0 8px 25px
        rgba(245, 47, 121, 0.06);

    animation:
        heroBadgeIn
        0.8s
        ease
        both;
}


@keyframes heroBadgeIn {

    from {
        opacity: 0;

        transform:
            translateY(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.hero h1 {
    max-width:
        670px;

    font-size:
        clamp(
            44px,
            5.4vw,
            72px
        );

    line-height:
        0.99;

    letter-spacing:
        -3.8px;

    animation:
        heroHeadingIn
        0.8s
        0.08s
        ease
        both;
}


.hero h1 span {
    margin-top:
        4px;

    background:
        linear-gradient(
            110deg,
            #ff78a8,
            #f52f79
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;
}


@keyframes heroHeadingIn {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width:
        540px;

    margin-top:
        26px;

    font-size:
        16px;

    line-height:
        1.8;

    color:
        rgba(53, 16, 34, 0.57);

    animation:
        heroContentIn
        0.8s
        0.18s
        ease
        both;
}


@keyframes heroContentIn {

    from {
        opacity: 0;

        transform:
            translateY(15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    margin-top:
        31px;

    animation:
        heroContentIn
        0.8s
        0.28s
        ease
        both;
}


.primary-btn {
    position:
        relative;

    overflow:
        hidden;

    min-height:
        56px;

    padding:
        0 23px;

    box-shadow:
        0 14px 32px
        rgba(245, 47, 121, 0.22);
}


.primary-btn::before {
    content: "";

    position:
        absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,0.28),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.55s ease;
}


.primary-btn:hover::before {
    left:
        150%;
}


.primary-btn span {
    position:
        relative;

    z-index:
        2;
}


.secondary-btn {
    background:
        rgba(255,255,255,0.72);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 8px 25px
        rgba(53,16,34,0.035);
}


/* =========================================================
   HERO NOTE
========================================================= */

.hero-note {
    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    animation:
        heroContentIn
        0.8s
        0.38s
        ease
        both;
}


.hero-note::before {
    content:
        "✓";

    display:
        grid;

    place-items:
        center;

    width:
        17px;

    height:
        17px;

    border-radius:
        50%;

    background:
        var(--pink-soft);

    color:
        var(--pink);

    font-size:
        9px;

    font-weight:
        800;
}


/* =========================================================
   HERO VISUAL POLISH
========================================================= */

.hero-visual {
    min-height:
        530px;
}


.main-preview-card {
    width:
        365px;

    min-height:
        455px;

    padding:
        38px 30px;

    border-radius:
        40px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.97),
            rgba(255,240,246,0.94)
        );

    border:
        1px solid
        rgba(245,47,121,0.09);

    box-shadow:
        0 45px 100px
        rgba(53,16,34,0.12),
        0 10px 30px
        rgba(245,47,121,0.05);

    transform:
        rotate(2deg);

    animation:
        cardFloatPremium
        5.5s
        ease-in-out
        infinite;
}


@keyframes cardFloatPremium {

    0%,
    100% {
        transform:
            rotate(2deg)
            translate3d(0,0,0);
    }

    50% {
        transform:
            rotate(1deg)
            translate3d(0,-11px,0);
    }

}


/* Glass shine */

.main-preview-card::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    border-radius:
        inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.55),
            transparent 35%
        );

    pointer-events:
        none;
}


/* Preview heart */

.preview-heart {
    position:
        relative;

    width:
        98px;

    height:
        98px;

    margin-top:
        38px;

    border-radius:
        31px;

    background:
        linear-gradient(
            145deg,
            #ffadc7,
            #f52f79
        );

    box-shadow:
        0 22px 40px
        rgba(245,47,121,0.25);

    animation:
        heartPulse
        3s
        ease-in-out
        infinite;
}


.preview-heart::after {
    content:
        "";

    position:
        absolute;

    inset:
        -10px;

    border:
        1px solid
        rgba(245,47,121,0.12);

    border-radius:
        36px;

    animation:
        heartRing
        3s
        ease-out
        infinite;
}


@keyframes heartPulse {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.045);
    }

}


@keyframes heartRing {

    0% {
        opacity:
            0.7;

        transform:
            scale(0.92);
    }

    70% {
        opacity:
            0;

        transform:
            scale(1.16);
    }

    100% {
        opacity:
            0;

        transform:
            scale(1.16);
    }

}


/* Preview title */

.main-preview-card h3 {
    position:
        relative;

    z-index:
        2;

    margin-top:
        4px;

    font-size:
        28px;

    letter-spacing:
        -0.8px;
}


.main-preview-card > p {
    position:
        relative;

    z-index:
        2;

    font-size:
        14px;

    line-height:
        1.7;
}


/* Preview button */

.preview-open-btn {
    position:
        relative;

    z-index:
        2;

    padding:
        14px 21px;

    border:
        1px solid
        rgba(245,47,121,0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.preview-open-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 28px
        rgba(53,16,34,0.09);
}


/* =========================================================
   FLOATING MEMORY CARDS
========================================================= */

.floating-card {
    padding:
        14px 16px;

    border-radius:
        19px;

    border:
        1px solid
        rgba(255,255,255,0.75);

    background:
        rgba(255,255,255,0.74);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 45px
        rgba(53,16,34,0.08);
}


.floating-card span {
    display:
        block;

    margin-bottom:
        5px;
}


.floating-card p {
    font-size:
        10px;

    letter-spacing:
        -0.1px;
}


.card-left {
    left:
        -5px;

    top:
        115px;

    animation:
        floatingLeftPremium
        4.5s
        ease-in-out
        infinite;
}


.card-right {
    right:
        -5px;

    bottom:
        100px;

    animation:
        floatingRightPremium
        5s
        ease-in-out
        infinite;
}


.card-back {
    right:
        30px;

    top:
        40px;

    opacity:
        0.62;

    filter:
        blur(0.2px);
}


@keyframes floatingLeftPremium {

    0%,
    100% {
        transform:
            rotate(-7deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-5deg)
            translateY(-10px);
    }

}


@keyframes floatingRightPremium {

    0%,
    100% {
        transform:
            rotate(7deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(5deg)
            translateY(-12px);
    }

}


/* =========================================================
   HERO DECORATIONS
========================================================= */

.hero-decoration {
    opacity:
        0.45;

    filter:
        blur(0.1px);
}


.hero-heart-one {
    animation:
        decorationFloatOne
        5s
        ease-in-out
        infinite;
}


.hero-heart-two {
    animation:
        decorationFloatTwo
        4s
        ease-in-out
        infinite;
}


.hero-star-one,
.hero-star-two {
    animation:
        decorationTwinkle
        3s
        ease-in-out
        infinite;
}


@keyframes decorationFloatOne {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-14px)
            rotate(8deg);
    }

}


@keyframes decorationFloatTwo {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(10px);
    }

}


@keyframes decorationTwinkle {

    0%,
    100% {
        opacity:
            0.25;

        transform:
            scale(0.85);
    }

    50% {
        opacity:
            0.8;

        transform:
            scale(1.15);
    }

}


/* =========================================================
   MOBILE MENU — PREMIUM
========================================================= */

@media (max-width: 850px) {

    .navbar {
        background:
            rgba(255,249,247,0.88);
    }


    .mobile-menu {
        position:
            absolute;

        left:
            0;

        right:
            0;

        top:
            100%;

        display:
            flex;

        opacity:
            0;

        visibility:
            hidden;

        transform:
            translateY(-8px);

        padding:
            18px 20px 22px;

        border-bottom:
            1px solid
            rgba(53,16,34,0.05);

        box-shadow:
            0 20px 35px
            rgba(53,16,34,0.07);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    .mobile-menu.active {
        opacity:
            1;

        visibility:
            visible;

        transform:
            translateY(0);
    }


    .mobile-menu a {
        padding:
            10px 4px;
    }


    .mobile-menu button {
        min-height:
            50px;

        box-shadow:
            0 12px 25px
            rgba(245,47,121,0.18);
    }


    .hero {
        min-height:
            auto;

        padding-top:
            65px;

        padding-bottom:
            80px;
    }


    .hero::before {
        width:
            480px;

        height:
            480px;

        right:
            -260px;

        top:
            -100px;
    }


    .hero h1 {
        font-size:
            clamp(
                40px,
                11vw,
                56px
            );

        line-height:
            1.02;

        letter-spacing:
            -2.7px;
    }


    .hero-description {
        max-width:
            500px;

        font-size:
            15px;

        line-height:
            1.75;
    }


    .hero-buttons {
        width:
            min(100%, 420px);

        gap:
            10px;
    }


    .hero-buttons button {
        width:
            100%;
    }


    .hero-visual {
        width:
            100%;

        min-height:
            475px;

        margin-top:
            5px;
    }


    .main-preview-card {
        width:
            min(340px, 82vw);

        min-height:
            420px;
    }


    .card-left {
        left:
            max(0px, 3vw);
    }


    .card-right {
        right:
            max(0px, 3vw);
    }


    .card-back {
        right:
            8vw;
    }


    .hero-heart-one {
        left:
            3%;
    }


    .hero-heart-two {
        right:
            3%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .nav-container {
        height:
            68px;

        padding:
            0 17px;
    }


    .logo {
        font-size:
            20px;
    }


    .logo-heart {
        width:
            33px;

        height:
            33px;
    }


    .hero {
        padding:
            48px 17px 65px;
    }


    .eyebrow {
        font-size:
            10px;

        padding:
            8px 12px;
    }


    .hero h1 {
        font-size:
            39px;

        letter-spacing:
            -2.2px;
    }


    .hero-description {
        font-size:
            14px;
    }


    .hero-note {
        font-size:
            10px;
    }


    .hero-visual {
        min-height:
            405px;
    }


    .main-preview-card {
        width:
            270px;

        min-height:
            365px;

        padding:
            28px 22px;

        border-radius:
            31px;
    }


    .preview-heart {
        width:
            82px;

        height:
            82px;

        margin-top:
            27px;

        border-radius:
            27px;

        font-size:
            34px;
    }


    .main-preview-card h3 {
        font-size:
            24px;
    }


    .main-preview-card > p {
        font-size:
            12px;
    }


    .preview-open-btn {
        margin-top:
            22px;

        padding:
            12px 17px;

        font-size:
            10px;
    }


    .floating-card {
        padding:
            10px 12px;

        border-radius:
            15px;
    }


    .floating-card span {
        font-size:
            17px;
    }


    .floating-card p {
        font-size:
            8px;
    }


    .card-left {
        left:
            -3px;

        top:
            82px;
    }


    .card-right {
        right:
            -3px;

        bottom:
            72px;
    }


    .card-back {
        right:
            18px;

        top:
            18px;
    }


    .hero-decoration {
        display:
            none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;
    }

}

/* =========================================================
   DILLINK — STEP 2B
   OCCASIONS + EXPERIENCE + HOW IT WORKS + TESTIMONIALS
========================================================= */


/* =========================================================
   SECTION BACKGROUND DETAILS
========================================================= */

.moments-section {
    position: relative;
}

.moments-section::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: 180px;
    left: -230px;

    background:
        radial-gradient(
            circle,
            rgba(255, 111, 163, 0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   MOMENT GRID
========================================================= */

.moment-grid {
    position: relative;
    z-index: 2;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   MOMENT CARD
========================================================= */

.moment-card {
    position: relative;

    min-height: 330px;

    padding: 27px;

    border:
        1px solid
        rgba(53, 16, 34, 0.065);

    border-radius: 30px;

    overflow: hidden;

    isolation: isolate;

    box-shadow:
        0 12px 35px
        rgba(53, 16, 34, 0.045);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Large decorative glow */

.moment-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -85px;
    right: -75px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.58);

    filter:
        blur(2px);

    z-index: -1;

    transition:
        transform 0.5s ease;
}


/* Bottom decorative glow */

.moment-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    bottom: -80px;
    left: -50px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.5);

    filter:
        blur(2px);

    z-index: -1;

    transition:
        transform 0.5s ease;
}


.moment-card:hover {
    transform:
        translateY(-9px);

    box-shadow:
        0 28px 65px
        rgba(53, 16, 34, 0.10);

    border-color:
        rgba(245, 47, 121, 0.10);
}


.moment-card:hover::before {
    transform:
        scale(1.35);
}


.moment-card:hover::after {
    transform:
        scale(1.3);
}


/* =========================================================
   MOMENT ICON
========================================================= */

.moment-icon {
    position: relative;

    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.72);

    border:
        1px solid
        rgba(255,255,255,0.85);

    box-shadow:
        0 12px 28px
        rgba(53,16,34,0.07);

    font-size: 27px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.moment-card:hover .moment-icon {
    transform:
        translateY(-3px)
        rotate(-4deg)
        scale(1.06);

    box-shadow:
        0 16px 35px
        rgba(53,16,34,0.11);
}


/* =========================================================
   MOMENT CONTENT
========================================================= */

.moment-tag {
    margin-top:
        25px;

    font-size:
        9px;

    letter-spacing:
        1.1px;

    font-weight:
        800;

    text-transform:
        uppercase;

    color:
        var(--pink);
}


.moment-card h3 {
    margin-top:
        6px;

    font-size:
        25px;

    letter-spacing:
        -0.7px;
}


.moment-card p {
    max-width:
        250px;

    margin-top:
        9px;

    font-size:
        13px;

    line-height:
        1.7;

    color:
        rgba(53,16,34,0.55);
}


/* =========================================================
   MOMENT BUTTON
========================================================= */

.moment-card button {
    position:
        relative;

    overflow:
        hidden;

    z-index:
        2;

    margin-top:
        auto;

    padding:
        11px 16px;

    background:
        rgba(255,255,255,0.78);

    border:
        1px solid
        rgba(245,47,121,0.08);

    box-shadow:
        0 8px 20px
        rgba(53,16,34,0.035);

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.moment-card button:hover {
    background:
        var(--pink);

    color:
        white;

    transform:
        translateY(-2px);
}


/* =========================================================
   INDIVIDUAL CARD ACCENTS
========================================================= */

.birthday .moment-icon {
    background:
        rgba(255, 224, 234, 0.82);
}

.anniversary .moment-icon {
    background:
        rgba(255, 220, 232, 0.82);
}

.proposal .moment-icon {
    background:
        rgba(237, 225, 255, 0.82);
}

.apology .moment-icon {
    background:
        rgba(222, 241, 255, 0.82);
}

.just-because .moment-icon {
    background:
        rgba(255, 239, 197, 0.82);
}

.friendship .moment-icon {
    background:
        rgba(220, 246, 235, 0.82);
}


/* =========================================================
   EXPERIENCE SECTION
========================================================= */

.experience-section {
    position:
        relative;

    overflow:
        hidden;

    margin-top:
        70px;

    padding:
        115px 24px;

    background:
        linear-gradient(
            145deg,
            #fff0f5 0%,
            #ffe6ee 48%,
            #fff4f6 100%
        );
}


.experience-section::before {
    content:
        "";

    position:
        absolute;

    width:
        600px;

    height:
        600px;

    top:
        -300px;

    right:
        -250px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.7),
            transparent 68%
        );
}


.experience-section::after {
    content:
        "";

    position:
        absolute;

    width:
        420px;

    height:
        420px;

    bottom:
        -280px;

    left:
        -200px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(245,47,121,0.07),
            transparent 70%
        );
}


.experience-container {
    position:
        relative;

    z-index:
        2;

    grid-template-columns:
        0.95fr 1.05fr;

    gap:
        90px;
}


/* =========================================================
   EXPERIENCE COPY
========================================================= */

.experience-copy {
    position:
        relative;
}


.experience-copy h2 {
    max-width:
        550px;

    font-size:
        clamp(
            37px,
            4.2vw,
            56px
        );

    line-height:
        1.04;

    letter-spacing:
        -2.4px;
}


.experience-copy p {
    max-width:
        490px;

    margin-top:
        22px;

    font-size:
        15px;

    line-height:
        1.8;

    color:
        rgba(53,16,34,0.57);
}


.experience-copy .small-btn {
    margin-top:
        30px;
}


/* =========================================================
   EXPERIENCE DEMO AREA
========================================================= */

.experience-demo {
    position:
        relative;

    min-height:
        550px;
}


.experience-demo::before {
    content:
        "";

    position:
        absolute;

    width:
        390px;

    height:
        390px;

    top:
        50%;

    left:
        50%;

    transform:
        translate(-50%, -50%);

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(245,47,121,0.10),
            transparent 68%
        );
}


/* =========================================================
   PHONE
========================================================= */

.demo-phone {
    position:
        relative;

    z-index:
        3;

    width:
        292px;

    height:
        570px;

    padding:
        9px;

    background:
        linear-gradient(
            145deg,
            #2b101e,
            #170810
        );

    border:
        2px solid
        rgba(255,255,255,0.14);

    border-radius:
        45px;

    box-shadow:
        0 40px 90px
        rgba(53,16,34,0.22),
        0 10px 25px
        rgba(53,16,34,0.08);

    transform:
        rotate(2deg);

    animation:
        phoneFloat
        5s
        ease-in-out
        infinite;
}


@keyframes phoneFloat {

    0%,
    100% {
        transform:
            rotate(2deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(1deg)
            translateY(-10px);
    }

}


/* =========================================================
   PHONE SIDE DETAILS
========================================================= */

.demo-phone::before {
    content:
        "";

    position:
        absolute;

    left:
        -3px;

    top:
        115px;

    width:
        3px;

    height:
        55px;

    border-radius:
        4px;

    background:
        #472031;
}


.demo-phone::after {
    content:
        "";

    position:
        absolute;

    right:
        -3px;

    top:
        145px;

    width:
        3px;

    height:
        75px;

    border-radius:
        4px;

    background:
        #472031;
}


/* =========================================================
   PHONE NOTCH
========================================================= */

.phone-notch {
    top:
        15px;

    width:
        100px;

    height:
        24px;

    background:
        #170810;

    border-radius:
        20px;
}


/* =========================================================
   DEMO SCREEN
========================================================= */

.demo-screen {
    position:
        relative;

    overflow:
        hidden;

    padding:
        82px 24px 25px;

    border-radius:
        36px;

    background:
        linear-gradient(
            155deg,
            #fffdfb,
            #ffeaf1
        );
}


/* Screen decorative glow */

.demo-screen::before {
    content:
        "";

    position:
        absolute;

    width:
        190px;

    height:
        190px;

    top:
        -100px;

    right:
        -80px;

    border-radius:
        50%;

    background:
        rgba(255,126,170,0.15);
}


/* =========================================================
   DEMO CONTENT
========================================================= */

.demo-small {
    position:
        relative;

    z-index:
        2;

    padding:
        6px 9px;

    background:
        rgba(245,47,121,0.07);

    border-radius:
        100px;

    color:
        var(--pink);

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        0.9px;
}


.demo-big-heart {
    position:
        relative;

    z-index:
        2;

    width:
        92px;

    height:
        92px;

    margin-top:
        50px;

    border-radius:
        31px;

    background:
        linear-gradient(
            145deg,
            #ffacc6,
            #f52f79
        );

    box-shadow:
        0 22px 42px
        rgba(245,47,121,0.25);

    font-size:
        42px;

    animation:
        demoHeart
        3.2s
        ease-in-out
        infinite;
}


@keyframes demoHeart {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.055);
    }

}


.demo-screen h3 {
    position:
        relative;

    z-index:
        2;

    margin-top:
        25px;

    font-size:
        25px;

    letter-spacing:
        -0.7px;
}


.demo-screen p {
    position:
        relative;

    z-index:
        2;

    max-width:
        190px;

    margin-top:
        9px;

    line-height:
        1.65;

    font-size:
        12px;
}


.demo-screen button {
    position:
        relative;

    z-index:
        2;

    min-height:
        43px;

    padding:
        0 24px;

    border-radius:
        100px;

    box-shadow:
        0 12px 25px
        rgba(245,47,121,0.18);

    transition:
        transform 0.25s ease;
}


.demo-screen button:hover {
    transform:
        translateY(-2px);
}


/* =========================================================
   EXPERIENCE FLOATING LABELS
========================================================= */

.experience-demo::after {
    content:
        "💌  Your memories";

    position:
        absolute;

    z-index:
        4;

    right:
        4%;

    bottom:
        100px;

    padding:
        11px 15px;

    border-radius:
        100px;

    background:
        rgba(255,255,255,0.82);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 15px 35px
        rgba(53,16,34,0.09);

    color:
        rgba(53,16,34,0.67);

    font-size:
        10px;

    font-weight:
        700;

    transform:
        rotate(5deg);

    animation:
        labelFloat
        4s
        ease-in-out
        infinite;
}


@keyframes labelFloat {

    0%,
    100% {
        transform:
            rotate(5deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(3deg)
            translateY(-8px);
    }

}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    position:
        relative;
}


.how-section::after {
    content:
        "♡";

    position:
        absolute;

    right:
        4%;

    top:
        20%;

    color:
        rgba(245,47,121,0.08);

    font-size:
        100px;

    pointer-events:
        none;
}


/* =========================================================
   STEPS
========================================================= */

.steps {
    position:
        relative;

    z-index:
        2;

    width:
        100%;
}


.step {
    position:
        relative;

    max-width:
        245px;

    padding:
        8px 10px;
}


.step-number {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-width:
        38px;

    height:
        24px;

    padding:
        0 8px;

    background:
        var(--pink-soft);

    border-radius:
        100px;

    font-size:
        9px;

    letter-spacing:
        0.7px;
}


.step-icon {
    position:
        relative;

    width:
        70px;

    height:
        70px;

    margin:
        15px auto;

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            white,
            #fff6f8
        );

    box-shadow:
        0 14px 30px
        rgba(53,16,34,0.065);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.step:hover .step-icon {
    transform:
        translateY(-5px)
        rotate(-3deg);

    box-shadow:
        0 20px 38px
        rgba(53,16,34,0.09);
}


.step h3 {
    font-size:
        16px;

    letter-spacing:
        -0.3px;
}


.step p {
    max-width:
        210px;

    margin:
        9px auto 0;

    font-size:
        12px;

    line-height:
        1.7;
}


.step-line {
    position:
        relative;

    width:
        70px;

    height:
        1px;

    margin-top:
        115px;

    background:
        linear-gradient(
            90deg,
            rgba(245,47,121,0.08),
            rgba(245,47,121,0.28),
            rgba(245,47,121,0.08)
        );
}


.step-line::after {
    content:
        "•";

    position:
        absolute;

    left:
        50%;

    top:
        50%;

    transform:
        translate(-50%, -50%);

    color:
        var(--pink);

    font-size:
        12px;

    background:
        var(--cream);

    padding:
        0 4px;
}


/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonials-section {
    position:
        relative;

    max-width:
        1180px;

    padding-top:
        80px;
}


.testimonials-section::before {
    content:
        "";

    position:
        absolute;

    width:
        400px;

    height:
        400px;

    left:
        -250px;

    top:
        100px;

    background:
        radial-gradient(
            circle,
            rgba(245,47,121,0.055),
            transparent 70%
        );
}


/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.testimonial-grid {
    position:
        relative;

    z-index:
        2;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        20px;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    position:
        relative;

    min-height:
        285px;

    padding:
        27px;

    border:
        1px solid
        rgba(53,16,34,0.06);

    border-radius:
        28px;

    background:
        rgba(255,255,255,0.88);

    box-shadow:
        0 14px 38px
        rgba(53,16,34,0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.testimonial-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 25px 55px
        rgba(53,16,34,0.09);
}


/* =========================================================
   TESTIMONIAL TOP
========================================================= */

.testimonial-top {
    align-items:
        flex-start;
}


.quote-icon {
    width:
        34px;

    height:
        34px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        12px;

    background:
        var(--pink-soft);

    color:
        var(--pink);

    font-size:
        28px;

    line-height:
        1;

    font-family:
        Georgia,
        serif;
}


.occasion-badge {
    border:
        1px solid
        rgba(245,47,121,0.06);
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-card > p {
    margin-top:
        24px;

    font-size:
        13px;

    line-height:
        1.8;

    color:
        rgba(53,16,34,0.66);
}


/* =========================================================
   TESTIMONIAL USER
========================================================= */

.testimonial-user {
    margin-top:
        25px;

    padding-top:
        15px;

    border-top:
        1px solid
        rgba(53,16,34,0.06);
}


.avatar {
    position:
        relative;

    width:
        40px;

    height:
        40px;

    border:
        3px solid
        #fff4f7;

    box-shadow:
        0 6px 16px
        rgba(53,16,34,0.08);
}


.avatar::after {
    content:
        "♥";

    position:
        absolute;

    right:
        -5px;

    bottom:
        -3px;

    width:
        15px;

    height:
        15px;

    display:
        grid;

    place-items:
        center;

    border:
        2px solid
        white;

    border-radius:
        50%;

    background:
        var(--pink);

    color:
        white;

    font-size:
        6px;
}


/* =========================================================
   SCROLL REVEAL — STAGGER
========================================================= */

.moment-card.reveal:nth-child(2),
.step.reveal:nth-child(2),
.testimonial-card.reveal:nth-child(2) {
    transition-delay:
        0.08s;
}


.moment-card.reveal:nth-child(3),
.step.reveal:nth-child(3),
.testimonial-card.reveal:nth-child(3) {
    transition-delay:
        0.16s;
}


.moment-card.reveal:nth-child(4),
.step.reveal:nth-child(4) {
    transition-delay:
        0.24s;
}


.moment-card.reveal:nth-child(5) {
    transition-delay:
        0.32s;
}


.moment-card.reveal:nth-child(6) {
    transition-delay:
        0.40s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .moment-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .experience-container {
        grid-template-columns:
            1fr 0.9fr;

        gap:
            45px;
    }


    .demo-phone {
        width:
            270px;

        height:
            535px;
    }


    .testimonial-grid {
        grid-template-columns:
            1fr;

        max-width:
            700px;

        margin:
            auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .moment-grid {
        grid-template-columns:
            1fr;

        gap:
            14px;
    }


    .moment-card {
        min-height:
            285px;

        padding:
            25px;
    }


    .experience-section {
        margin-top:
            45px;

        padding:
            80px 20px;
    }


    .experience-container {
        grid-template-columns:
            1fr;

        gap:
            50px;

        text-align:
            center;
    }


    .experience-copy {
        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;
    }


    .experience-copy h2 {
        max-width:
            600px;

        font-size:
            clamp(
                34px,
                9vw,
                48px
            );
    }


    .experience-copy p {
        max-width:
            520px;

        font-size:
            14px;
    }


    .experience-demo {
        min-height:
            535px;
    }


    .experience-demo::after {
        right:
            5%;

        bottom:
            65px;
    }


    .steps {
        flex-direction:
            column;

        align-items:
            center;

        gap:
            0;
    }


    .step {
        max-width:
            340px;

        width:
            100%;

        padding:
            5px 10px 0;
    }


    .step-line {
        width:
            1px;

        height:
            38px;

        margin:
            5px 0;

        background:
            linear-gradient(
                180deg,
                rgba(245,47,121,0.08),
                rgba(245,47,121,0.28),
                rgba(245,47,121,0.08)
            );
    }


    .step-line::after {
        top:
            50%;

        left:
            50%;
    }


    .testimonial-grid {
        grid-template-columns:
            1fr;

        max-width:
            520px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .moment-card {
        min-height:
            270px;

        padding:
            23px;

        border-radius:
            25px;
    }


    .moment-icon {
        width:
            58px;

        height:
            58px;

        border-radius:
            18px;

        font-size:
            25px;
    }


    .moment-tag {
        margin-top:
            21px;
    }


    .moment-card h3 {
        font-size:
            23px;
    }


    .moment-card p {
        font-size:
            12px;
    }


    .experience-section {
        padding:
            72px 17px;
    }


    .experience-demo {
        min-height:
            480px;
    }


    .demo-phone {
        width:
            255px;

        height:
            495px;

        border-radius:
            39px;
    }


    .demo-screen {
        border-radius:
            31px;

        padding:
            74px 21px 22px;
    }


    .demo-big-heart {
        width:
            82px;

        height:
            82px;

        margin-top:
            42px;

        border-radius:
            27px;

        font-size:
            36px;
    }


    .demo-screen h3 {
        font-size:
            23px;
    }


    .experience-demo::after {
        right:
            -2px;

        bottom:
            48px;

        font-size:
            9px;

        padding:
            9px 12px;
    }


    .testimonial-card {
        min-height:
            270px;

        padding:
            23px;

        border-radius:
            24px;
    }

}

/* =========================================================
   DILLINK — STEP 2C
   FINAL LANDING PAGE POLISH
========================================================= */


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #fff9f7,
            #ffeaf1
        );

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.page-loader.hide {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}

.loader-inner {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 16px;
}

.loader-heart {
    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            #ff9cbd,
            #f52f79
        );

    color: white;

    font-size: 28px;

    box-shadow:
        0 20px 40px
        rgba(245,47,121,0.24);

    animation:
        loaderPulse
        1.3s
        ease-in-out
        infinite;
}

.loader-text {
    color:
        rgba(53,16,34,0.5);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.4px;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.08);
    }

}


/* =========================================================
   FLOATING HEART SYSTEM
========================================================= */

.floating-heart {
    position: fixed;

    z-index: 5;

    pointer-events: none;

    color:
        rgba(245,47,121,0.22);

    font-size:
        var(--heart-size, 14px);

    opacity: 0;

    animation:
        heartRise
        var(--heart-duration, 7s)
        linear
        forwards;
}

@keyframes heartRise {

    0% {
        opacity: 0;

        transform:
            translate3d(
                0,
                30px,
                0
            )
            scale(0.75)
            rotate(0deg);
    }

    10% {
        opacity:
            0.6;
    }

    75% {
        opacity:
            0.35;
    }

    100% {
        opacity: 0;

        transform:
            translate3d(
                var(--heart-x, 20px),
                -110vh,
                0
            )
            scale(1.15)
            rotate(
                var(--heart-rotate, 15deg)
            );
    }
}


/* =========================================================
   SPARKLE SYSTEM
========================================================= */

.page-sparkle {
    position: fixed;

    z-index: 4;

    pointer-events: none;

    color:
        rgba(245,47,121,0.30);

    font-size:
        var(--sparkle-size, 12px);

    opacity: 0;

    animation:
        sparkleRise
        var(--sparkle-duration, 5s)
        ease-out
        forwards;
}

@keyframes sparkleRise {

    0% {
        opacity: 0;

        transform:
            translateY(20px)
            scale(0.5)
            rotate(0deg);
    }

    20% {
        opacity:
            0.7;
    }

    70% {
        opacity:
            0.4;
    }

    100% {
        opacity: 0;

        transform:
            translate(
                var(--sparkle-x, 10px),
                -180px
            )
            scale(1.15)
            rotate(80deg);
    }
}


/* =========================================================
   CURSOR GLOW
========================================================= */

.cursor-glow {
    position: fixed;

    z-index: 9998;

    width: 180px;

    height: 180px;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,111,163,0.08),
            transparent 70%
        );

    transform:
        translate(-50%, -50%);

    opacity: 0;

    transition:
        opacity 0.3s ease;

    mix-blend-mode:
        multiply;
}


/* =========================================================
   SECTION TRANSITION
========================================================= */

.experience-section,
.final-cta {
    position: relative;
}

.experience-section::before {
    pointer-events: none;
}


/* Soft top curve */

.experience-section {
    border-radius:
        45px 45px 0 0;
}

.final-cta {
    border-radius:
        45px 45px 0 0;
}


/* =========================================================
   FAQ POLISH
========================================================= */

.faq-item {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.faq-item:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(245,47,121,0.10);

    box-shadow:
        0 14px 35px
        rgba(53,16,34,0.06);
}

.faq-item.active {
    border-color:
        rgba(245,47,121,0.13);

    box-shadow:
        0 16px 40px
        rgba(245,47,121,0.06);
}

.faq-question {
    transition:
        color 0.25s ease;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
    color:
        var(--pink);
}

.faq-icon {
    width: 30px;

    height: 30px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(--pink-pale);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.faq-item.active .faq-icon {
    background:
        var(--pink);

    color:
        white;

    transform:
        rotate(45deg);
}


/* =========================================================
   FINAL CTA POLISH
========================================================= */

.final-cta {
    isolation: isolate;
}

.final-cta::after {
    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    right: -100px;

    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.09);

    pointer-events: none;
}

.cta-button {
    position: relative;

    overflow: hidden;
}

.cta-button::before {
    content: "";

    position: absolute;

    left: -110%;

    top: 0;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(245,47,121,0.08),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.55s ease;
}

.cta-button:hover::before {
    left: 140%;
}

.cta-button span {
    position: relative;

    z-index: 2;
}


/* =========================================================
   FOOTER POLISH
========================================================= */

.footer {
    position:
        relative;

    overflow:
        hidden;
}

.footer::before {
    content:
        "";

    position:
        absolute;

    width:
        350px;

    height:
        350px;

    top:
        -240px;

    right:
        -100px;

    border-radius:
        50%;

    background:
        rgba(245,47,121,0.08);

    filter:
        blur(10px);

    pointer-events:
        none;
}

.footer-container,
.footer-bottom {
    position:
        relative;

    z-index:
        2;
}


/* =========================================================
   MOBILE BOTTOM CTA
========================================================= */

.mobile-bottom-cta {
    display: none;
}

@media (max-width: 700px) {

    .mobile-bottom-cta {
        position: fixed;

        z-index: 900;

        left: 12px;

        right: 12px;

        bottom: 12px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 10px;

        padding: 10px 10px 10px 15px;

        background:
            rgba(53,16,34,0.94);

        backdrop-filter:
            blur(18px);

        -webkit-backdrop-filter:
            blur(18px);

        border:
            1px solid
            rgba(255,255,255,0.08);

        border-radius:
            18px;

        box-shadow:
            0 20px 45px
            rgba(53,16,34,0.24);

        transform:
            translateY(120%);

        opacity:
            0;

        transition:
            transform 0.4s ease,
            opacity 0.4s ease;
    }

    .mobile-bottom-cta.visible {
        transform:
            translateY(0);

        opacity:
            1;
    }

    .mobile-bottom-text {
        display: flex;

        flex-direction: column;

        gap: 2px;

        color: white;
    }

    .mobile-bottom-text strong {
        font-size: 11px;
    }

    .mobile-bottom-text span {
        font-size: 9px;

        color:
            rgba(255,255,255,0.55);
    }

    .mobile-bottom-cta button {
        flex-shrink: 0;

        min-height: 42px;

        padding: 0 16px;

        border-radius: 100px;

        background:
            linear-gradient(
                135deg,
                #ff82ad,
                #f52f79
            );

        color: white;

        font-size: 11px;

        font-weight: 800;

        box-shadow:
            0 8px 20px
            rgba(245,47,121,0.25);
    }

}


/* =========================================================
   HIDE CURSOR GLOW ON TOUCH DEVICES
========================================================= */

@media (hover: none), (pointer: coarse) {

    .cursor-glow {
        display:
            none;
    }

    .floating-heart,
    .page-sparkle {
        display:
            none;
    }

}


/* =========================================================
   SMALL MOBILE FINAL ADJUSTMENTS
========================================================= */

@media (max-width: 500px) {

    .experience-section,
    .final-cta {
        border-radius:
            30px 30px 0 0;
    }

    .final-cta {
        padding:
            85px 20px;
    }

    .cta-content h2 {
        letter-spacing:
            -1.8px;
    }

    .faq-question {
        padding:
            19px;
    }

    .faq-answer p {
        padding-left:
            19px;

        padding-right:
            19px;
    }

    .faq-item.active
    .faq-answer p {
        padding-left:
            19px;

        padding-right:
            19px;

        padding-bottom:
            19px;
    }

}

/* =========================================================
   DILLINK — PREMIUM CUTE HOMEPAGE UPGRADE
   ========================================================= */

/* ---------- BRAND LOGO ---------- */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    flex-shrink: 0;
}

.brand-logo {
    width: 132px;
    height: auto;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.logo:hover .brand-logo {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 8px 18px rgba(245, 47, 121, 0.14));
}

.footer-brand-logo {
    width: 145px;
    max-height: 52px;
}


/* ---------- BODY PREMIUM BACKGROUND ---------- */

body {
    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(255, 111, 163, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 18%,
            rgba(245, 47, 121, 0.07),
            transparent 30%
        ),
        var(--cream);
}


/* ---------- PREMIUM NAVBAR ---------- */

.navbar {
    background:
        rgba(255, 249, 247, 0.72);

    backdrop-filter:
        blur(24px)
        saturate(170%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(170%);

    border-bottom:
        1px solid
        rgba(245, 47, 121, 0.07);

    box-shadow:
        0 8px 35px
        rgba(53, 16, 34, 0.035);
}

.nav-container {
    height: 78px;
}


/* ---------- NAV LINKS ---------- */

.desktop-nav {
    padding: 5px;
    border-radius: 100px;

    background:
        rgba(255,255,255,0.62);

    border:
        1px solid
        rgba(53,16,34,0.055);

    box-shadow:
        0 8px 25px
        rgba(53,16,34,0.035);
}

.desktop-nav a {
    padding: 9px 14px;
    border-radius: 100px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.desktop-nav a:hover {
    background: var(--pink-soft);
    color: var(--pink);
    transform: translateY(-1px);
}


/* ---------- NAV CTA ---------- */

.nav-create-btn {
    position: relative;
    overflow: hidden;

    min-height: 44px;
    padding: 0 19px;

    background:
        linear-gradient(
            135deg,
            #ff82ad 0%,
            #f52f79 55%,
            #d91f68 100%
        );

    box-shadow:
        0 12px 28px
        rgba(245,47,121,0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-create-btn::before {
    content: "";

    position: absolute;

    width: 80px;
    height: 100%;

    top: 0;
    left: -100px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.32),
            transparent
        );

    transform: skewX(-18deg);

    transition: left 0.55s ease;
}

.nav-create-btn:hover::before {
    left: 130%;
}

.nav-create-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 17px 35px
        rgba(245,47,121,0.28);
}


/* =========================================================
   HERO UPGRADE
   ========================================================= */

.hero {
    min-height: 760px;
    position: relative;
}

.hero::after {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    left: -280px;
    top: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,111,163,0.10),
            transparent 68%
        );

    pointer-events: none;
}


/* ---------- EYEBROW ---------- */

.eyebrow {
    position: relative;

    background:
        rgba(255,232,240,0.72);

    border:
        1px solid
        rgba(245,47,121,0.08);

    box-shadow:
        0 8px 25px
        rgba(245,47,121,0.06);

    backdrop-filter: blur(10px);
}


/* ---------- HERO TITLE ---------- */

.hero h1 {
    font-size:
        clamp(45px, 5.2vw, 76px);

    letter-spacing: -3.8px;

    line-height: 0.98;
}

.hero h1 span {
    background:
        linear-gradient(
            135deg,
            #ff82ad,
            #f52f79 60%,
            #c91c62
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* ---------- HERO DESCRIPTION ---------- */

.hero-description {
    max-width: 570px;

    font-size: 16px;

    line-height: 1.8;

    color:
        rgba(53,16,34,0.60);
}


/* ---------- HERO BUTTONS ---------- */

.primary-btn {
    position: relative;
    overflow: hidden;

    min-height: 57px;

    background:
        linear-gradient(
            135deg,
            #ff83ae,
            #f52f79 58%,
            #d91f68
        );

    box-shadow:
        0 18px 38px
        rgba(245,47,121,0.24);
}

.primary-btn::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 140%;

    left: -120px;
    top: -20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.30),
            transparent
        );

    transform: rotate(18deg);

    transition: left 0.6s ease;
}

.primary-btn:hover::before {
    left: 120%;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 23px 45px
        rgba(245,47,121,0.29);
}

.secondary-btn {
    min-height: 57px;

    background:
        rgba(255,255,255,0.82);

    border:
        1px solid
        rgba(53,16,34,0.07);

    box-shadow:
        0 10px 28px
        rgba(53,16,34,0.05);

    backdrop-filter: blur(12px);
}

.secondary-btn:hover {
    background: white;

    border-color:
        rgba(245,47,121,0.18);

    box-shadow:
        0 14px 32px
        rgba(245,47,121,0.08);
}


/* ---------- HERO VISUAL ---------- */

.hero-visual {
    min-height: 540px;
}

.main-preview-card {
    width: min(375px, 82%);

    min-height: 455px;

    padding: 40px 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(255,242,247,0.96)
        );

    border:
        1px solid
        rgba(245,47,121,0.10);

    box-shadow:
        0 45px 100px
        rgba(53,16,34,0.14),
        0 0 0 8px
        rgba(255,255,255,0.40);

    border-radius: 42px;
}


/* ---------- PREVIEW HEART ---------- */

.preview-heart {
    position: relative;

    width: 96px;
    height: 96px;

    margin: 38px 0 23px;

    background:
        linear-gradient(
            135deg,
            #ffb8cf,
            #ff5b96 55%,
            #dc246c
        );

    box-shadow:
        0 22px 42px
        rgba(245,47,121,0.27);
}

.preview-heart::before {
    content: "";

    position: absolute;

    inset: -12px;

    border-radius: 34px;

    border:
        1px solid
        rgba(245,47,121,0.10);

    animation:
        previewPulse 2.5s ease-in-out infinite;
}

@keyframes previewPulse {
    0%, 100% {
        transform: scale(0.94);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.8;
    }
}


/* ---------- FLOATING CARDS ---------- */

.floating-card {
    background:
        rgba(255,255,255,0.78);

    border:
        1px solid
        rgba(255,255,255,0.90);

    backdrop-filter:
        blur(18px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(140%);

    box-shadow:
        0 20px 45px
        rgba(53,16,34,0.10);
}

.floating-card p {
    color:
        rgba(53,16,34,0.58);
}


/* =========================================================
   STATS
   ========================================================= */

.stats-container {
    background:
        rgba(255,255,255,0.74);

    backdrop-filter: blur(18px);

    border:
        1px solid
        rgba(245,47,121,0.07);

    box-shadow:
        0 20px 60px
        rgba(53,16,34,0.065);
}

.stat-item strong {
    background:
        linear-gradient(
            135deg,
            #ff76a6,
            #f52f79
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   MOMENT CARDS
   ========================================================= */

.moment-card {
    border:
        1px solid
        rgba(53,16,34,0.055);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(255,249,250,0.94)
        );

    box-shadow:
        0 15px 45px
        rgba(53,16,34,0.055);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.moment-card:hover {
    border-color:
        rgba(245,47,121,0.14);

    box-shadow:
        0 25px 65px
        rgba(245,47,121,0.10);
}

.moment-icon {
    box-shadow:
        0 12px 25px
        rgba(245,47,121,0.10);
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-pill {
    background:
        linear-gradient(
            135deg,
            rgba(255,232,240,0.90),
            rgba(255,244,247,0.90)
        );

    border:
        1px solid
        rgba(245,47,121,0.07);

    box-shadow:
        0 8px 22px
        rgba(245,47,121,0.045);
}


/* =========================================================
   TESTIMONIAL CARDS
   ========================================================= */

.testimonial-card {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff8fa
        );

    border:
        1px solid
        rgba(53,16,34,0.055);

    border-radius: 26px;

    box-shadow:
        0 18px 50px
        rgba(53,16,34,0.055);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-item {
    background:
        rgba(255,255,255,0.82);

    border:
        1px solid
        rgba(53,16,34,0.055);

    border-radius: 20px;

    box-shadow:
        0 10px 35px
        rgba(53,16,34,0.035);

    backdrop-filter: blur(10px);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255,145,185,0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #351022,
            #240916
        );

    border-radius: 42px;

    box-shadow:
        0 30px 90px
        rgba(53,16,34,0.16);
}

.final-cta::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: -300px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,111,163,0.22),
            transparent 68%
        );

    pointer-events: none;
}

.cta-button {
    position: relative;
    overflow: hidden;

    box-shadow:
        0 18px 45px
        rgba(245,47,121,0.25);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #351022,
            #250914
        );
}

.footer-logo .brand-logo {
    filter:
        drop-shadow(
            0 8px 20px
            rgba(255,111,163,0.12)
        );
}

.footer-column a:hover {
    color: #ff82ad;
}


/* =========================================================
   MOBILE POLISH
   ========================================================= */

@media (max-width: 850px) {

    .brand-logo {
        width: 116px;
        max-height: 40px;
    }

    .nav-container {
        height: 70px;
    }

    .mobile-menu {
        border-radius: 0 0 24px 24px;

        background:
            rgba(255,249,247,0.94);

        backdrop-filter: blur(22px);

        box-shadow:
            0 20px 45px
            rgba(53,16,34,0.08);
    }

    .mobile-menu a {
        padding: 11px 12px;

        border-radius: 12px;
    }

    .mobile-menu a:hover {
        background: var(--pink-soft);
        color: var(--pink);
    }

    .hero {
        overflow: hidden;
    }

    .hero h1 {
        font-size:
            clamp(39px, 11vw, 56px);

        letter-spacing: -2.6px;
    }

    .hero-description {
        max-width: 430px;
    }

    .hero-visual {
        width: 100%;
    }

    .main-preview-card {
        box-shadow:
            0 30px 70px
            rgba(53,16,34,0.12),
            0 0 0 6px
            rgba(255,255,255,0.42);
    }

    .floating-card {
        z-index: 10;
    }

    .stats-container {
        border-radius: 22px;
    }

    .moment-card,
    .testimonial-card,
    .faq-item {
        border-radius: 23px;
    }
}


@media (max-width: 450px) {

    .brand-logo {
        width: 108px;
        max-height: 38px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .main-preview-card {
        width: 272px;
        min-height: 380px;
        padding: 32px 22px;
    }

    .preview-heart {
        width: 82px;
        height: 82px;

        font-size: 34px;
    }

    .floating-card {
        padding: 10px 12px;
        border-radius: 15px;
    }

    .card-left {
        left: -10px;
    }

    .card-right {
        right: -10px;
    }

    .footer-brand-logo {
        width: 125px;
    }

    .final-cta {
        border-radius: 30px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .main-preview-card,
    .preview-heart::before,
    .floating-card {
        animation: none !important;
    }
}