:root {

    --brand: #9b4d5c;
    --brand-dark: #743744;
    --brand-light: #f8e9ec;

    --cream: #fffaf7;
    --cream-dark: #f7efeb;

    --text: #2d2928;
    --text-light: #756d6a;

    --white: #ffffff;

    --border: #eee4e1;

    --shadow-sm:
        0 8px 30px rgba(45, 41, 40, 0.06);

    --shadow-lg:
        0 25px 70px rgba(45, 41, 40, 0.12);

    --radius: 22px;

}


/* ========================================================= */
/* GENERAL */
/* ========================================================= */

html {

    scroll-behavior: smooth;

}

body {

    margin: 0;

    font-family:
        "DM Sans",
        sans-serif;

    color: var(--text);

    background: var(--cream);

    overflow-x: hidden;

}


h1,
h2,
h3,
h4 {

    font-family:
        "Playfair Display",
        serif;

}


a {

    text-decoration: none;

}


/* ========================================================= */
/* NAVBAR */
/* ========================================================= */

.navbar-custom {

    background:
        rgba(255, 250, 247, 0.90);

    backdrop-filter: blur(14px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.04);

    padding:
        18px 0;

    transition:
        all 0.3s ease;

}


.navbar-custom.scrolled {

    padding:
        10px 0;

    box-shadow:
        var(--shadow-sm);

}


.brand-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 21px;

    font-weight: 700;

}


.brand-logo:hover {

    color: var(--brand);

}


.brand-icon {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        var(--brand-light);

    color:
        var(--brand);

    font-size: 15px;

}


.navbar-nav {

    gap: 28px;

}


.nav-link {

    color:
        var(--text-light);

    font-size: 14px;

    font-weight: 600;

    transition:
        color 0.25s ease;

}


.nav-link:hover {

    color:
        var(--brand);

}


/* ========================================================= */
/* BUTTONS */
/* ========================================================= */

.btn-brand {

    background:
        var(--brand);

    color:
        var(--white);

    border:
        1px solid var(--brand);

    border-radius:
        12px;

    padding:
        11px 20px;

    font-weight:
        600;

    transition:
        all 0.25s ease;

}


.btn-brand:hover {

    background:
        var(--brand-dark);

    border-color:
        var(--brand-dark);

    color:
        var(--white);

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px rgba(155, 77, 92, 0.22);

}


.btn-outline-brand {

    border:
        1px solid var(--border);

    color:
        var(--text);

    background:
        var(--white);

    border-radius:
        12px;

    padding:
        11px 20px;

    font-weight:
        600;

}


.btn-outline-brand:hover {

    border-color:
        var(--brand);

    color:
        var(--brand);

    background:
        var(--brand-light);

}


.btn-link-brand {

    color:
        var(--brand);

    font-weight:
        600;

}


.btn-link-brand:hover {

    color:
        var(--brand-dark);

}


/* ========================================================= */
/* HERO */
/* ========================================================= */

.hero-section {

    min-height:
        760px;

    padding:
        150px 0 100px;

    position:
        relative;

    overflow:
        hidden;

    background:
        linear-gradient(
            135deg,
            #fffaf7 0%,
            #f9eef0 100%
        );

}


.hero-decoration {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

    filter:
        blur(2px);

}


.hero-decoration-1 {

    width:
        500px;

    height:
        500px;

    right:
        -250px;

    top:
        -150px;

    background:
        rgba(155, 77, 92, 0.08);

}


.hero-decoration-2 {

    width:
        300px;

    height:
        300px;

    left:
        -150px;

    bottom:
        -100px;

    background:
        rgba(200, 160, 120, 0.08);

}


.hero-badge {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        8px 13px;

    border-radius:
        100px;

    background:
        rgba(155, 77, 92, 0.08);

    color:
        var(--brand);

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        0.5px;

    margin-bottom:
        22px;

}


.hero-title {

    font-size:
        clamp(42px, 5vw, 68px);

    line-height:
        1.08;

    letter-spacing:
        -1.5px;

    max-width:
        680px;

    margin-bottom:
        25px;

}


.hero-description {

    color:
        var(--text-light);

    font-size:
        18px;

    line-height:
        1.7;

    max-width:
        590px;

    margin-bottom:
        30px;

}


.hero-buttons {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    flex-wrap:
        wrap;

}


.hero-trust {

    display:
        flex;

    gap:
        25px;

    margin-top:
        35px;

    flex-wrap:
        wrap;

}


.trust-item {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    color:
        var(--text-light);

    font-size:
        13px;

}


.trust-item i {

    color:
        var(--brand);

}


/* ========================================================= */
/* PHONE */
/* ========================================================= */

.hero-preview {

    min-height:
        560px;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    position:
        relative;

}


.phone {

    width:
        285px;

    height:
        575px;

    background:
        #171414;

    border-radius:
        42px;

    padding:
        10px;

    box-shadow:
        0 40px 90px rgba(40, 25, 25, 0.25);

    transform:
        rotate(3deg);

    position:
        relative;

    z-index:
        2;

}


.phone-notch {

    position:
        absolute;

    width:
        105px;

    height:
        27px;

    background:
        #171414;

    border-radius:
        0 0 18px 18px;

    top:
        0;

    left:
        50%;

    transform:
        translateX(-50%);

    z-index:
        5;

}


.phone-screen {

    width:
        100%;

    height:
        100%;

    overflow:
        hidden;

    border-radius:
        34px;

    background:
        var(--white);

}


.phone-image {

    height:
        280px;

    position:
        relative;

    background:
        linear-gradient(
            135deg,
            #b76d78,
            #e9b9bf
        );

}


.phone-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-direction:
        column;

    color:
        white;

    text-align:
        center;

    background:
        linear-gradient(
            rgba(50, 20, 25, 0.10),
            rgba(50, 20, 25, 0.45)
        );

}


.phone-overlay small {

    font-size:
        8px;

    letter-spacing:
        2px;

    margin-bottom:
        10px;

}


.phone-overlay h3 {

    font-size:
        31px;

    margin:
        0 0 8px;

}


.phone-date {

    font-size:
        11px;

    letter-spacing:
        2px;

}


.phone-heart {

    margin-top:
        20px;

    font-size:
        18px;

}


.phone-content {

    padding:
        22px;

}


.phone-small {

    color:
        var(--brand);

    font-size:
        9px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

}


.phone-content h4 {

    font-size:
        21px;

    line-height:
        1.2;

}


.phone-content p {

    font-size:
        10px;

    color:
        var(--text-light);

    line-height:
        1.6;

}


.phone-line {

    width:
        35px;

    height:
        2px;

    background:
        var(--brand);

    margin:
        15px 0;

}


.phone-button {

    border:
        0;

    width:
        100%;

    padding:
        10px;

    border-radius:
        10px;

    background:
        var(--brand-light);

    color:
        var(--brand);

    font-size:
        9px;

    font-weight:
        700;

}


.floating-card {

    position:
        absolute;

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    background:
        var(--white);

    border-radius:
        14px;

    padding:
        12px 16px;

    box-shadow:
        var(--shadow-lg);

    z-index:
        4;

    font-size:
        11px;

    font-weight:
        700;

}


.floating-card i {

    color:
        var(--brand);

}


.floating-card-1 {

    top:
        80px;

    left:
        5px;

}


.floating-card-2 {

    bottom:
        70px;

    right:
        5px;

}


/* ========================================================= */
/* SECTIONS */
/* ========================================================= */

.section {

    padding:
        110px 0;

}


.section-light {

    background:
        var(--white);

}


.section-heading {

    margin-bottom:
        55px;

}


.section-label {

    color:
        var(--brand);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

    display:
        inline-block;

    margin-bottom:
        12px;

}


.section-heading h2 {

    font-size:
        clamp(32px, 4vw, 48px);

    margin-bottom:
        14px;

}


.section-heading p {

    color:
        var(--text-light);

    margin:
        0;

}


/* ========================================================= */
/* CATEGORIES */
/* ========================================================= */

.category-card {

    display:
        block;

    padding:
        30px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--white);

    height:
        100%;

    transition:
        all 0.3s ease;

}


.category-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow-sm);

    border-color:
        rgba(155, 77, 92, 0.2);

}


.category-icon {

    width:
        52px;

    height:
        52px;

    border-radius:
        16px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        20px;

    font-size:
        20px;

}


.category-love {

    background:
        #fae8ec;

    color:
        #a84d61;

}


.category-wedding {

    background:
        #f2ece7;

    color:
        #8c6954;

}


.category-birthday {

    background:
        #fff0d9;

    color:
        #c98735;

}


.category-party {

    background:
        #eee8f8;

    color:
        #7453a5;

}


.category-baby {

    background:
        #e5f1f3;

    color:
        #4b8a96;

}


.category-graduation {

    background:
        #e8edf5;

    color:
        #506989;

}


.category-card h3 {

    font-size:
        23px;

    margin-bottom:
        10px;

}


.category-card p {

    color:
        var(--text-light);

    font-size:
        14px;

    line-height:
        1.6;

    margin-bottom:
        20px;

}


.category-card span {

    color:
        var(--brand);

    font-size:
        13px;

    font-weight:
        700;

}


.category-card span i {

    margin-left:
        5px;

    transition:
        margin 0.2s ease;

}


.category-card:hover span i {

    margin-left:
        10px;

}


/* ========================================================= */
/* STEPS */
/* ========================================================= */

.how-section {

    background:
        var(--cream);

}


.step-card {

    text-align:
        center;

    position:
        relative;

}


.step-number {

    font-size:
        13px;

    font-weight:
        700;

    color:
        var(--brand);

    margin-bottom:
        18px;

}


.step-icon {

    width:
        76px;

    height:
        76px;

    border-radius:
        50%;

    background:
        var(--white);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin:
        0 auto 22px;

    font-size:
        24px;

    color:
        var(--brand);

    box-shadow:
        var(--shadow-sm);

}


.step-card h3 {

    font-size:
        24px;

    margin-bottom:
        10px;

}


.step-card p {

    color:
        var(--text-light);

    font-size:
        14px;

    line-height:
        1.7;

    max-width:
        300px;

    margin:
        auto;

}


/* ========================================================= */
/* TEMPLATES */
/* ========================================================= */

.template-card {

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    overflow:
        hidden;

    background:
        var(--white);

    transition:
        all 0.3s ease;

}


.template-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-sm);

}


.template-preview {

    height:
        360px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    position:
        relative;

    overflow:
        hidden;

}


.template-preview::before {

    content:
        "";

    position:
        absolute;

    inset:
        20px;

    border:
        1px solid rgba(255,255,255,0.5);

}


.template-love {

    background:
        linear-gradient(
            145deg,
            #8f4757,
            #d996a0
        );

    color:
        white;

}


.template-wedding {

    background:
        linear-gradient(
            145deg,
            #73665d,
            #c4b2a5
        );

    color:
        white;

}


.template-birthday {

    background:
        linear-gradient(
            145deg,
            #8c688d,
            #d9afd1
        );

    color:
        white;

}


.template-preview-content {

    position:
        relative;

    z-index:
        2;

}


.template-preview-content span {

    display:
        block;

    font-size:
        9px;

    letter-spacing:
        2px;

    margin-bottom:
        15px;

}


.template-preview-content h3 {

    font-size:
        34px;

    margin:
        0 0 8px;

}


.template-preview-content small {

    font-size:
        11px;

    letter-spacing:
        2px;

}


.template-preview-content i {

    display:
        block;

    margin-top:
        25px;

}


.template-info {

    padding:
        20px;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

}


.template-info h3 {

    font-size:
        20px;

    margin:
        0 0 4px;

}


.template-info p {

    color:
        var(--text-light);

    font-size:
        12px;

    margin:
        0;

}


.template-arrow {

    width:
        42px;

    height:
        42px;

    border:
        1px solid var(--border);

    background:
        var(--white);

    color:
        var(--brand);

    border-radius:
        50%;

    transition:
        all 0.2s ease;

}


.template-arrow:hover {

    background:
        var(--brand);

    color:
        white;

}


/* ========================================================= */
/* FEATURES */
/* ========================================================= */

.features-section {

    background:
        var(--cream-dark);

}


.feature-title {

    font-size:
        clamp(34px, 4vw, 50px);

    line-height:
        1.15;

    margin-bottom:
        20px;

}


.feature-title span {

    color:
        var(--brand);

}


.feature-description {

    color:
        var(--text-light);

    line-height:
        1.8;

    margin-bottom:
        30px;

}


.feature-list {

    display:
        flex;

    flex-direction:
        column;

    gap:
        22px;

}


.feature-item {

    display:
        flex;

    gap:
        15px;

}


.feature-check {

    width:
        34px;

    height:
        34px;

    flex-shrink:
        0;

    border-radius:
        50%;

    background:
        var(--brand-light);

    color:
        var(--brand);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.feature-item strong {

    display:
        block;

    margin-bottom:
        4px;

}


.feature-item p {

    margin:
        0;

    color:
        var(--text-light);

    font-size:
        13px;

    line-height:
        1.6;

}


.feature-visual {

    min-height:
        420px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    position:
        relative;

}


.visual-card {

    width:
        300px;

    height:
        350px;

    border-radius:
        30px;

    background:
        var(--white);

    box-shadow:
        var(--shadow-lg);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-direction:
        column;

    text-align:
        center;

    position:
        relative;

    z-index:
        2;

}


.visual-card i {

    color:
        var(--brand);

    font-size:
        32px;

    margin-bottom:
        20px;

}


.visual-card span {

    color:
        var(--brand);

    font-size:
        11px;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

}


.visual-card strong {

    font-family:
        "Playfair Display";

    font-size:
        32px;

    line-height:
        1.2;

    max-width:
        230px;

    margin-top:
        12px;

}


.visual-circle {

    position:
        absolute;

    border-radius:
        50%;

}


.visual-circle-1 {

    width:
        180px;

    height:
        180px;

    background:
        rgba(155, 77, 92, 0.12);

    top:
        20px;

    right:
        30px;

}


.visual-circle-2 {

    width:
        130px;

    height:
        130px;

    background:
        rgba(200, 160, 120, 0.15);

    bottom:
        30px;

    left:
        30px;

}


/* ========================================================= */
/* CTA */
/* ========================================================= */

.cta-section {

    padding:
        110px 20px;

    position:
        relative;

    overflow:
        hidden;

    background:
        var(--brand);

    color:
        white;

}


.cta-section h2 {

    font-size:
        clamp(38px, 5vw, 58px);

    max-width:
        650px;

    margin:
        20px auto;

}


.cta-section p {

    max-width:
        550px;

    margin:
        0 auto 30px;

    color:
        rgba(255,255,255,0.78);

    line-height:
        1.7;

}


.cta-icon {

    width:
        55px;

    height:
        55px;

    border-radius:
        50%;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(255,255,255,0.12);

}


.cta-button {

    color:
        var(--brand);

    border:
        0;

    border-radius:
        12px;

    padding:
        13px 25px;

    font-weight:
        700;

}


.cta-decoration {

    position:
        absolute;

    border-radius:
        50%;

    border:
        1px solid rgba(255,255,255,0.10);

}


.cta-decoration-1 {

    width:
        500px;

    height:
        500px;

    left:
        -250px;

    top:
        -200px;

}


.cta-decoration-2 {

    width:
        400px;

    height:
        400px;

    right:
        -200px;

    bottom:
        -200px;

}


/* ========================================================= */
/* FOOTER */
/* ========================================================= */

.footer {

    padding:
        70px 0 25px;

    background:
        #252120;

    color:
        white;

}


.footer-brand {

    color:
        white;

}


.footer-description {

    max-width:
        390px;

    color:
        rgba(255,255,255,0.55);

    line-height:
        1.7;

    font-size:
        14px;

    margin-top:
        20px;

}


.footer h4 {

    font-family:
        "DM Sans";

    font-size:
        13px;

    font-weight:
        700;

    margin-bottom:
        20px;

}


.footer ul {

    list-style:
        none;

    padding:
        0;

    margin:
        0;

}


.footer li {

    margin-bottom:
        12px;

}


.footer li a {

    color:
        rgba(255,255,255,0.55);

    font-size:
        13px;

    transition:
        color 0.2s ease;

}


.footer li a:hover {

    color:
        white;

}


.social-links {

    display:
        flex;

    gap:
        10px;

}


.social-links a {

    width:
        40px;

    height:
        40px;

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        white;

    background:
        rgba(255,255,255,0.08);

    transition:
        all 0.2s ease;

}


.social-links a:hover {

    background:
        var(--brand);

    transform:
        translateY(-2px);

}


.footer hr {

    border-color:
        rgba(255,255,255,0.08);

    margin:
        50px 0 20px;

}


.footer-bottom {

    display:
        flex;

    justify-content:
        space-between;

    color:
        rgba(255,255,255,0.4);

    font-size:
        12px;

}


/* ========================================================= */
/* ANIMATIONS */
/* ========================================================= */

[data-animate] {

    opacity:
        0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


[data-animate].visible {

    opacity:
        1;

    transform:
        translateY(0);

}


/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media (max-width: 991px) {

    .navbar-nav {

        gap:
            5px;

        margin:
            20px 0 !important;

    }


    .navbar-custom .btn {

        width:
            100%;

    }


    .hero-section {

        padding:
            130px 0 80px;

    }


    .hero-preview {

        min-height:
            520px;

    }

}


@media (max-width: 767px) {

    .hero-section {

        min-height:
            auto;

        padding:
            120px 0 70px;

    }


    .hero-title {

        font-size:
            42px;

    }


    .hero-description {

        font-size:
            16px;

    }


    .hero-buttons {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .hero-buttons .btn {

        width:
            100%;

        text-align:
            center;

    }


    .hero-trust {

        flex-direction:
            column;

        gap:
            10px;

    }


    .hero-preview {

        min-height:
            480px;

    }


    .phone {

        width:
            250px;

        height:
            500px;

    }


    .phone-image {

        height:
            240px;

    }


    .floating-card-1 {

        left:
            0;

        top:
            60px;

    }


    .floating-card-2 {

        right:
            0;

        bottom:
            50px;

    }


    .section {

        padding:
            80px 0;

    }


    .section-heading {

        margin-bottom:
            40px;

    }


    .template-preview {

        height:
            300px;

    }


    .feature-visual {

        min-height:
            350px;

        margin-top:
            30px;

    }


    .visual-card {

        width:
            250px;

        height:
            300px;

    }


    .footer-bottom {

        flex-direction:
            column;

        gap:
            8px;

    }

}


@media (max-width: 400px) {

    .phone {

        width:
            230px;

        height:
            470px;

    }


    .floating-card {

        padding:
            9px 11px;

        font-size:
            9px;

    }

}