:root {
    --romance-cream: #fff8f3;
    --romance-blush: #f5dfda;
    --romance-rose: #bf8580;
    --romance-cocoa: #4f302e;
    --romance-gold: #caa57b;
    --romance-soft: #fffdf9;
    --romance-muted: rgba(79, 48, 46, 0.72);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--romance-cocoa);
    background:
        radial-gradient(circle at top left, rgba(245, 223, 218, 0.95), transparent 28%),
        radial-gradient(circle at top right, rgba(202, 165, 123, 0.2), transparent 22%),
        linear-gradient(180deg, #fffdfb 0%, #fff8f3 48%, #fff6f2 100%);
    overflow-x: hidden;
}

body.is-loaded [data-animate] {
    opacity: 1;
    transform: none;
}

a {
    text-decoration: none;
}

[data-animate] {
    opacity: 0;
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

[data-animate="fade-up"] {
    transform: translateY(34px);
}

[data-animate="fade-left"] {
    transform: translateX(34px);
}

[data-animate="zoom-in"] {
    transform: scale(0.94);
}

.landing-bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
}

.landing-bg-shape-left {
    width: 340px;
    height: 340px;
    top: 30px;
    left: -120px;
    background: radial-gradient(circle, rgba(248, 185, 194, 0.45), rgba(248, 185, 194, 0));
}

.landing-bg-shape-right {
    width: 320px;
    height: 320px;
    top: 420px;
    right: -100px;
    background: radial-gradient(circle, rgba(202, 165, 123, 0.22), rgba(202, 165, 123, 0));
}

.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
}

.landing-navbar .navbar {
    min-height: 88px;
    background: rgba(255, 248, 243, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(89, 57, 54, 0.08);
}

.navbar-brand {
    color: var(--romance-cocoa);
}

.brand-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 30px rgba(95, 63, 60, 0.08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.brand-badge img {
    width: 32px;
    height: 32px;
    display: block;
}

.brand-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: none;
}

.brand-subtitle {
    color: rgba(79, 48, 46, 0.65);
    font-size: 12px;
}

.navbar-nav .nav-link {
    color: rgba(79, 48, 46, 0.76);
    font-weight: 500;
    padding: 12px 16px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--romance-cocoa);
}

.navbar-toggler-icon-custom,
.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 50px;
    background: var(--romance-cocoa);
    transition: all 0.2s ease;
    content: "";
}

.navbar-toggler-icon-custom {
    position: relative;
}

.navbar-toggler-icon-custom::before {
    position: absolute;
    top: -7px;
}

.navbar-toggler-icon-custom::after {
    position: absolute;
    top: 7px;
}

.btn-romance,
.btn-outline-romance {
    border-radius: 999px;
    padding: 0.9rem 1.55rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-romance {
    color: #fff;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #c58c87 0%, #af716c 100%);
    box-shadow: 0 16px 34px rgba(175, 113, 108, 0.26);
}

.btn-romance:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(175, 113, 108, 0.3);
}

.btn-outline-romance {
    color: var(--romance-cocoa);
    border: 1px solid rgba(90, 61, 58, 0.12);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 24px rgba(90, 61, 58, 0.05);
}

.btn-outline-romance:hover {
    color: var(--romance-cocoa);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    padding: 150px 0 80px;
    z-index: 1;
}

.section-pill,
.section-label,
.soft-chip,
.price-badge,
.section-pill-dark {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-pill,
.section-label {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(108, 75, 71, 0.08);
    box-shadow: 0 14px 30px rgba(89, 57, 54, 0.06);
    position: relative;
    overflow: hidden;
}

.section-pill::before,
.section-label::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    margin-right: 0.65rem;
    background: linear-gradient(135deg, #c58c87 0%, #e8c4bf 100%);
    box-shadow: 0 0 0 6px rgba(197, 140, 135, 0.08);
}

.section-pill::after,
.section-label::after {
    content: "";
    position: absolute;
    inset: auto -12% -55% auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.section-pill-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 233, 229, 0.88));
}

.section-label-soft {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 236, 229, 0.88));
}

.section-label-template {
    color: #9e625d;
    background: linear-gradient(135deg, rgba(255, 248, 245, 0.94), rgba(248, 225, 221, 0.86));
}

.section-label-template::before {
    background: linear-gradient(135deg, #c58c87 0%, #edc7c2 100%);
}

.section-label-feature {
    color: #8d6c4f;
    background: linear-gradient(135deg, rgba(255, 251, 244, 0.94), rgba(244, 232, 213, 0.88));
}

.section-label-feature::before {
    background: linear-gradient(135deg, #d1a56f 0%, #f0d7b8 100%);
    box-shadow: 0 0 0 6px rgba(209, 165, 111, 0.08);
}

.section-label-pricing {
    color: #875761;
    background: linear-gradient(135deg, rgba(255, 247, 249, 0.94), rgba(240, 225, 232, 0.88));
}

.section-label-pricing::before {
    background: linear-gradient(135deg, #b67e90 0%, #ecc9d5 100%);
    box-shadow: 0 0 0 6px rgba(182, 126, 144, 0.08);
}

.section-label-review {
    color: #7e6744;
    background: linear-gradient(135deg, rgba(255, 251, 242, 0.94), rgba(247, 235, 206, 0.88));
}

.section-label-review::before {
    background: linear-gradient(135deg, #d4ae65 0%, #f2dfb1 100%);
    box-shadow: 0 0 0 6px rgba(212, 174, 101, 0.08);
}

.section-label-faq {
    color: #6f5a86;
    background: linear-gradient(135deg, rgba(250, 247, 255, 0.94), rgba(231, 224, 245, 0.88));
}

.section-label-faq::before {
    background: linear-gradient(135deg, #9a86bf 0%, #d9d1ee 100%);
    box-shadow: 0 0 0 6px rgba(154, 134, 191, 0.08);
}

.hero-title,
.section-header h2,
.footer-card h2,
.template-card h3,
.feature-card h3,
.price-card h3,
.phone-cover h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.hero-title {
    font-size: clamp(2.35rem, 4.2vw, 4.15rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

.hero-title span {
    color: #b77873;
    display: block;
}

.hero-text,
.section-header p,
.template-card p,
.feature-card p,
.footer-card p {
    color: var(--romance-muted);
    font-size: 0.97rem;
    line-height: 1.8;
}

.mini-stat,
.template-card,
.feature-card,
.price-card,
.quick-banner,
.phone-highlight,
.phone-info-box,
.floating-note {
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 42px rgba(89, 57, 54, 0.07);
}

.mini-stat {
    height: 100%;
    border-radius: 24px;
    padding: 1.25rem 1.1rem;
}

.mini-stat strong {
    display: block;
    font-size: 1.7rem;
}

.mini-stat strong::after {
    content: "+";
    margin-left: 1px;
}

.mini-stat span {
    display: block;
    margin-top: 0.55rem;
    color: var(--romance-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-visual-wrap {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1600px;
}

.floating-note {
    position: absolute;
    max-width: 220px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    backdrop-filter: blur(14px);
    z-index: 2;
    --float-x: 0px;
    --float-y: 0px;
    animation: floatNote 5.5s ease-in-out infinite;
}

.floating-note span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(79, 48, 46, 0.56);
}

.floating-note strong {
    display: block;
    margin-top: 0.5rem;
    color: var(--romance-cocoa);
    line-height: 1.6;
}

.floating-note-top {
    top: 20px;
    left: 10px;
}

.floating-note-bottom {
    right: 10px;
    bottom: 25px;
    animation-delay: 0.9s;
}

.phone-3d {
    position: relative;
    width: 305px;
    border-radius: 48px;
    padding: 14px;
    background: linear-gradient(160deg, rgba(75, 48, 46, 0.98), rgba(23, 12, 12, 0.98));
    box-shadow:
        0 36px 80px rgba(73, 45, 43, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    --float-x: 0px;
    --float-y: 0px;
    transform: rotateY(-18deg) rotateX(10deg);
    animation: phoneBreath 6.5s ease-in-out infinite;
}

.phone-3d::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -18px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(69, 43, 41, 0.3), rgba(69, 43, 41, 0));
    filter: blur(10px);
}

.phone-notch {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 112px;
    height: 20px;
    border-radius: 999px;
    background: rgba(12, 8, 8, 0.85);
    z-index: 3;
}

.phone-screen {
    position: relative;
    overflow: hidden;
    min-height: 548px;
    padding: 64px 18px 18px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top, rgba(255, 245, 241, 0.92), transparent 28%),
        linear-gradient(180deg, #fdf2ee 0%, #fffaf7 62%, #f6e7e1 100%);
}

.phone-cover {
    padding: 26px 20px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(212, 167, 160, 0.28), rgba(255, 255, 255, 0.82)),
        url('../images/bg-auth-overlay.png');
    background-size: cover;
    border: 1px solid rgba(183, 124, 119, 0.14);
}

.phone-cover small,
.phone-cover p,
.phone-highlight span,
.phone-highlight small,
.phone-info-box span {
    color: rgba(79, 48, 46, 0.68);
}

.phone-cover h2 {
    font-size: 2rem;
    margin: 0.4rem 0;
}

.phone-highlight {
    border-radius: 24px;
    padding: 1rem;
    margin-top: 1rem;
}

.phone-highlight strong,
.phone-info-box strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
}

.phone-gallery {
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.phone-gallery-large {
    min-height: 220px;
    background-image:
        linear-gradient(180deg, rgba(245, 211, 206, 0.18), rgba(255, 255, 255, 0.1)),
        url('../images/small/img-2.jpg');
}

.phone-gallery-small {
    min-height: 106px;
    background-image:
        linear-gradient(180deg, rgba(245, 211, 206, 0.9), rgba(255, 255, 255, 0.9)),
        url('../images/small/img-1.jpg');
}

.phone-info-box {
    border-radius: 20px;
    padding: 14px 16px;
}

.quick-banner {
    border-radius: 32px;
    padding: 2rem;
}

.quick-banner h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.18;
    margin: 0.8rem 0 0;
}

.soft-chip,
.price-badge {
    padding: 0.7rem 0.95rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(107, 76, 72, 0.08);
    color: rgba(79, 48, 46, 0.72);
}

.landing-section {
    position: relative;
    padding: 88px 0;
    z-index: 1;
}

.section-soft .container {
    padding: 3rem 1.5rem;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 228, 224, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 20px 80px rgba(120, 80, 75, 0.08);
}

.section-header {
    max-width: 760px;
}

.section-header h2 {
    font-size: clamp(1.95rem, 3.2vw, 3rem);
    line-height: 1.12;
    margin: 1.1rem 0 0;
}

.template-card,
.feature-card,
.price-card {
    border-radius: 30px;
    overflow: hidden;
    padding: 1rem;
}

.template-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.template-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.template-filter,
.template-arrow {
    border: 1px solid rgba(107, 76, 72, 0.1);
    background: rgba(255, 255, 255, 0.85);
    color: var(--romance-cocoa);
    transition: all 0.2s ease;
}

.template-filter {
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.template-filter.is-active,
.template-filter:hover,
.template-arrow:hover {
    background: linear-gradient(135deg, #c58c87 0%, #af716c 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(175, 113, 108, 0.2);
}

.template-slider-actions {
    display: flex;
    gap: 0.75rem;
}

.template-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.template-slider {
    overflow: hidden;
}

.template-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
}

.template-track::-webkit-scrollbar {
    display: none;
}

.template-slide {
    flex: 0 0 min(300px, 82vw);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.template-phone-card {
    height: 100%;
    border-radius: 30px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 42px rgba(89, 57, 54, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.template-slide:hover .template-phone-card {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(89, 57, 54, 0.12);
}

.template-phone-shell {
    position: relative;
    width: 190px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 30px;
    background: linear-gradient(160deg, rgba(75, 48, 46, 0.98), rgba(23, 12, 12, 0.98));
    box-shadow: 0 28px 60px rgba(73, 45, 43, 0.24);
    transform: rotateY(-16deg) rotateX(8deg);
    transition: transform 0.35s ease;
}

.template-slide:hover .template-phone-shell {
    transform: rotateY(-10deg) rotateX(4deg);
}

.template-phone-shell::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -16px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(69, 43, 41, 0.26), rgba(69, 43, 41, 0));
    filter: blur(9px);
}

.template-phone-notch {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 14px;
    border-radius: 999px;
    background: rgba(12, 8, 8, 0.85);
    z-index: 2;
}

.template-phone-screen {
    min-height: 336px;
    border-radius: 22px;
    overflow: hidden;
    padding: 42px 10px 10px;
    background:
        radial-gradient(circle at top, rgba(255, 245, 241, 0.92), transparent 25%),
        linear-gradient(180deg, #fdf2ee 0%, #fffaf7 62%, #f6e7e1 100%);
}

.template-phone-cover {
    min-height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 20px;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.template-phone-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(55, 35, 33, 0.08), rgba(55, 35, 33, 0.62));
}

.template-phone-cover > * {
    position: relative;
    z-index: 1;
}

.template-phone-type {
    display: inline-flex;
    width: fit-content;
    margin-bottom: auto;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.template-phone-cover strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
}

.template-phone-cover small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.88);
}

.template-phone-cover-empty {
    background: linear-gradient(135deg, rgba(214, 124, 80, 0.18), rgba(255, 250, 247, 0.96));
    color: var(--romance-cocoa);
}

.template-phone-cover-empty::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.18));
}

.template-phone-cover-empty small {
    color: rgba(79, 48, 46, 0.7);
}

.template-phone-meta {
    margin-top: 0.75rem;
    padding: 0.75rem 0.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(89, 57, 54, 0.06);
}

.template-phone-meta span,
.template-phone-meta small {
    display: block;
    color: rgba(79, 48, 46, 0.68);
    font-size: 0.7rem;
}

.template-phone-meta strong {
    display: block;
    margin: 0.2rem 0;
    font-size: 0.88rem;
}

.template-phone-thumbs {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0.45rem;
}

.template-phone-thumb {
    min-height: 56px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(245, 211, 206, 0.85), rgba(255, 255, 255, 0.85));
    background-size: cover;
    background-position: center;
}

.template-phone-thumb-large {
    grid-row: span 2;
    min-height: 116px;
    background-image: linear-gradient(180deg, rgba(245, 211, 206, 0.12), rgba(255, 255, 255, 0.06));
}

.template-phone-thumbs-empty .template-phone-thumb {
    border: 1px dashed rgba(184, 141, 136, 0.3);
    background:
        linear-gradient(135deg, rgba(255, 244, 240, 0.95), rgba(247, 227, 221, 0.78));
}

.template-phone-thumb-empty::before {
    content: "Mockup";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(111, 79, 76, 0.5);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.template-card-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.template-card-image-wrap::after {
    content: "";
    position: absolute;
    left: 30%;
    right: -10%;
    bottom: -16%;
    height: 38%;
    background: radial-gradient(circle, rgba(255, 231, 227, 0.62), rgba(255, 231, 227, 0));
}

.template-card-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.template-card-image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--romance-cocoa);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(79, 48, 46, 0.08);
}

.template-card-image-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 0.45rem;
    width: 100%;
    height: 360px;
    padding: 1.4rem;
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(255, 245, 241, 0.96), rgba(244, 223, 216, 0.9)),
        radial-gradient(circle at top right, rgba(201, 137, 127, 0.22), transparent 38%);
    border: 1px dashed rgba(184, 141, 136, 0.32);
    color: var(--romance-cocoa);
}

.template-card-image-placeholder strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.template-card-image-placeholder small {
    color: rgba(79, 48, 46, 0.68);
    line-height: 1.7;
}

.template-card-body {
    padding: 1.4rem 0.6rem 0.5rem;
}

.template-meta-note {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(89, 57, 54, 0.08);
}

.template-meta-note span,
.template-meta-note strong {
    display: block;
}

.template-meta-note span {
    color: rgba(79, 48, 46, 0.58);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.template-meta-note strong {
    margin-top: 0.3rem;
    color: var(--romance-cocoa);
    font-size: 0.98rem;
}

.template-color-dot {
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    margin-right: 0.45rem;
    border-radius: 50%;
    border: 1px solid rgba(79, 48, 46, 0.12);
    vertical-align: middle;
}

.template-empty-state {
    width: 100%;
    padding: 2rem 1.5rem;
    border: 1px dashed rgba(111, 79, 76, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--romance-muted);
    text-align: center;
    line-height: 1.8;
}

.template-card h3,
.feature-card h3,
.price-card h3 {
    margin-bottom: 0;
    font-size: 1.55rem;
}

.template-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    color: #af716c;
}

.template-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.btn-template-primary,
.btn-template-secondary {
    border-radius: 999px;
    padding: 0.78rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.03em;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.btn-template-primary {
    color: #fff;
    background: linear-gradient(135deg, #c58c87 0%, #af716c 100%);
    box-shadow: 0 14px 28px rgba(175, 113, 108, 0.22);
}

.btn-template-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-template-secondary {
    color: var(--romance-cocoa);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(89, 57, 54, 0.1);
    cursor: pointer;
}

.btn-template-secondary:hover {
    color: var(--romance-cocoa);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(89, 57, 54, 0.08);
}

.btn-template-secondary.disabled,
.btn-template-secondary[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.6;
    box-shadow: none;
}

.btn-template-secondary:active,
.btn-template-primary:active {
    transform: translateY(0) scale(0.98);
}

.theme-preview-modal .modal-content {
    border: 0;
    border-radius: 32px;
    overflow: hidden;
    background: #fffaf7;
    box-shadow: 0 28px 90px rgba(77, 49, 47, 0.18);
}

.theme-preview-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 0.72rem;
    opacity: 1;
}

.theme-preview-media {
    height: 100%;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(245, 223, 218, 0.25), rgba(255, 255, 255, 0.08));
}

.theme-preview-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.theme-preview-content {
    padding: 2rem 2rem 1.8rem;
}

.theme-preview-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
    color: var(--romance-cocoa);
}

.theme-preview-meta {
    color: #af716c;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.theme-preview-copy {
    margin-top: 1rem;
    color: var(--romance-muted);
    line-height: 1.85;
}

.theme-preview-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.theme-preview-points div {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(89, 57, 54, 0.08);
}

.theme-preview-points span,
.theme-preview-points strong {
    display: block;
}

.theme-preview-points span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(79, 48, 46, 0.58);
}

.theme-preview-points strong {
    margin-top: 0.35rem;
    font-size: 1rem;
    color: var(--romance-cocoa);
}

.theme-preview-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(111, 79, 76, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(89, 57, 54, 0.05);
    --feature-rotate-x: 0deg;
    --feature-rotate-y: 0deg;
    --feature-glow-x: 50%;
    --feature-glow-y: 50%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    transform: perspective(900px) rotateX(var(--feature-rotate-x)) rotateY(var(--feature-rotate-y));
}

.feature-card::before,
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.feature-card::before {
    background:
        radial-gradient(circle at var(--feature-glow-x) var(--feature-glow-y), rgba(255, 221, 196, 0.32), rgba(255, 221, 196, 0) 52%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card::after {
    inset: -35% auto auto -25%;
    width: 72%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transform: rotate(16deg) translate3d(-140%, 0, 0);
    opacity: 0;
}

.feature-card.is-visible {
    animation: featureCardFloat 5.8s ease-in-out infinite;
    animation-delay: var(--feature-delay, 0s);
}

.feature-card.is-visible::after {
    animation: featureCardShine 4.6s ease-in-out infinite;
    animation-delay: calc(var(--feature-delay, 0s) + 0.4s);
}

.feature-card:hover {
    border-color: rgba(191, 133, 128, 0.22);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 42px rgba(89, 57, 54, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(245, 223, 218, 0.72);
    color: #af716c;
    font-size: 0.8rem;
    font-weight: 700;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(89, 57, 54, 0.08);
    color: rgba(79, 48, 46, 0.64);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.feature-card-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

.feature-card h3 {
    font-size: 1.12rem;
    line-height: 1.35;
    transition: color 0.35s ease, transform 0.35s ease;
}

.feature-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.75;
    transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.04);
    background: linear-gradient(135deg, rgba(245, 223, 218, 0.98), rgba(255, 240, 224, 0.95));
    color: #9d625d;
    box-shadow: 0 12px 24px rgba(175, 113, 108, 0.16);
}

.feature-card:hover .feature-index {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.96);
    color: #9d625d;
    box-shadow: 0 10px 20px rgba(89, 57, 54, 0.08);
}

.feature-card:hover h3 {
    color: #a86964;
    transform: translateX(2px);
}

.feature-card:hover p {
    transform: translateY(-1px);
}

.price-card {
    position: relative;
    overflow: hidden;
    padding: 1.7rem;
    --card-rotate-x: 0deg;
    --card-rotate-y: 0deg;
    --card-glow-x: 50%;
    --card-glow-y: 50%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    animation: priceFloat 5.8s ease-in-out infinite;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(197, 140, 135, 0.22), rgba(197, 140, 135, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.price-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 55%;
    height: 260%;
    transform: rotate(16deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
    opacity: 0;
    pointer-events: none;
}

.price-card-featured {
    background:
        linear-gradient(180deg, rgba(193, 131, 124, 0.1), rgba(255, 255, 255, 0.92)),
        rgba(255, 255, 255, 0.92);
    border-color: rgba(175, 113, 108, 0.24);
    box-shadow: 0 24px 54px rgba(175, 113, 108, 0.16);
    transform: translateY(-6px);
}

.price-card:hover {
    transform: perspective(1000px) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y)) translateY(-8px);
    box-shadow: 0 24px 52px rgba(89, 57, 54, 0.12);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card:hover::after {
    opacity: 1;
    animation: priceShine 0.95s ease;
}

.price-card:nth-child(2) {
    animation-delay: 0.4s;
}

.price-card:nth-child(3) {
    animation-delay: 0.8s;
}

.price-value {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    margin-top: 1.4rem;
}

.price-value strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.65rem;
    line-height: 1;
}

.price-value span {
    color: rgba(79, 48, 46, 0.66);
    margin-bottom: 0.35rem;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 1.8rem;
}

.price-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--romance-muted);
    line-height: 1.75;
}

.price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c58c87;
}

.landing-footer {
    padding: 24px 0 34px;
}

.wa-float {
    position: fixed;
    right: 22px;
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 1050;
    width: 64px;
    height: 64px;
    display: block;
}

.wa-float-ripple {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.22);
    animation: waRipple 2.3s ease-out infinite;
}

.wa-float-label {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(79, 48, 46, 0.92);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 34px rgba(52, 31, 30, 0.18);
    white-space: nowrap;
}

.wa-float-button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #19b857 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.wa-float-button svg {
    width: 30px;
    height: 30px;
}

.wa-float:hover .wa-float-button {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 42px rgba(37, 211, 102, 0.4);
}

.wa-float:hover .wa-float-label {
    background: rgba(63, 38, 37, 0.98);
}

.testimonial-card {
    height: 100%;
    border-radius: 30px;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(89, 57, 54, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(89, 57, 54, 0.11);
}

.testimonial-stars {
    color: var(--romance-gold);
    letter-spacing: 0.18em;
    font-size: 1rem;
}

.testimonial-card p {
    margin: 1rem 0 1.25rem;
    color: var(--romance-muted);
    line-height: 1.85;
    font-size: 0.95rem;
}

.testimonial-user strong,
.testimonial-user span {
    display: block;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(89, 57, 54, 0.1);
}

.testimonial-user strong {
    font-size: 1rem;
}

.testimonial-user span {
    color: rgba(79, 48, 46, 0.66);
    font-size: 0.88rem;
    margin-top: 0.2rem;
}

.faq-wrap {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(89, 57, 54, 0.07);
}

.faq-item .accordion-button {
    background: transparent;
    color: var(--romance-cocoa);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.3rem 1.5rem;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(247, 235, 244, 0.7), rgba(255, 255, 255, 0.88));
    color: var(--romance-cocoa);
}

.faq-item .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
    filter: sepia(22%) saturate(90%) hue-rotate(295deg);
}

.faq-item .accordion-body {
    padding: 0 1.5rem 1.35rem;
    color: var(--romance-muted);
    font-size: 0.96rem;
    line-height: 1.85;
}

.footer-card {
    border-radius: 32px;
    padding: 2.2rem;
    background: #4d312f;
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 24px 90px rgba(68, 39, 37, 0.18);
}

.section-pill-dark {
    padding: 0.75rem 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 249, 247, 0.92);
}

.section-pill-brand {
    gap: 0.65rem;
    padding-right: 1.15rem;
}

.section-pill-brand::before {
    display: none;
}

.section-pill-brand img {
    width: 26px;
    height: 26px;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    padding: 0.15rem;
}

.footer-card h2 {
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.12;
}

.footer-title {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 1.8rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.95rem;
}

@keyframes floatNote {
    0%,
    100% {
        transform: translate3d(var(--float-x), var(--float-y), 0) translateY(0);
    }
    50% {
        transform: translate3d(var(--float-x), var(--float-y), 0) translateY(-10px);
    }
}

@keyframes phoneBreath {
    0%,
    100% {
        transform: translate3d(var(--float-x), var(--float-y), 0) rotateY(-18deg) rotateX(10deg) translateY(0);
    }
    50% {
        transform: translate3d(var(--float-x), var(--float-y), 0) rotateY(-16deg) rotateX(9deg) translateY(-8px);
    }
}

@keyframes featureCardFloat {
    0%,
    100% {
        transform: perspective(900px) rotateX(var(--feature-rotate-x)) rotateY(var(--feature-rotate-y)) translateY(0);
    }
    50% {
        transform: perspective(900px) rotateX(var(--feature-rotate-x)) rotateY(var(--feature-rotate-y)) translateY(-8px);
    }
}

@keyframes featureCardShine {
    0%,
    100% {
        transform: rotate(16deg) translate3d(-140%, 0, 0);
        opacity: 0;
    }
    18% {
        opacity: 0.18;
    }
    55% {
        transform: rotate(16deg) translate3d(240%, 0, 0);
        opacity: 0.4;
    }
    70% {
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .landing-navbar .navbar {
        background: rgba(255, 248, 243, 0.92);
        backdrop-filter: blur(16px);
        box-shadow: 0 12px 32px rgba(89, 57, 54, 0.06);
        min-height: 78px;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem 0 0.25rem;
        border-top: 1px solid rgba(79, 48, 46, 0.08);
    }

    .hero-section {
        padding-top: 132px;
    }

    .hero-visual-wrap {
        min-height: 520px;
    }

    .phone-3d {
        transform: rotateY(-10deg) rotateX(7deg);
        animation: phoneBreathTablet 6.5s ease-in-out infinite;
    }
}

@media (max-width: 767.98px) {
    .landing-navbar,
    .landing-navbar .navbar,
    .wa-float,
    .wa-float-ripple,
    .wa-float-label,
    .wa-float-button {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .feature-card,
    .feature-card:hover,
    .feature-card.is-visible {
        animation: none !important;
        transform: none !important;
    }

    .feature-card::before,
    .feature-card::after {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.1rem, 12vw, 3rem);
        line-height: 1.04;
    }

    .hero-visual-wrap {
        min-height: 330px;
        padding-top: 0.25rem;
        align-items: flex-start;
    }

    .phone-3d {
        width: 242px;
        padding: 9px;
        border-radius: 28px;
        transform: none;
        animation: phoneBreathMobile 6s ease-in-out infinite;
    }

    .phone-notch {
        top: 9px;
        width: 74px;
        height: 12px;
    }

    .phone-screen {
        min-height: 340px;
        padding: 40px 10px 10px;
        border-radius: 22px;
    }

    .phone-cover {
        padding: 14px 12px;
        border-radius: 18px;
    }

    .phone-cover h2 {
        font-size: 1.2rem;
        line-height: 1.1;
    }

    .phone-cover p,
    .phone-cover small,
    .phone-highlight span,
    .phone-highlight small,
    .phone-info-box span {
        font-size: 0.66rem;
    }

    .phone-highlight {
        border-radius: 16px;
        padding: 0.65rem 0.7rem;
        margin-top: 0.65rem;
    }

    .phone-highlight strong,
    .phone-info-box strong {
        font-size: 0.8rem;
    }

    .phone-gallery-large {
        min-height: 122px;
    }

    .phone-gallery-small {
        min-height: 58px;
    }

    .phone-info-box {
        border-radius: 14px;
        padding: 9px 10px;
    }

    .floating-note {
        max-width: 118px;
        padding: 0.6rem 0.65rem;
        border-radius: 16px;
    }

    .floating-note span {
        font-size: 0.52rem;
    }

    .floating-note strong {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .floating-note-top {
        top: 8px;
        left: 2px;
    }

    .floating-note-bottom {
        right: 2px;
        bottom: 16px;
    }

    .quick-banner,
    .footer-card,
    .section-soft .container {
        padding: 1.6rem;
    }

    .landing-footer {
        padding: 10px 0 86px;
    }

    .footer-card {
        border-radius: 24px;
        padding: 1.35rem;
    }

    .footer-card h2 {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-top: 1rem !important;
    }

    .footer-card p {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .footer-title {
        margin-bottom: 0.8rem;
        font-size: 0.75rem;
        letter-spacing: 0.14em;
    }

    .footer-links li {
        margin-bottom: 0.55rem;
    }

    .footer-links a,
    .footer-links span {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .footer-bottom {
        margin-top: 1.1rem;
        padding-top: 1rem;
        font-size: 0.84rem;
        line-height: 1.6;
        text-align: center;
    }

    .template-card-image {
        height: 300px;
    }

    .template-actions {
        grid-template-columns: 1fr;
    }

    .theme-preview-media img {
        min-height: 280px;
    }

    .theme-preview-content {
        padding: 1.35rem;
    }

    .theme-preview-content h3 {
        font-size: 1.6rem;
    }

    .theme-preview-actions {
        flex-direction: column;
    }

    .template-slide {
        flex-basis: min(268px, 80vw);
    }

    .template-phone-shell {
        width: 176px;
        transform: none;
    }
}

@keyframes phoneBreathTablet {
    0%,
    100% {
        transform: translate3d(var(--float-x), var(--float-y), 0) rotateY(-10deg) rotateX(7deg) translateY(0);
    }
    50% {
        transform: translate3d(var(--float-x), var(--float-y), 0) rotateY(-8deg) rotateX(6deg) translateY(-7px);
    }
}

@keyframes phoneBreathMobile {
    0%,
    100% {
        transform: translate3d(var(--float-x), var(--float-y), 0) translateY(0);
    }
    50% {
        transform: translate3d(var(--float-x), var(--float-y), 0) translateY(-7px);
    }
}

@keyframes priceFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes priceShine {
    0% {
        transform: translateX(-180%) rotate(16deg);
    }
    100% {
        transform: translateX(320%) rotate(16deg);
    }
}

@keyframes waRipple {
    0% {
        transform: scale(0.82);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 767.98px) {
    .wa-float {
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
    }

    .wa-float-label {
        display: none;
    }

    .wa-float-button {
        width: 58px;
        height: 58px;
    }

    .wa-float-ripple {
        width: 52px;
        height: 52px;
        right: 3px;
        bottom: 3px;
        opacity: 0.35;
    }

    .price-card,
    .price-card:nth-child(2),
    .price-card:nth-child(3) {
        animation: none;
    }
}
