@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --pink-1: #D67EA8;
    /* Darkened from #F0A8D0 for contrast */
    --pink-2: #E08CA3;
    /* Darkened from #F7B5CA for contrast */
    --pink-3: #C28282;
    /* Darkened from #FFC6C6 for contrast */
    --pink-4: #FFEBD4;
    --bg-color: #fff8f6;
    --text-color: #1a1a2e;
    --text-muted: #5a4b5d;
    /* Darkened from #6b5b6e for contrast */
    --white: #ffffff;
    --shadow-soft: 0 8px 32px rgba(240, 168, 208, 0.25);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
    --radius-pill: 100px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(150deg, #fff8f6 0%, var(--pink-4) 35%, var(--pink-3) 65%, var(--pink-2) 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 248, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 168, 208, 0.2);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-1);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.55rem 1.4rem;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(240, 168, 208, 0.45);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 168, 208, 0.55);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 248, 246, 0.98);
        backdrop-filter: blur(10px);
        padding-top: 100px;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
    }

    /* Hamburger active animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
    display: flex;
    align-items: stretch;
    height: 100vh;
    min-height: 0;
    padding: 72px 0 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    gap: 0;
}

/* Decorations */
.deco-star {
    position: absolute;
    bottom: 10%;
    right: 30px;
    width: 32px;
    height: 32px;
    opacity: 0.6;
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.deco-line {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 200px;
    height: 80px;
    z-index: -1;
    opacity: 0.4;
}

/* Eyebrow badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240, 168, 208, 0.18);
    border: 1px solid rgba(240, 168, 208, 0.5);
    color: #c9538f;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    width: fit-content;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #e05f9a;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
}

.hero-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.hero-description strong {
    color: var(--text-color);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 50%;
    margin-top: 1px;
}

/* Pill Images */
.pill-images {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    margin-top: 0.9rem;
}

.pill-images img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.pill-images img:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: var(--shadow-soft);
}

/* Buy Now Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1rem 2.6rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 6px 24px rgba(212, 88, 154, 0.4);
    transition: var(--transition);
    width: fit-content;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

/* Shine sweep effect */
.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    40% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
    border-radius: inherit;
    pointer-events: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 88, 154, 0.5);
}

.cta-btn:active {
    transform: translateY(-1px);
}

.cta-arrow {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Availability text below button */
.cta-availability {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.cta-availability .avail-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: #4caf7d;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(76, 175, 125, 0.25);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(76, 175, 125, 0.25);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(76, 175, 125, 0.1);
    }
}


.lines {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.line {
    width: 28px;
    height: 2px;
    background-color: rgba(240, 168, 208, 0.35);
    border-radius: 2px;
    transition: var(--transition);
}

.line.active {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
}

/* ─── Hero Right ─────────────────────────────────────────── */
.hero-right {
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 85%;
    object-fit: cover;
    border-radius: 50vw 0 0 50vw;
    box-shadow: -20px 0 60px rgba(240, 168, 208, 0.3);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .pill-images img {
        width: 85px;
        height: 58px;
    }

    .main-image {
        border-radius: 40vw 0 0 40vw;
        display: none;
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100svh;
        padding: 72px 5% 2rem;
    }

    .hero-left {
        max-width: 100%;
        padding-right: 0;
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .hero-right {
        width: 100%;
        height: 35vh;
        /* Reduced height for portrait / mobile mode too */
        justify-content: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .main-image {
        border-radius: 300px 300px 0 0;
        height: 100%;
    }
}


/* ═══════════════════════════════════════════════════════════
   SPECS SECTION
═══════════════════════════════════════════════════════════ */

.specs-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(170deg, #fff8f6 0%, var(--pink-4) 50%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.specs-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 168, 208, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.specs-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 198, 198, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Eyebrow tag ────────────────────────────────────────── */
.specs-eyebrow {
    text-align: center;
    margin-bottom: 1rem;
}

.specs-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
}

/* ── Section header ─────────────────────────────────────── */
.specs-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.specs-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.specs-highlight {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specs-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Main grid ──────────────────────────────────────────── */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Left column ─────────────────────────────────────────── */
.specs-image-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}

/* Image frame */
.specs-img-frame {
    position: relative;
    width: 100%;
    flex: 1;
    border-radius: 32px;
    background: linear-gradient(145deg, #fff0f6, var(--pink-4));
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    box-shadow:
        0 20px 60px rgba(240, 168, 208, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specs-device-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 32px;
}

/* Placeholder (shown when image not yet uploaded) */
.specs-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.specs-img-placeholder p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.specs-img-placeholder span {
    font-size: 0.78rem;
    opacity: 0.65;
}

.specs-img-placeholder code {
    background: rgba(240, 168, 208, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #c9538f;
}



.badge-top {
    top: 20px;
    left: -16px;
}

.badge-bottom {
    bottom: 24px;
    right: -16px;
}

.badge-icon {
    font-size: 1rem;
}

/* ── Color swatches ─────────────────────────────────────── */
.specs-colors {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(240, 168, 208, 0.2);
    border-radius: 20px;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 4px 20px rgba(240, 168, 208, 0.1);
}

.color-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.color-swatches {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.9rem;
}

.swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.swatch-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--sw);
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 0 0 1.5px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.swatch-circle.swatch-light {
    box-shadow:
        0 0 0 1.5px rgba(0, 0, 0, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.08);
}

.swatch:hover .swatch-circle {
    transform: scale(1.18);
    box-shadow:
        0 0 0 2.5px var(--sw),
        0 6px 16px rgba(0, 0, 0, 0.14);
}

.swatch span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.color-note {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.8;
}

/* ── Right column — spec cards ───────────────────────────── */
.specs-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(240, 168, 208, 0.18);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(240, 168, 208, 0.08);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--pink-1), var(--pink-2));
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateX(4px);
    border-color: rgba(240, 168, 208, 0.45);
    box-shadow: 0 6px 24px rgba(240, 168, 208, 0.18);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.18), rgba(247, 181, 202, 0.12));
    color: #c9538f;
    border: 1px solid rgba(240, 168, 208, 0.25);
}

.spec-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.spec-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: 0.8;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.spec-pill {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    background: rgba(240, 168, 208, 0.18);
    color: #c9538f;
    border: 1px solid rgba(240, 168, 208, 0.35);
    letter-spacing: 0.3px;
}

.spec-pill-green {
    background: rgba(76, 175, 125, 0.12);
    color: #2e8b57;
    border-color: rgba(76, 175, 125, 0.3);
}

/* ── CTA block ──────────────────────────────────────────── */
.specs-cta-block {
    background: linear-gradient(135deg, #fff0f7, var(--pink-4));
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    border-radius: 20px;
    padding: 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 8px 32px rgba(240, 168, 208, 0.15);
}

.specs-cta-icon {
    font-size: 1.4rem;
    color: var(--pink-1);
    line-height: 1;
}

.specs-cta-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.specs-cta-text strong {
    color: var(--text-color);
    font-weight: 700;
}

.specs-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 6px 20px rgba(212, 88, 154, 0.38);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.specs-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

.specs-buy-btn span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.specs-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 88, 154, 0.48);
}

.specs-buy-btn:hover span {
    transform: translateX(4px);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .specs-section {
        padding: 3rem 5% 2.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .specs-image-col {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .specs-img-frame {
        min-height: 260px;
    }

    .badge-top {
        left: 8px;
    }

    .badge-bottom {
        right: 8px;
    }
}

@media (max-width: 520px) {
    .specs-title {
        font-size: 1.75rem;
    }

    .spec-card {
        padding: 0.85rem 1rem;
    }

    .specs-cta-block {
        padding: 1.3rem 1.4rem;
    }

    .specs-float-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem 0.4rem 0.5rem;
    }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT OVERVIEW SECTION
═══════════════════════════════════════════════════════════ */

.overview-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(160deg, #fff4f8 0%, #fff8f6 40%, var(--pink-4) 100%);
    position: relative;
    overflow: hidden;
}

.ov-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ov-blob-1 {
    width: 500px;
    height: 500px;
    top: -160px;
    left: -160px;
    background: radial-gradient(circle, rgba(247, 181, 202, 0.2) 0%, transparent 70%);
}

.ov-blob-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(240, 168, 208, 0.18) 0%, transparent 70%);
}

.overview-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── LEFT — image column ────────────────────────────────── */
.ov-image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ov-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Reduced height from 3/4 */
    border-radius: 40px 40px 40px 12px;
    background: linear-gradient(145deg, #fff0f6, var(--pink-4));
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    box-shadow:
        0 24px 70px rgba(240, 168, 208, 0.22),
        0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ov-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px 40px 40px 12px;
}

.ov-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.ov-img-placeholder p {
    font-size: 0.88rem;
    line-height: 1.6;
}

.ov-img-placeholder span {
    font-size: 0.75rem;
    opacity: 0.65;
}

.ov-img-placeholder code {
    background: rgba(240, 168, 208, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.72rem;
    color: #c9538f;
}

/* Result badge */
.ov-result-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 16px;
    padding: 0.7rem 1.1rem 0.7rem 0.7rem;
    box-shadow: 0 8px 28px rgba(240, 168, 208, 0.22);
    z-index: 2;
}

.ov-result-ring {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ov-result-ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin-slow 12s linear infinite;
}

.ov-result-pct {
    font-size: 0.72rem;
    font-weight: 800;
    color: #c9538f;
    position: relative;
    z-index: 1;
}

.ov-result-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ov-result-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.ov-result-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Quote card */
.ov-quote-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.12), rgba(255, 235, 212, 0.2));
    border: 1.5px solid rgba(240, 168, 208, 0.25);
    border-radius: 20px;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 4px 18px rgba(240, 168, 208, 0.1);
}

.ov-quote-mark {
    font-size: 3.5rem;
    line-height: 0.7;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    margin-top: 4px;
}

.ov-quote-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ov-quote-card p strong {
    color: var(--text-color);
    font-weight: 800;
}

/* ── RIGHT — content column ─────────────────────────────── */
.ov-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.ov-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9538f;
}

.ov-eyebrow-line {
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, var(--pink-1), transparent);
    border-radius: 2px;
}

.ov-eyebrow-line:last-child {
    background: linear-gradient(270deg, var(--pink-1), transparent);
}

.ov-title {
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
}

.ov-highlight {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ov-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.ov-body em {
    font-style: normal;
    color: var(--text-color);
    font-weight: 600;
}

/* Features */
.ov-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ov-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(240, 168, 208, 0.15);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(240, 168, 208, 0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ov-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-3), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ov-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 168, 208, 0.4);
    box-shadow: 0 8px 28px rgba(240, 168, 208, 0.16);
}

.ov-feature:hover::after {
    transform: scaleX(1);
}

.ov-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.2), rgba(255, 198, 198, 0.15));
    color: #c9538f;
    border: 1px solid rgba(240, 168, 208, 0.3);
}

.ov-feature-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ov-feature-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.ov-feature-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA row */
.ov-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.ov-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 6px 22px rgba(212, 88, 154, 0.38);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.ov-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

.ov-btn-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.ov-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 88, 154, 0.48);
}

.ov-buy-btn:hover .ov-btn-arrow {
    transform: translateX(5px);
}

.ov-trust {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.ov-trust-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ov-trust-sep {
    color: rgba(240, 168, 208, 0.6);
    font-size: 1rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .overview-section {
        padding: 3rem 5% 2.5rem;
    }

    .overview-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ov-image-col {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }

    .ov-img-frame {
        aspect-ratio: 4 / 3;
    }

    .ov-result-badge {
        right: 12px;
        bottom: 16px;
    }
}

@media (max-width: 520px) {
    .ov-title {
        font-size: 1.7rem;
    }

    .ov-feature {
        padding: 0.9rem 1rem;
    }

    .ov-quote-card {
        padding: 1rem 1.2rem;
    }
}

/* 
   KEY FEATURES SECTION
 */

.features-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(155deg, #fff8f6 0%, var(--pink-3) 50%, var(--pink-4) 100%);
    position: relative;
    overflow: hidden;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.features-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.features-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-color);
    margin-bottom: 0.9rem;
}

.features-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.feat-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feat-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(240, 168, 208, 0.18);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(240, 168, 208, 0.08);
    position: relative;
    overflow: hidden;
    flex: 1;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
    opacity: 0;
    transition: var(--transition);
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 168, 208, 0.45);
    box-shadow: 0 10px 28px rgba(240, 168, 208, 0.18);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-card-flip {
    flex-direction: row-reverse;
}

.feat-card-flip .feat-card-text {
    text-align: right;
}

.feat-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(240, 168, 208, 0.15);
    color: #c9538f;
    border: 1px solid rgba(240, 168, 208, 0.3);
    flex-shrink: 0;
}

.feat-card-text h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.feat-card-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.feat-image-col {
    width: 280px;
    flex-shrink: 0;
}

.feat-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 50% 50% 40px 40px;
    background: linear-gradient(160deg, #fff0f6, var(--pink-3));
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    box-shadow: 0 0 0 8px rgba(240, 168, 208, 0.08), 0 24px 60px rgba(240, 168, 208, 0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feat-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
}

.feat-img-placeholder p {
    font-size: 0.82rem;
    line-height: 1.5;
}

.feat-img-placeholder span {
    font-size: 0.72rem;
    opacity: 0.65;
}

.feat-float-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(240, 168, 208, 0.2);
}

.feat-trigger-card {
    background: linear-gradient(135deg, #fff0f7 0%, var(--pink-4) 100%);
    border: 1.5px solid rgba(240, 168, 208, 0.35);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    box-shadow: 0 6px 24px rgba(240, 168, 208, 0.15);
    flex: 1;
}

.feat-trigger-icon {
    font-size: 1.2rem;
    color: var(--pink-1);
}

.feat-trigger-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.feat-trigger-card p strong {
    color: var(--text-color);
}

.feat-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 4px 14px rgba(212, 88, 154, 0.35);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.feat-trigger-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

.feat-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 88, 154, 0.45);
}

@media (max-width: 960px) {
    .features-section {
        padding: 3rem 5% 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feat-image-col {
        width: 220px;
        margin: 0 auto;
    }

    .feat-card-flip {
        flex-direction: row;
    }

    .feat-card-flip .feat-card-text {
        text-align: left;
    }
}


/* 
   BUILD QUALITY SECTION
 */

.build-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(150deg, var(--pink-4) 0%, #fff8f6 45%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
}

.build-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.build-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.build-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9538f;
}

.build-title {
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
}

.build-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.build-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.build-specs {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(240, 168, 208, 0.18);
    box-shadow: 0 4px 20px rgba(240, 168, 208, 0.09);
}

.build-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.3rem;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(240, 168, 208, 0.12);
}

.build-spec-item:last-child {
    border-bottom: none;
}

.build-spec-item:hover {
    background: rgba(255, 255, 255, 0.95);
    padding-left: 1.6rem;
}

.build-spec-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    border-radius: 50%;
    margin-top: 5px;
}

.build-spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.build-spec-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.build-spec-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.build-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.build-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 6px 22px rgba(212, 88, 154, 0.38);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.build-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

.build-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.build-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 88, 154, 0.48);
}

.build-buy-btn:hover .build-arrow {
    transform: translateX(5px);
}

.build-trigger {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.85;
}

.build-image-col {
    display: flex;
    justify-content: center;
}

.build-img-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.build-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px 40px 40px 40px;
    background: linear-gradient(145deg, #fff0f6, var(--pink-3));
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    box-shadow: 0 24px 70px rgba(240, 168, 208, 0.22), 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.build-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.build-img-placeholder p {
    font-size: 0.88rem;
    line-height: 1.6;
}

.build-img-placeholder span {
    font-size: 0.75rem;
    opacity: 0.65;
}

.build-quality-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 14px;
    padding: 0.6rem 1rem;
    box-shadow: 0 6px 22px rgba(240, 168, 208, 0.2);
}

.bq-icon {
    font-size: 1.4rem;
}

.bq-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.bq-text strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.bq-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.build-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c9538f;
    box-shadow: 0 4px 12px rgba(240, 168, 208, 0.15);
}

.build-tag-1 {
    bottom: 80px;
    left: -24px;
}

.build-tag-2 {
    bottom: 36px;
    right: -16px;
}

@media (max-width: 960px) {
    .build-section {
        padding: 3rem 5% 2.5rem;
    }

    .build-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .build-image-col {
        order: -1;
    }

    .build-img-wrap {
        max-width: 360px;
        margin: 0 auto;
    }

    .build-quality-badge {
        left: 10px;
    }

    .build-tag-1 {
        left: 4px;
    }

    .build-tag-2 {
        right: 4px;
    }
}

@media (max-width: 520px) {
    .build-title {
        font-size: 1.7rem;
    }

    .build-spec-item {
        padding: 0.85rem 1.1rem;
    }

    .build-spec-item:hover {
        padding-left: 1.3rem;
    }
}

/* 
   BEFORE & AFTER RESULTS SECTION
 */

.results-section {
    padding: 4.5rem 6% 4rem;
    background: linear-gradient(170deg, #fff4f8 0%, #fffbfd 100%);
    position: relative;
    overflow: hidden;
}

.results-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.results-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.results-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.results-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.results-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Transformation Card */
.result-card {
    background: #fff;
    border-radius: 32px;
    padding: 1.2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(240, 168, 208, 0.15);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(240, 168, 208, 0.15);
}

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    height: 300px;
}

.result-img-slot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fdf2f6;
    height: 100%;
}

.result-img-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.result-card:hover .result-img-slot img {
    transform: scale(1.05);
}

/* Image Label Overlay */
.img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.result-img-slot.after .img-label {
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    left: auto;
    right: 12px;
}

/* Placeholder State */
.result-img-slot.is-empty::before {
    content: "IMAGE SLOT";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #F0A8D0;
    border: 2px dashed rgba(240, 168, 208, 0.3);
    margin: 10px;
    border-radius: 12px;
}

/* Info Section */
.result-info {
    padding: 0.5rem;
}

.result-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(240, 168, 208, 0.1);
    color: #c9538f;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.result-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.result-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Footer CTA */
.results-footer {
    display: flex;
    justify-content: center;
}

.results-trigger-box {
    background: linear-gradient(145deg, #fff, #fff0f7);
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 1.5px solid rgba(240, 168, 208, 0.25);
    box-shadow: 0 15px 45px rgba(240, 168, 208, 0.12);
    max-width: 700px;
    width: 100%;
}

.results-trigger-box p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.results-trigger-box p span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.results-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(212, 88, 154, 0.4);
    transition: var(--transition);
}

.results-buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 88, 154, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .result-images {
        height: 240px;
    }

    .results-title {
        font-size: 2rem;
    }

    .results-trigger-box {
        padding: 2rem 1.5rem;
    }
}


/* 
   HOW IT WORKS SECTION
 */
.hiw-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(160deg, var(--pink-4) 0%, #fff8f6 50%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
}

.hiw-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hiw-header {
    margin-bottom: 2rem;
    max-width: 660px;
}

.hiw-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.hiw-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.hiw-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiw-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.1rem 1rem;
    position: relative;
    border-left: 2px solid rgba(240, 168, 208, 0.18);
    margin-left: 18px;
    padding-left: 1.4rem;
    transition: var(--transition);
}

.hiw-step:hover {
    border-left-color: var(--pink-1);
}

.hiw-step:hover .hiw-step-num {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    color: #fff;
}

.hiw-step-num {
    position: absolute;
    left: -22px;
    top: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(240, 168, 208, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #c9538f;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(240, 168, 208, 0.15);
}

.hiw-step-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.hiw-step-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hiw-result-strip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.12), rgba(255, 235, 212, 0.18));
    border: 1.5px solid rgba(240, 168, 208, 0.25);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-left: 18px;
    margin-top: 0.8rem;
}

.hiw-result-icon {
    font-size: 1rem;
    color: var(--pink-1);
    flex-shrink: 0;
}

.hiw-trigger {
    margin-left: 18px;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.hiw-trigger p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.hiw-trigger p strong {
    color: var(--text-color);
    font-style: normal;
}

.hiw-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 6px 20px rgba(212, 88, 154, 0.38);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.hiw-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

.hiw-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 88, 154, 0.48);
}

.hiw-buy-btn span {
    transition: transform 0.3s;
    display: inline-block;
}

.hiw-buy-btn:hover span {
    transform: translateX(4px);
}

/* HIW image */
.hiw-image-col {
    display: flex;
    justify-content: center;
}

.hiw-img-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 12px 40px 40px 40px;
    background: linear-gradient(145deg, #fff0f6, var(--pink-4));
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    box-shadow: 0 24px 70px rgba(240, 168, 208, 0.22), 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-device-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px 40px 40px 40px;
}

.hiw-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: inherit;
}

.hiw-depth-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 14px;
    padding: 0.6rem 1.1rem;
    box-shadow: 0 6px 22px rgba(240, 168, 208, 0.2);
    white-space: nowrap;
}

.hiw-depth-icon {
    font-size: 1.3rem;
}

.hiw-depth-text {
    display: flex;
    flex-direction: column;
}

.hiw-depth-text strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.hiw-depth-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .hiw-section {
        padding: 3rem 5% 2.5rem;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hiw-image-col {
        order: -1;
    }

    .hiw-img-frame {
        max-width: 340px;
        margin: 0 auto;
    }
}


/* 
   THE SCIENCE SECTION
 */
.science-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(170deg, #fff8f6 0%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
}

.science-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.science-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.science-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.science-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
}

.science-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.science-body-text {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.science-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.sci-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(240, 168, 208, 0.18);
    border-radius: 24px;
    padding: 2rem 1.6rem;
    box-shadow: 0 4px 20px rgba(240, 168, 208, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sci-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sci-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(240, 168, 208, 0.18);
}

.sci-card:hover::after {
    transform: scaleX(1);
}

.sci-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.2), rgba(255, 198, 198, 0.15));
    border: 1px solid rgba(240, 168, 208, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9538f;
}

.sci-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.6rem;
}

.sci-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.science-result {
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.08), rgba(255, 235, 212, 0.15));
    border: 1.5px solid rgba(240, 168, 208, 0.25);
    border-radius: 28px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    box-shadow: 0 8px 30px rgba(240, 168, 208, 0.1);
}

.science-result-text {
    flex: 1;
    min-width: 280px;
}

.science-result-hl {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.5;
}

.science-trigger {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex-shrink: 0;
}

.science-trigger p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.science-trigger p strong {
    color: var(--text-color);
    font-style: normal;
}

/* ─── Floating Mobile Buy Button ───────────────────────── */
.floating-buy-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(201, 83, 143, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: none;
}

.floating-buy-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 83, 143, 0.6);
}

@media (max-width: 768px) {
    .floating-buy-btn {
        display: block;
        /* Shown only on mobile screens when JS adds .show */
    }
}


.science-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 6px 20px rgba(212, 88, 154, 0.38);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.science-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

.science-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 88, 154, 0.48);
}

.science-buy-btn span {
    transition: transform 0.3s;
    display: inline-block;
}

.science-buy-btn:hover span {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .science-section {
        padding: 3rem 5% 2.5rem;
    }

    .science-cards {
        grid-template-columns: 1fr;
    }

    .science-result {
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
}


/* 
   HOW TO USE SECTION
 */
.usage-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(155deg, #fff8f6 0%, var(--pink-4) 50%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
}

.usage-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.usage-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 2rem;
}

.usage-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.usage-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 0.9rem;
}

.usage-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usage-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.usage-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.usage-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 16px;
    transition: var(--transition);
}

.usage-step:hover {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(240, 168, 208, 0.1);
}

.usage-step-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.2), rgba(255, 198, 198, 0.15));
    border: 2px solid rgba(240, 168, 208, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9538f;
    flex-shrink: 0;
    transition: var(--transition);
}

.usage-step:hover .usage-step-circle {
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(240, 168, 208, 0.4);
}

.usage-step-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.usage-step-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c9538f;
}

.usage-step-content h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-color);
}

.usage-step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.usage-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 0.8rem 1rem;
    opacity: 0.75;
    border-left: 2px solid rgba(240, 168, 208, 0.4);
    margin-left: 1rem;
    margin-top: 0.5rem;
}

/* Usage image column */
.usage-image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usage-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 40px 12px 40px 40px;
    background: linear-gradient(145deg, #fff0f6, var(--pink-3));
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    box-shadow: 0 24px 70px rgba(240, 168, 208, 0.22), 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usage-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.usage-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usage-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 14px;
    padding: 0.7rem 1rem;
    box-shadow: 0 4px 16px rgba(240, 168, 208, 0.2);
    line-height: 1.2;
}

.usage-badge strong {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usage-badge span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

.usage-trigger-card {
    background: linear-gradient(135deg, #fff0f7 0%, var(--pink-4) 100%);
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    border-radius: 20px;
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 6px 24px rgba(240, 168, 208, 0.12);
}

.usage-trigger-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

.usage-trigger-text strong {
    color: var(--text-color);
    font-style: normal;
}

.usage-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 6px 20px rgba(212, 88, 154, 0.38);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.usage-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

.usage-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 88, 154, 0.48);
}

.usage-buy-btn span {
    transition: transform 0.3s;
    display: inline-block;
}

.usage-buy-btn:hover span {
    transform: translateX(4px);
}

@media (max-width: 960px) {
    .usage-section {
        padding: 3rem 5% 2.5rem;
    }

    .usage-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .usage-image-col {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }

    .usage-img-frame {
        aspect-ratio: 4/3;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESULTS TIMELINE SECTION
═══════════════════════════════════════════════════════════ */
.results-timeline-section {
    padding: 3rem 5% 2.5rem;
    background: #fff;
}

.results-timeline-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.results-timeline-header {
    margin-bottom: 3.5rem;
}

.results-timeline-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.results-timeline-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.results-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item {
    background: linear-gradient(145deg, #fff0f6, var(--pink-4));
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 16px;
    padding: 2.2rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(240, 168, 208, 0.1);
    transition: transform var(--transition);
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-point {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(212, 88, 154, 0.3);
    border: 3px solid #fff;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.results-timeline-footer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.rt-trigger-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1.5px solid rgba(240, 168, 208, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rt-trigger-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rt-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(212, 88, 154, 0.3);
    transition: var(--transition);
}

.rt-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 88, 154, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   CUSTOMER REVIEWS SECTION
═══════════════════════════════════════════════════════════ */
.reviews-section {
    padding: 3rem 5% 2.5rem;
    background: linear-gradient(160deg, #fff8f6 0%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
}

.reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.reviews-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(240, 168, 208, 0.15);
}

.review-rating {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(240, 168, 208, 0.2);
    padding-top: 1rem;
}

.review-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-author-info strong {
    font-size: 0.95rem;
    color: var(--text-color);
}

.review-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-img-container {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(240, 168, 208, 0.5);
}

.reviews-img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(240, 168, 208, 0.2);
}

.reviews-trigger-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reviews-trigger-text {
    font-size: 1rem;
    color: var(--text-muted);
}

.reviews-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(212, 88, 154, 0.3);
    transition: var(--transition);
}

.reviews-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 88, 154, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   WHAT'S INCLUDED SECTION
═══════════════════════════════════════════════════════════ */
.whats-included-section {
    padding: 6rem 5%;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.whats-included-inner {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #fff0f6, var(--pink-4));
    border-radius: 32px;
    padding: 4rem 3rem;
    border: 1.5px solid rgba(240, 168, 208, 0.3);
    box-shadow: 0 20px 60px rgba(240, 168, 208, 0.15);
    text-align: center;
}

.wi-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.wi-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.wi-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    max-width: 450px;
    margin: 0 auto 2.5rem;
}

.wi-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.wi-list .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
}

.wi-list em {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.wi-footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.wi-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(240, 168, 208, 0.3);
    padding-top: 2rem;
}

.wi-trigger-text {
    font-size: 1rem;
    color: var(--text-muted);
}

.wi-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(212, 88, 154, 0.3);
    transition: var(--transition);
}

.wi-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 88, 154, 0.4);
}

@media (max-width: 768px) {
    .whats-included-inner {
        padding: 3rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   FIT & OPTIONS SECTION
═══════════════════════════════════════════════════════════ */
.fit-options-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(160deg, #fff4f8 0%, #fff8f6 100%);
    position: relative;
}

.fit-options-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.fit-header {
    max-width: 680px;
    margin: 0 auto 2rem;
}

.fit-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.fit-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.fit-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fit-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: var(--transition);
}

.fit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(240, 168, 208, 0.15);
}

.fit-card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.fit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   WHO IS IT FOR SECTION
═══════════════════════════════════════════════════════════ */
.audience-section {
    padding: 4rem 6% 3.5rem;
    background: #fff;
}

.audience-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.audience-card {
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.audience-buy {
    background: linear-gradient(145deg, #fff0f6, #ffebf3);
    border: 1.5px solid rgba(240, 168, 208, 0.4);
    box-shadow: 0 20px 50px rgba(240, 168, 208, 0.1);
}

.audience-avoid {
    background: #fdfdfd;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
}

.audience-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.audience-icon-buy {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #4caf50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
}

.audience-icon-avoid {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #f44336;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
}

.audience-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
}

.audience-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.audience-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 0;
}

.audience-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.audience-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 1.5rem;
    line-height: 1;
}

.list-buy li::before {
    color: #4caf50;
}

.list-avoid li::before {
    color: #f44336;
}

.audience-img-col {
    margin-bottom: 2rem;
    margin-top: auto;
}

.audience-img-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(240, 168, 208, 0.3);
}

.audience-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.placeholder-fallback {
    position: absolute;
    inset: 0;
    background: rgba(240, 168, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-1);
    font-weight: 700;
}

.audience-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.audience-trigger {
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.audience-trigger p {
    margin: 0;
}

.audience-buy .audience-trigger {
    color: var(--text-color);
}

.audience-avoid .audience-trigger {
    border-color: rgba(244, 67, 54, 0.2);
}

@media (max-width: 960px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   COMPARISON SECTION
═══════════════════════════════════════════════════════════ */
.vs-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(170deg, var(--pink-4) 0%, #fff8f6 100%);
}

.vs-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.vs-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vs-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.vs-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 0;
}

.vs-hl {
    background: linear-gradient(135deg, var(--pink-1), #c9538f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 2rem;
}

.vs-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vs-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 16px;
    padding: 1.8rem;
    transition: var(--transition);
}

.vs-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(240, 168, 208, 0.15);
    border-color: var(--pink-1);
}

.vs-item h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.vs-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.vs-image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vs-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid #fff;
}

.vs-device-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.vs-trigger-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(240, 168, 208, 0.3);
    box-shadow: 0 8px 20px rgba(240, 168, 208, 0.08);
}

.vs-trigger-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.vs-trigger-text strong {
    color: var(--text-color);
}

.vs-footer-trigger {
    background: linear-gradient(135deg, rgba(240, 168, 208, 0.15), rgba(255, 235, 212, 0.25));
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.vs-footer-trigger p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.vs-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #d4589a, var(--pink-1));
    box-shadow: 0 8px 25px rgba(212, 88, 154, 0.38);
    transition: var(--transition);
}

.vs-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 88, 154, 0.48);
}

.vs-buy-btn span {
    transition: transform 0.3s;
    display: inline-block;
}

.vs-buy-btn:hover span {
    transform: translateX(5px);
}

@media (max-width: 960px) {
    .vs-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vs-image-col {
        order: -1;
    }

    .vs-img-frame {
        aspect-ratio: 16/9;
    }
}

/* ═══════════════════════════════════════════════════════════
   SHIPPING SECTION
═══════════════════════════════════════════════════════════ */
.shipping-section {
    padding: 6rem 6%;
    background: #fff;
    position: relative;
}

.shipping-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #fff4f8, #fdfdfd);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 50px rgba(240, 168, 208, 0.1);
    text-align: center;
}

.shipping-icon-top {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shipping-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.shipping-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shipping-card {
    background: #fff;
    border: 1px solid rgba(240, 168, 208, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    box-shadow: 0 10px 25px rgba(240, 168, 208, 0.05);
    transition: var(--transition);
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(240, 168, 208, 0.15);
}

.shipping-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.shipping-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.shipping-card p {
    font-size: 0.95rem;
    color: var(--pink-1);
    font-weight: 600;
    margin: 0;
}

.shipping-note {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.shipping-trigger {
    display: inline-block;
    background: #fff;
    border: 1px solid rgba(240, 168, 208, 0.4);
    border-radius: 100px;
    padding: 0.8rem 2rem;
}

.shipping-trigger p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.shipping-trigger strong {
    color: var(--pink-1);
}

@media (max-width: 768px) {
    .shipping-inner {
        padding: 3rem 1.5rem;
    }

    .shipping-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   GUARANTEE SECTION
═══════════════════════════════════════════════════════════ */
.guarantee-section {
    padding: 2rem 6% 3rem;
    background: #fff;
    display: flex;
    justify-content: center;
}

.guarantee-inner {
    max-width: 800px;
    width: 100%;
    background: #fff;
    border: 3px solid var(--pink-1);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(240, 168, 208, 0.15);
    position: relative;
    margin-top: 2rem;
}

.guarantee-badge-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: -7rem auto 2rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.guarantee-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.guarantee-badge-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    border-radius: 50%;
    color: #fff;
    border: 6px solid #fff;
}

.guarantee-badge-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 0.2rem;
}

.guarantee-badge-placeholder span {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.guarantee-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.guarantee-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-1);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.guarantee-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--pink-2);
    border-radius: 2px;
}

.guarantee-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 1.5rem auto 2rem;
}

.guarantee-trigger {
    display: inline-block;
    background: #fff;
    border: 1px solid rgba(240, 168, 208, 0.4);
    border-radius: 100px;
    padding: 0.8rem 2rem;
}

.guarantee-trigger p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.guarantee-trigger strong {
    color: var(--pink-1);
}

@media (max-width: 768px) {
    .guarantee-inner {
        padding: 3rem 1.5rem;
        margin-top: 4rem;
    }

    .guarantee-badge-container {
        width: 110px;
        height: 110px;
        margin-top: -6rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════ */
.faq-section {
    padding: 4rem 6% 3.5rem;
    background: linear-gradient(170deg, #fff 0%, #fff8f6 100%);
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
    margin: 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--pink-1);
    box-shadow: 0 10px 30px rgba(240, 168, 208, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Hide default triangle */
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
    /* Safari */
}

.faq-question::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0A8D0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item[open] .faq-answer {
    animation: faq-fade-in 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.faq-item.is-closing .faq-answer {
    animation: faq-fade-out 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.faq-item.is-closing .faq-question::after {
    transform: rotate(0deg);
}

@keyframes faq-fade-in {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faq-fade-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-15px);
    }
}

/* ═══════════════════════════════════════════════════════════
   SUPPORT SECTION (Standalone Card)
═══════════════════════════════════════════════════════════ */
.support-section {
    padding: 6rem 6%;
    background: #fff;
}

.support-inner {
    max-width: 800px;
    margin: 0 auto;
}

.standalone-card {
    background: linear-gradient(145deg, #fff 0%, #fff8fa 100%);
    border: 1px solid rgba(240, 168, 208, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 30px rgba(240, 168, 208, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   INFO SPLIT SECTION (Security, Support)
═══════════════════════════════════════════════════════════ */
.info-split-section {
    background: #fff;
    padding: 6rem 6%;
}

.info-split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.info-text-col {
    color: var(--text-color);
}

.info-split-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.info-split-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-split-desc strong {
    color: var(--text-color);
}

.info-split-trigger {
    border-left: 3px solid var(--pink-1);
    background: linear-gradient(90deg, rgba(240, 168, 208, 0.1) 0%, transparent 100%);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.info-split-trigger p {
    margin: 0;
    color: var(--pink-1);
    font-weight: 600;
    font-size: 1rem;
}

.info-img-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.info-img-col img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    object-fit: contain;
}

@media (max-width: 960px) {
    .info-split-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-text-col {
        order: 2;
    }

    .info-img-col {
        order: 1;
    }

    .info-split-title {
        font-size: 2.2rem;
    }
}

.standalone-img-frame {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(240, 168, 208, 0.4);
    box-shadow: 0 5px 15px rgba(240, 168, 208, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.standalone-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.standalone-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.standalone-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.standalone-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    max-width: 300px;
}

.standalone-list li {
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.standalone-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--pink-1);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.standalone-link {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    background: var(--pink-1);
    padding: 0.8rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.standalone-link:hover {
    background: var(--pink-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 168, 208, 0.4);
}

.standalone-trigger {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 168, 208, 0.3);
    width: 100%;
}

.standalone-trigger p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.standalone-trigger strong {
    color: var(--pink-1);
}

@media (max-width: 768px) {
    .standalone-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--text-color);
    color: var(--white);
    padding: 2rem 5% 1.5rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -1px;
}

.footer-desc {
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-nav a.active {
    color: var(--white);
    font-weight: 600;
}

.footer-copy {
    margin-top: 3rem;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .footer-nav {
        gap: 1rem;
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════
   SPECIAL OFFER & BUNDLES
═══════════════════════════════════════════════════════════ */
.offer-section {
    padding: 6rem 6%;
    background: linear-gradient(180deg, #fff 0%, #fff8fa 100%);
    text-align: center;
}

.offer-header {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.offer-intro {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.offer-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.offer-perks {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.offer-perks .perk {
    font-size: 1.1rem;
    font-weight: 700;
    background: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    box-shadow: 0 5px 15px rgba(240, 168, 208, 0.2);
    color: var(--pink-1);
    border: 2px solid var(--pink-1);
}

.offer-cta {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 3rem 0 0.5rem;
}

.offer-urgency {
    color: #ff3b30;
    font-size: 1.1rem;
    background: rgba(255, 59, 48, 0.05);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    margin-top: 0.5rem;
}

/* Bundle Grid */
.bundle-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.bundle-card {
    background: #fff;
    border: 2px solid rgba(240, 168, 208, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bundle-card:hover {
    transform: translateY(-8px);
}

.bundle-card.popular {
    border-color: var(--pink-1);
    box-shadow: 0 20px 40px rgba(240, 168, 208, 0.3);
    padding: 3.5rem 2rem;
    /* Taller */
    z-index: 2;
}

.bundle-card .badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-color);
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    white-space: nowrap;
    border: 2px solid #fff;
}

.bundle-card.popular .badge {
    background: var(--pink-1);
}

.bundle-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: #fcfcfc;
}

.bundle-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--text-color);
}

.bundle-monthly {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.bundle-price-wrap {
    margin: auto 0 2rem;
}

.strike-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    font-weight: 700;
}

.final-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-color);
}

.bundle-card.popular .final-price {
    color: var(--pink-2);
}

.shipping {
    color: #28a745;
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    background: rgba(40, 167, 69, 0.1);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 100px;
}

.bundle-btn {
    background: var(--text-color);
    color: #fff;
    padding: 1.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.bundle-card.popular .bundle-btn {
    background: var(--pink-1);
}

.bundle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bundle-card.popular .bundle-btn:hover {
    background: var(--pink-2);
    box-shadow: 0 8px 20px rgba(240, 168, 208, 0.4);
}

@media (max-width: 960px) {
    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bundle-card.popular {
        padding: 2.5rem 1.5rem;
        order: -1;
        /* Puts popular at the top on mobile */
    }

    .bundle-card {
        padding: 2.5rem 1.5rem;
    }
}