/* =========================================
   HOLO STYLE - VARIABLES & RESET
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Satoshi:wght@500;700;900&display=swap');

:root {
    /* Colors - Gradient Brand */
    --color-grape: #3e86c6;
    --color-purple: #a666aa;
    --color-pink: #ec4492;
    --color-red: #ee4454;
    --color-orange: #f05427;

    /* Neutrals */
    --bg-page: #fbfbfb;
    --bg-alt: #f5f5f7;
    --bg-card: #ffffff;
    --text-main: #1d1d1f;
    --text-sec: #6e6e73;
    --border: #e6e6e7;
    --border-hover: rgba(0, 0, 0, 0.1);

    /* Functional */
    --success: #55d154;
    --warning: #fedf6f;
    --error: #eb6a6a;

    /* Gradients */
    /* 5-color linear gradient */
    --gradient-brand: linear-gradient(90deg, #3e86c6 0%, #a666aa 24%, #ec4492 51%, #ee4454 74%, #f05427 100%);
    --gradient-brand-hover: linear-gradient(104deg, #3e86c6, #a666aa, #ec4492, #ee4454, #f05427);
    --gradient-glow: radial-gradient(circle, rgba(236, 68, 146, 0.15) 0%, rgba(0, 0, 0, 0) 70%);

    /* Fonts */
    --font-heading: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Utility */
    --container: 1200px;
    --glass-blur: blur(20px);
    --radius-pill: 100px;
    --radius-card: 24px;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);

    /* Easing */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.object-cover {
    object-fit: cover;
}

.mask-radial-fade {
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
}

/* Local Fonts Fallback setup if Satoshi isn't loaded from Google Fonts (it's custom usually) */
/* We will use a similar font or assume it's loaded via @font-face if provided. 
   For now, we use a robust stack. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    color: var(--text-sec);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
}

/* =========================================
   UTILITIES & ANIMATIONS
   ========================================= */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Fade Up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Hover Lift */
.hover-lift {
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* =========================================
   NAVBAR
   ========================================= */
/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 1000;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.nav-admin {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-sec);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-admin:hover {
    background: var(--bg-sec);
    color: var(--text-main);
    transform: translateY(-1px);
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    padding: 2px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.nav-logo-img {
    height: 56px;
    width: 56px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    background: white;
    border: 1px solid var(--border);
    padding: 0 32px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    height: 56px;
    transition: all 0.3s ease;
}

.nav-menu:hover {
    box-shadow: var(--shadow-card);
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-item:hover {
    color: var(--color-pink);
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 28px;
    height: 56px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

/* Primary is now the Outline Gradient style from image */
.btn-primary {
    background: linear-gradient(#fff, #fff) padding-box,
        var(--gradient-brand) border-box;
    border: 2px solid transparent;
    color: var(--text-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(#fff, #fff) padding-box,
        var(--gradient-brand-hover) border-box;
}

.btn-outline {
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-main);
    height: 48px;
    /* Standard buttons slightly smaller */
}

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

/* =========================================
   HERO
   ========================================= */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    mix-blend-mode: multiply;
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-sec);
    max-width: 640px;
    margin: 24px auto 40px;
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-sec);
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-trust-row span {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
}

.hero-visual-3d {
    margin-top: 60px;
    perspective: 1000px;
}

.floating-mockup {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    transform: rotateX(10deg) scale(0.95);
    transition: transform 0.5s ease;
    border: 8px solid white;
}

.floating-mockup:hover {
    transform: rotateX(0deg) scale(1);
}

/* =========================================
   VALUE COMPARISON
   ========================================= */
.value-comparison {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-bottom: 1px solid var(--border);
}

.comparison-head {
    max-width: 820px;
    margin: 0 auto 44px;
}

.comparison-head h2 {
    margin-top: 16px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.comparison-head p {
    color: var(--text-sec);
    margin: 16px auto 0;
    max-width: 680px;
    font-size: 1.08rem;
}

.comparison-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.comparison-option {
    position: relative;
    min-height: 332px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.comparison-option-risk {
    border-top: 6px solid #ef4444;
}

.comparison-option-winner {
    border: 2px solid #111827;
    border-top: 6px solid #10b981;
    box-shadow: 0 26px 64px rgba(16, 185, 129, 0.18);
    transform: translateY(-12px);
}

.comparison-option-cost {
    border-top: 6px solid #64748b;
}

.comparison-ribbon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.comparison-option-top {
    min-height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.comparison-kicker {
    color: var(--text-sec);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.comparison-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.comparison-pill.warning {
    background: #fef2f2;
    color: #b91c1c;
}

.comparison-pill.good {
    background: #ecfdf5;
    color: #047857;
}

.comparison-pill.neutral {
    background: #f1f5f9;
    color: #334155;
}

.comparison-option strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 2.05rem;
}

.comparison-option p {
    color: var(--text-sec);
    line-height: 1.65;
    margin: 0;
}

.comparison-list {
    display: grid;
    gap: 10px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.comparison-list li {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eef0f4;
    border-radius: 8px;
    padding: 10px 12px;
    color: #1f2937;
    font-size: 0.95rem;
}

.comparison-list li span {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 50%;
}

.comparison-list li.negative span {
    background: #ef4444;
}

.comparison-list li.positive span {
    background: #10b981;
}

.comparison-list li.neutral span {
    background: #64748b;
}

.comparison-decision {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.decision-simple {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    border: 1px solid #eef0f4;
    border-radius: 8px;
    padding: 16px 12px;
    background: #fff;
}

.decision-simple span {
    color: #4b5563;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.decision-simple strong {
    color: #111827;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.05;
    font-weight: 900;
}

.decision-simple small {
    color: #6b7280;
    font-weight: 900;
}

.decision-simple.bad {
    background: #fff7f7;
    border-color: #fecaca;
}

.decision-simple.bad strong,
.decision-simple.bad small {
    color: #b91c1c;
}

.decision-simple.best {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.decision-simple.best strong,
.decision-simple.best small {
    color: #047857;
}

@media (max-width: 820px) {
    .comparison-board {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .comparison-option,
    .comparison-option-winner {
        min-height: 0;
        transform: none;
    }

    .comparison-decision {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .decision-simple {
        min-height: 116px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 62px;
        padding-bottom: 56px;
    }

    .hero-title {
        max-width: 10.5ch;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2.45rem, 11vw, 3.2rem) !important;
        line-height: 1.02;
        letter-spacing: 0;
    }

    .hero-subtitle {
        max-width: 92%;
        margin-top: 18px;
        margin-bottom: 28px;
        font-size: 1.03rem;
        line-height: 1.58;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: min(100%, 280px);
        justify-content: center;
        padding: 14px 22px;
    }

    .hero-trust-row {
        gap: 8px;
        margin-top: 18px;
        padding: 0 4px;
        font-size: 0.82rem;
    }

    .hero-trust-row span {
        padding: 7px 10px;
        border-radius: 999px;
    }

    .hero-visual-3d {
        margin-top: 34px;
    }

    .floating-mockup {
        width: 100% !important;
        transform: none;
    }

    .value-comparison {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .comparison-head {
        margin-bottom: 28px;
        padding: 0 4px;
    }

    .comparison-head h2 {
        font-size: clamp(2rem, 9vw, 2.55rem);
        line-height: 1.06;
        letter-spacing: 0;
    }

    .comparison-head p {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .comparison-board {
        gap: 14px;
    }

    .comparison-option {
        gap: 12px;
        padding: 22px 20px;
        border-radius: 8px;
    }

    .comparison-option strong {
        font-size: 1.55rem;
    }

    .comparison-option p,
    .comparison-list li {
        font-size: 0.96rem;
        line-height: 1.58;
    }
}

/* =========================================
   CARDS & GRIDS
   ========================================= */
.section-padding {
    padding: 100px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

.card-holo {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card-holo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(236, 68, 146, 0.3);
}

/* =========================================
   BENTO GRID
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 24px;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(236, 68, 146, 0.3);
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-row-2 {
    grid-row: span 2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-span-2,
    .bento-row-2 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   FLOATING PILLS
   ========================================= */
.floating-cloud {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-pill {
    position: absolute;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
    font-weight: 600;
    color: var(--text-sec);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-pill:hover {
    z-index: 10;
    transform: scale(1.1);
    border-color: var(--color-pink);
    color: var(--color-pink);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* =========================================
   MOBILE MOCKUP
   ========================================= */
.mobile-mockup-container {
    perspective: 1000px;
    text-align: center;
    margin-top: 60px;
}

.mobile-mockup {
    width: 300px;
    height: 600px;
    background: white;
    border: 12px solid #1d1d1f;
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mobile-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    height: 60px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mockup-body {
    padding: 20px;
    background: #f5f5f7;
    height: 100%;
}

.tinder-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: white;
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

/* =========================================
   HOW IT WORKS (TIMELINE)
   ========================================= */
.how-section {
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical Gradient Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: var(--gradient-brand);
    opacity: 0.5;
}

.step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    position: relative;
    z-index: 1;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-content {
    width: 45%;
}

.step-visual {
    width: 45%;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {

    .step-row,
    .step-row:nth-child(even) {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 60px;
        text-align: center;
    }

    .step-content,
    .step-visual {
        width: 100%;
        text-align: center !important;
    }

    .timeline-line {
        display: none;
    }
}

/* Alternating Layout */
.step-row:nth-child(even) {
    flex-direction: row-reverse;
}

.step-row:nth-child(even) .step-content {
    text-align: right;
}

/* Typography */
.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.step-desc {
    font-size: 1.1rem;
    color: var(--text-sec);
    line-height: 1.6;
}

/* 3D Visual Cards */
.visual-card-3d {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-card-3d:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: #f0f0f0;
}

.step-row:nth-child(even) .visual-card-3d {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
}

.step-row:nth-child(even) .visual-card-3d:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-10px);
}

/* Visual Mock Content (Abstract UI) */
.mock-ui {
    width: 80%;
    height: 80%;
    background: var(--bg-alt);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.mock-line {
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    width: 100%;
}

.mock-line.short {
    width: 60%;
}

.mock-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
}

/* Specific Visuals */
.color-dots {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.dot-1 {
    background: var(--color-grape);
}

.dot-2 {
    background: var(--color-purple);
}

.dot-3 {
    background: var(--color-pink);
}

.dot-4 {
    background: var(--color-orange);
}

.size-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-top: auto;
    justify-content: center;
}

.bar {
    width: 30px;
    background: #e0e0e0;
    border-radius: 4px;
}

.bar.active {
    background: var(--color-pink);
}

.kit-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.item-box {
    height: 40px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.truck-icon {
    font-size: 3rem;
    margin: auto;
    animation: slideTruck 3s infinite linear;
}

@keyframes slideTruck {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(50px);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .timeline-line {
        left: 24px;
    }

    .step-row,
    .step-row:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 60px;
    }

    .step-content,
    .step-row:nth-child(even) .step-content {
        width: 100%;
        text-align: left;
        margin-bottom: 32px;
    }

    .step-visual {
        width: 100%;
        justify-content: flex-start;
    }

    .visual-card-3d {
        transform: none !important;
        max-width: 300px;
    }
}

/* =========================================
   QUALITY SECTION (Holo Style)
   ========================================= */
.quality-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 0.5) 100%);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quality-card {
    background: white;
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    background: var(--bg-alt);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.quality-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-brand-light);
    /* Assuming this var exists or fallback */
}

.quality-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.quality-card p {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.5;
}

/* Center Visual */
.floating-balloon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    min-height: 400px;
}

/* Garland Stack - Scroll Stacking Animation */
.garland-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 480px;
    padding: 20px 0;
    justify-content: flex-start;
    padding-top: 40px;
}

.stack-cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -30px;
    opacity: 0;
    transform: scale(0.3) translateY(-80px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(8px);
    position: relative;
}

.stack-cluster:first-child {
    margin-top: 0;
}

.stack-cluster.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.stack-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: gentleFloat 5s ease-in-out infinite;
}

.cluster-top .stack-img { animation-delay: 0s; }
.cluster-mid .stack-img { animation-delay: 0.5s; }
.cluster-bot .stack-img { animation-delay: 1s; }

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    75% { transform: translateY(3px) rotate(-0.5deg); }
}

.stack-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    background: var(--primary);
    padding: 3px 12px;
    border-radius: 20px;
    margin-top: -10px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease 0.5s;
    z-index: 2;
}

.stack-cluster.visible .stack-label {
    opacity: 1;
    transform: scale(1);
}

/* Counter badge */
.stack-counter {
    position: absolute;
    bottom: 10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(255, 77, 77, 0.15);
    transition: all 0.4s ease;
    z-index: 5;
}

.counter-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    transition: all 0.3s ease;
}

.counter-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Composition arrows around first cluster */
.composition-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.comp-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.5s ease;
}

.comp-label.show {
    opacity: 1;
}

/* Left labels */
.comp-left {
    transform: translateX(20px);
}
.comp-left.show {
    transform: translateX(0);
}

.comp-r18 { top: 15%; left: 0; }
.comp-r5 { top: 42%; left: 0; }

/* Right labels */
.comp-right {
    transform: translateX(-20px);
}
.comp-right.show {
    transform: translateX(0);
}

.comp-r12 { top: 22%; right: 0; }
.comp-260 { top: 50%; right: 0; }

.comp-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    white-space: nowrap;
}

.comp-info strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
}

.comp-info span {
    font-size: 0.7rem;
    color: var(--text-sec);
    font-weight: 500;
}

.comp-line {
    flex-shrink: 0;
}

/* Total label */
.comp-total {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    color: var(--text-main);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.5s ease 0.3s;
    border: 2px solid var(--primary);
    box-shadow: 0 6px 20px rgba(255,77,77,0.15);
}

.comp-total.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.comp-total strong {
    font-weight: 800;
    color: var(--primary);
}

/* Cluster Sizes Strip */
/* Garland stack responsive */
@media (max-width: 1024px) {
    .garland-stack {
        min-height: 400px;
    }
    .stack-img {
        width: 160px;
    }
    .stack-counter {
        right: 0;
    }
    .comp-line { width: 35px; }
    .comp-info { padding: 5px 10px; }
    .comp-info strong { font-size: 0.75rem; }
    .comp-info span { font-size: 0.65rem; }
}

@media (max-width: 768px) {
    .garland-stack {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 20px;
    }
    .stack-img {
        width: 130px;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    }
    /* Heavy overlap so the 3 clusters read as ONE tight garland and all fit
       in the viewport together when the 3rd appears. */
    .stack-cluster {
        margin-top: -65px;
    }
    .stack-cluster:first-child {
        margin-top: 0;
    }
    .composition-arrows {
        display: none;
    }
    .stack-counter {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 8px;
        padding: 8px 16px;
        align-self: center;
    }
    .counter-num {
        font-size: 1.4rem;
    }
    .quality-col.center-col {
        margin-bottom: -20px;
    }
}


/* Responsive Quality Section */
@media (max-width: 1024px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-col.center-col {
        order: -1;
        margin-bottom: 0;
    }

    .floating-balloon-container {
        min-height: 300px;
    }

    .quality-balloon-img {
        max-width: 280px;
    }

    .quality-arrow {
        display: none;
        /* Hide arrows on mobile/tablet */
    }

    .quality-col.left-col,
    .quality-col.right-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {



    .quality-col.left-col,
    .quality-col.right-col {
        grid-template-columns: 1fr;
    }

    .quality-card {
        padding: 24px;
    }
}

/* =========================================
   FAQ SECTION (Holo Accordion Style)
   ========================================= */
.faq-section {
    background: var(--bg-page);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: var(--color-pink);
}

.faq-header {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-sec);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-pink);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-inner {
    padding: 0 32px 32px 32px;
    color: var(--text-sec);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-content {
    max-height: 500px;
    /* Approximate max height */
    transition: max-height 0.5s ease-in-out;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta-section {
    padding: 120px 0;
    background: white;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--text-sec);
    font-weight: 500;
}

.cta-button {
    font-size: 1.2rem;
    padding: 16px 48px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer-section {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-cta-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    color: white;
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-sec);
}

.social-link {
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--color-pink);
    text-decoration: underline;
}

.instagram-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile Header Fixes */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        top: auto;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 8px 12px;
        height: auto;

        display: grid;
        grid-template-columns: 1fr auto 1fr;
        /* Logo center, admin right (hidden), menu below */
        align-items: center;
        gap: 8px;
    }

    /* Logo centered */
    .nav-brand {
        grid-column: 2;
        padding: 4px 12px;
        min-height: 52px;
        border: none;
        box-shadow: none;
        background: transparent;
        justify-self: center;
    }

    .nav-logo-img {
        height: 48px;
    }

    /* Admin link (if present) to the right or hidden */
    .nav-admin {
        grid-column: 3;
        justify-self: end;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Menu as a secondary row */
    .nav-menu {
        grid-column: 1 / -1;
        /* Full width */
        grid-row: 2;
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 20px;
        padding: 8px 0 4px;
        height: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        border-top: 1px solid var(--border);
        margin-top: 4px;
    }

    .nav-item {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
}

/* Instagram Responsive */
@media (max-width: 768px) {
    #instagram-feed .container {
        padding: 0 20px;
    }

    .instagram-container {
        min-height: 300px;
        /* Smaller height for mobile */
        margin-top: 24px !important;
    }

    .instagram-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Reviews Home Section */
.reviews-section {
    background:
        radial-gradient(circle at top left, rgba(239, 71, 111, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(91, 141, 239, 0.08), transparent 22%),
        linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
}

.reviews-shell {
    max-width: 1180px;
}

.reviews-summary-card {
    max-width: 540px;
    margin: 0 auto 40px;
    padding: 28px 32px;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,248,245,0.96) 100%);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.reviews-summary-card .badge-glow {
    margin: 0 auto;
}

.reviews-summary-stars {
    display: inline-flex;
    gap: 8px;
    margin-top: 18px;
}

.reviews-summary-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 14px;
    gap: 6px;
}

.reviews-summary-score strong {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    line-height: 1;
    color: var(--text-main);
}

.reviews-summary-score span,
.reviews-summary-meta {
    color: var(--text-sec);
    font-size: 1rem;
}

.reviews-summary-meta {
    margin: 14px 0 0;
}

.reviews-summary-meta strong {
    color: var(--text-main);
}

.reviews-head {
    text-align: center;
    margin-bottom: 36px;
}

.reviews-title-block {
    max-width: 860px;
    margin: 0 auto;
}

.reviews-average-star {
    color: rgba(250, 204, 21, 0.24);
    font-size: 1.45rem;
    line-height: 1;
    text-shadow: 0 6px 16px rgba(250, 204, 21, 0.24);
}

.reviews-average-star.active {
    color: #facc15;
}

.reviews-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
}

.review-home-card,
.review-home-empty {
    position: relative;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,250,247,0.98) 100%);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow:
        0 26px 54px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    overflow: hidden;
}

.review-home-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand);
}

.review-home-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-home-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-home-avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #5b8def 0%, #c067d1 52%, #ff6a3d 100%);
    box-shadow: 0 14px 30px rgba(91, 141, 239, 0.28);
}

.review-home-top h3,
.review-home-empty strong {
    margin: 6px 0 0;
    font-size: 1.18rem;
    line-height: 1.15;
}

.review-home-date {
    color: var(--text-sec);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.review-home-stars {
    display: inline-flex;
    gap: 5px;
}

.review-home-star {
    color: rgba(250, 204, 21, 0.22);
    font-size: 1.02rem;
    line-height: 1;
}

.review-home-star.active {
    color: #facc15;
}

.review-home-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.review-home-rating-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.16);
    color: #9a6700;
    font-weight: 800;
    font-size: 0.92rem;
}

.review-home-copy,
.review-home-empty p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.78;
    font-size: 1rem;
}

.review-home-media {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1.15 / 1;
    min-height: 0;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: #fff;
}

.review-home-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-home-gallery {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.review-home-gallery.single {
    grid-template-columns: 1fr;
}

.review-home-gallery.triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 1024px) {
    .reviews-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .reviews-summary-card {
        padding: 24px 20px;
        margin-bottom: 28px;
    }

    .reviews-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-home-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-home-date {
        margin-left: 72px;
    }

    .review-home-card {
        padding: 24px 20px;
    }
}

/* ════════════════════════════════════════════
 *  CARRUSEL DE GUIRNALDAS · adaptado al fondo de la web
 *  Reemplaza el grid estático "Diseños listos para evento"
 *  Fondo en tonos cream/white (no rosa) para integrar con la página
 * ════════════════════════════════════════════ */

.garland-carousel-section {
    --gc-active-accent: #c8278a;
    position: relative;
    background: linear-gradient(180deg, var(--bg-page) 0%, #fff8fc 48%, var(--bg-page) 100%);
    overflow: hidden;
    padding: 80px 0 100px;
    touch-action: pan-y;
    isolation: isolate;
}

.garland-carousel-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 48%, color-mix(in srgb, var(--gc-active-accent) 16%, transparent) 0%, transparent 56%);
    opacity: 0.9;
    transition: background 0.6s ease;
}

/* Orbs flotantes de fondo · tonos suaves crema/rosa-pastel */
.gc-bg-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.gc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: gc-drift 30s ease-in-out infinite;
}
.gc-orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, #fce7f3, transparent 70%); top: 8%; left: -8%; animation-delay: 0s; }
.gc-orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, #fef3c7, transparent 70%); top: 55%; right: -6%; animation-delay: -10s; }
.gc-orb-3 { width: 240px; height: 240px; background: radial-gradient(circle, #ddd6fe, transparent 70%); bottom: 10%; left: 18%; animation-delay: -18s; }
.gc-orb-4 { width: 320px; height: 320px; background: radial-gradient(circle, #fed7aa, transparent 70%); top: 38%; left: 50%; animation-delay: -14s; }
.gc-orb-5 { width: 200px; height: 200px; background: radial-gradient(circle, #bae6fd, transparent 70%); top: 25%; right: 15%; animation-delay: -6s; }
@keyframes gc-drift {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0); }
    33%      { transform: translate(50px, -40px) scale(1.12) rotate(8deg); }
    66%      { transform: translate(-30px, 50px) scale(0.92) rotate(-5deg); }
}

/* Burbujas pequeñas subiendo */
.gc-bg-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.gc-bg-bubbles span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(252, 207, 219, 0.4));
    box-shadow: inset -2px -2px 4px rgba(236, 72, 153, 0.12);
    animation: gc-float-up 18s linear infinite;
    bottom: -20px;
}
.gc-bg-bubbles span:nth-child(1)  { left: 6%;  width: 14px; height: 14px; animation-duration: 14s; }
.gc-bg-bubbles span:nth-child(2)  { left: 18%; width: 8px;  height: 8px;  animation-duration: 18s; animation-delay: -4s; opacity: 0.5; }
.gc-bg-bubbles span:nth-child(3)  { left: 30%; width: 22px; height: 22px; animation-duration: 22s; animation-delay: -10s; opacity: 0.4; }
.gc-bg-bubbles span:nth-child(4)  { left: 42%; width: 12px; height: 12px; animation-duration: 16s; animation-delay: -2s; }
.gc-bg-bubbles span:nth-child(5)  { left: 56%; width: 18px; height: 18px; animation-duration: 20s; animation-delay: -7s; }
.gc-bg-bubbles span:nth-child(6)  { left: 68%; width: 10px; height: 10px; animation-duration: 24s; animation-delay: -12s; opacity: 0.45; }
.gc-bg-bubbles span:nth-child(7)  { left: 80%; width: 16px; height: 16px; animation-duration: 17s; animation-delay: -3s; }
.gc-bg-bubbles span:nth-child(8)  { left: 90%; width: 9px;  height: 9px;  animation-duration: 21s; animation-delay: -8s; opacity: 0.55; }
.gc-bg-bubbles span:nth-child(9)  { left: 12%; width: 6px;  height: 6px;  animation-duration: 26s; animation-delay: -14s; opacity: 0.35; }
.gc-bg-bubbles span:nth-child(10) { left: 75%; width: 24px; height: 24px; animation-duration: 23s; animation-delay: -11s; opacity: 0.3; }
@keyframes gc-float-up {
    0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    8%   { opacity: 0.85; }
    50%  { transform: translateY(-50vh) translateX(30px) scale(1.05); }
    92%  { opacity: 0.85; }
    100% { transform: translateY(-110vh) translateX(-20px) scale(0.95); opacity: 0; }
}

/* Corazoncitos pulsantes */
.gc-heart {
    position: absolute;
    color: #f9a8d4;
    opacity: 0.4;
    animation: gc-heart-pulse 3.5s ease-in-out infinite;
    z-index: 0;
}
.gc-heart-2 { top: 18%; left: 8%;   font-size: 12px; animation-delay: -1.2s; }
.gc-heart-3 { top: 14%; right: 10%; font-size: 14px; animation-delay: -2.4s; }
.gc-heart-4 { bottom: 18%; left: 12%;  font-size: 11px; animation-delay: -0.8s; }
.gc-heart-5 { bottom: 22%; right: 18%; font-size: 13px; animation-delay: -3s; }
@keyframes gc-heart-pulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50%      { transform: scale(1.4); opacity: 0.7; }
}

/* Header */
.gc-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 24px;
}
.gc-header-heart {
    display: inline-block;
    color: #f9a8d4;
    font-size: 16px;
    margin-bottom: 14px;
    animation: gc-heart-tiny 2.5s ease-in-out infinite;
}
@keyframes gc-heart-tiny {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.3); }
}
.gc-header h2 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 3.6rem;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #1a1a1f;
    margin-bottom: 14px;
}
.gc-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}
.gc-chev {
    color: #ec4899;
    font-size: 1.3rem;
    line-height: 1;
    animation: gc-chev-l 1.6s ease-in-out infinite;
}
.gc-chev.right { animation-name: gc-chev-r; animation-delay: -0.8s; }
@keyframes gc-chev-l { 0%,100%{transform:translateX(0);} 50%{transform:translateX(-4px);} }
@keyframes gc-chev-r { 0%,100%{transform:translateX(0);} 50%{transform:translateX(4px);} }

/* Carrusel */
.gc-shell {
    position: relative;
    z-index: 2;
    margin: 30px auto 0;
    max-width: 1400px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: visible;
}
.gc-arrow {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid #fce7f3;
    color: #ec4899;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
    z-index: 5;
    user-select: none;
    font-family: inherit;
}
.gc-arrow:hover { transform: scale(1.12); background: #ec4899; color: white; box-shadow: 0 12px 32px rgba(236, 72, 153, 0.35); }
.gc-arrow:active { transform: scale(0.95); }

.gc-track {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    transform-style: preserve-3d;
    min-height: 620px;
    position: relative;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
}
.gc-card {
    position: absolute;
    width: 30%;
    max-width: 420px;
    height: 600px;
    transition: all 0.7s cubic-bezier(0.34, 1.15, 0.64, 1);
    cursor: pointer;
    transform-origin: center center;
    will-change: transform, opacity, filter;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}
.gc-card.slot-far-left  { transform: translateX(-90%) scale(0.55) rotateY(28deg); opacity: 0; pointer-events: none; }
.gc-card.slot-left      { transform: translateX(-65%) scale(0.78) rotateY(18deg); opacity: 0.56; filter: blur(2.5px) saturate(0.92); z-index: 2; }
.gc-card.slot-center    { transform: translateX(0)    scale(1)    rotateY(0);     opacity: 1; z-index: 4; }
.gc-card.slot-right     { transform: translateX(65%)  scale(0.78) rotateY(-18deg); opacity: 0.56; filter: blur(2.5px) saturate(0.92); z-index: 2; }
.gc-card.slot-far-right { transform: translateX(90%)  scale(0.55) rotateY(-28deg); opacity: 0; pointer-events: none; }

.gc-img-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}
.gc-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
    user-select: none;
    -webkit-user-drag: none;
    transform: translateZ(42px);
    will-change: transform, filter;
}
.gc-card.slot-center .gc-img {
    animation: gc-center-float 4s ease-in-out infinite;
    filter: drop-shadow(0 34px 58px color-mix(in srgb, var(--gc-active-accent) 30%, rgba(0, 0, 0, 0.24)));
}
.gc-card.slot-center .gc-img-wrap {
    animation: gc-center-tilt 6.5s ease-in-out infinite;
}
.gc-card.slot-center .gc-shadow {
    animation: gc-shadow-breathe 4s ease-in-out infinite;
}
@keyframes gc-center-float {
    0%, 100% { transform: translateZ(42px) translateY(0) scale(1); }
    50%      { transform: translateZ(42px) translateY(-14px) scale(1.015); }
}
@keyframes gc-center-tilt {
    0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
    35%      { transform: rotateX(3deg) rotateY(-4deg); }
    70%      { transform: rotateX(-2deg) rotateY(4deg); }
}
@keyframes gc-shadow-breathe {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.55; }
    50%      { transform: translateX(-50%) scale(0.82); opacity: 0.35; }
}
.gc-shadow {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 24px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.6;
}

.gc-name {
    margin-top: 18px;
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #6b7280;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    text-align: center;
    white-space: nowrap;
}
.gc-card.slot-center .gc-name { color: #1a1a1f; font-weight: 600; font-size: 1.85rem; }

/* Dots */
.gc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    position: relative;
    z-index: 2;
}
.gc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #f9a8d4;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.gc-dot.active {
    background: #ec4899;
    border-color: #ec4899;
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.16);
}
.gc-dot:hover { transform: scale(1.3); }

.gc-info {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 34px auto 0;
    padding: 0 24px;
    text-align: center;
}

.gc-info h3 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4.25rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -1.2px;
    color: #1a1a1f;
}

.gc-info-tagline {
    margin: 8px 0 0;
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    font-style: italic;
    color: var(--gc-active-accent);
}

.gc-info-desc {
    max-width: 560px;
    margin: 12px auto 0;
    color: #60646f;
    font-size: 1rem;
    line-height: 1.65;
}

.gc-palette {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.gc-palette span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.gc-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    margin-top: 22px;
    padding: 0 34px;
    border-radius: 999px;
    background: var(--gc-active-accent);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 42px color-mix(in srgb, var(--gc-active-accent) 34%, transparent);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gc-order-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 54px color-mix(in srgb, var(--gc-active-accent) 44%, transparent);
}

/* Responsive · TABLET */
@media (max-width: 980px) {
    .garland-carousel-section { padding: 60px 0 80px; }
    .gc-header h2 { font-size: 2.6rem; }
    .gc-card { height: 480px; max-width: 360px; }
    .gc-img-wrap { height: 410px; }
    .gc-arrow { width: 48px; height: 48px; font-size: 1.3rem; }
    .gc-track { min-height: 500px; }
}

/* Responsive · MÓVIL — solo central, flechas grandes touchables */
@media (max-width: 640px) {
    .garland-carousel-section { padding: 48px 0 64px; }
    .gc-orb-3, .gc-orb-5 { display: none; }
    .gc-orb-1, .gc-orb-2, .gc-orb-4 { opacity: 0.32; filter: blur(60px); }
    .gc-bg-bubbles span:nth-child(n+7) { display: none; }
    .gc-heart-2, .gc-heart-3 { font-size: 10px; }

    .gc-header { margin-bottom: 16px; }
    .gc-header h2 { font-size: 2.4rem; line-height: 1.05; }
    .gc-subtitle { font-size: 0.82rem; gap: 10px; }

    .gc-shell {
        gap: 0;
        padding: 0 4px;
        position: relative;
        overflow: hidden;
    }
    .gc-track { min-height: 500px; overflow: visible; }

    .gc-card { width: 80%; max-width: 320px; height: 460px; }
    /* Solo central visible — laterales completamente fuera */
    .gc-card.slot-left, .gc-card.slot-far-left,
    .gc-card.slot-right, .gc-card.slot-far-right {
        opacity: 0;
        transform: translateX(0) scale(0.85) rotateY(0);
        pointer-events: none;
    }
    .gc-card.slot-center { transform: translateX(0) scale(1) rotateY(0); }

    .gc-img-wrap { height: 385px; }
    .gc-img { filter: drop-shadow(0 16px 24px rgba(0,0,0,0.18)); }
    .gc-card.slot-center .gc-img { filter: drop-shadow(0 22px 32px rgba(0,0,0,0.22)); }
    .gc-card.slot-center .gc-name { font-size: 1.55rem; }

    /* Flechas absolutas, encima de la imagen */
    .gc-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        z-index: 10;
    }
    #gc-prev { left: 8px; }
    #gc-next { right: 8px; }
    .gc-arrow:hover { transform: translateY(-50%) scale(1.08); }

    .gc-dots { margin-top: 24px; }
    .gc-info {
        margin-top: 26px;
        padding: 0 18px 72px;
    }
    .gc-info h3 {
        font-size: 2.45rem;
    }
    .gc-info-tagline {
        font-size: 1.08rem;
    }
    .gc-info-desc {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .gc-palette span {
        width: 24px;
        height: 24px;
    }
    .gc-order-btn {
        width: min(100%, 300px);
        min-height: 50px;
        padding: 0 22px;
    }
}

/* Responsive · MÓVIL PEQUEÑO */
@media (max-width: 380px) {
    .gc-header h2 { font-size: 2rem; }
    .gc-card { width: 88%; height: 420px; }
    .gc-img-wrap { height: 340px; }
    .gc-card.slot-center .gc-name { font-size: 1.35rem; }
    .gc-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* Reduce animaciones si SO lo pide */
@media (prefers-reduced-motion: reduce) {
    .gc-orb, .gc-bg-bubbles span, .gc-heart, .gc-header-heart,
    .gc-chev, .gc-card { animation: none !important; transition: none !important; }
}

/* ════════════════════════════════════════════
 *  COMPARATIVA · VERSIÓN MÓVIL COMPACTA Y ANIMADA
 *  En desktop la vista actual queda intacta.
 *  En móvil:
 *    - Ocultamos las 3 cards verbose de .comparison-board
 *    - Mostramos solo el resumen .comparison-decision en horizontal 3-col
 *    - Card central (NOSOTROS) destacada con escala, glow y pulse
 *    - Animación de entrada secuencial (slide+fade)
 * ════════════════════════════════════════════ */
@media (max-width: 640px) {
    /* Adiós a las cards detalladas en móvil */
    .comparison-board { display: none !important; }

    .value-comparison { padding: 50px 16px; }
    .comparison-head { padding: 0; margin-bottom: 24px; }
    .comparison-head h2 {
        font-size: 1.55rem !important;
        line-height: 1.18;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .comparison-head p { display: none; } /* ocultamos descripción larga en móvil */

    /* La decisión simple ahora es la VISTA PRINCIPAL en móvil — 3 columnas */
    .comparison-decision {
        display: grid !important;
        grid-template-columns: 1fr 1.15fr 1fr;
        gap: 6px;
        padding: 6px 0;
        background: transparent;
        border: none;
        box-shadow: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-items: stretch;
        overflow: hidden;
    }

    .decision-simple {
        min-height: 0;
        padding: 12px 6px;
        border-radius: 12px;
        gap: 4px;
        animation: dec-enter 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) backwards;
        transition: transform 0.3s ease;
        min-width: 0;
        overflow: hidden;
    }
    .decision-simple:nth-child(1) { animation-delay: 0.1s; }
    .decision-simple:nth-child(2) { animation-delay: 0.25s; }
    .decision-simple:nth-child(3) { animation-delay: 0.4s; }

    @keyframes dec-enter {
        0%   { opacity: 0; transform: translateY(20px) scale(0.92); }
        100% { opacity: 1; transform: translateY(0) scale(1); }
    }

    .decision-simple span {
        font-size: 0.58rem;
        letter-spacing: 0.4px;
        font-weight: 800;
    }
    .decision-simple strong {
        font-size: 1rem !important;
        line-height: 1.1;
        font-weight: 900;
    }
    .decision-simple small {
        font-size: 0.6rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    /* Center card (NOSOTROS) destacada */
    .decision-simple.best {
        position: relative;
        animation: dec-enter 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) backwards,
                   dec-pulse 3s ease-in-out 1s infinite;
        box-shadow: 0 8px 24px rgba(4, 120, 87, 0.18);
        border: 1.5px solid #34d399;
        z-index: 2;
    }
    .decision-simple.best span { font-size: 0.62rem; }
    .decision-simple.best strong { font-size: 1.15rem !important; color: #047857; }
    .decision-simple.best small { font-size: 0.62rem; }

    /* Estrella encima del best */
    .decision-simple.best::before {
        content: '⭐';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1rem;
        background: white;
        padding: 2px 6px;
        border-radius: 999px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        animation: dec-star 2.4s ease-in-out infinite;
    }
    @keyframes dec-star {
        0%, 100% { transform: translateX(-50%) scale(1) rotate(0); }
        50%      { transform: translateX(-50%) scale(1.18) rotate(15deg); }
    }
    @keyframes dec-pulse {
        0%, 100% { box-shadow: 0 8px 24px rgba(4, 120, 87, 0.18); }
        50%      { box-shadow: 0 12px 32px rgba(4, 120, 87, 0.32); }
    }

    /* Bad y neutral más sutiles para no robar protagonismo */
    .decision-simple.bad,
    .decision-simple:not(.bad):not(.best) {
        opacity: 0.85;
        transform: scale(0.96);
    }
    .decision-simple.bad strong,
    .decision-simple:not(.bad):not(.best) strong {
        font-size: 0.95rem !important;
    }

    /* Tap interactivo: amplia un poco al tocar */
    .decision-simple:active { transform: scale(0.98); }

    /* Mini-points dentro de cada card móvil */
    .decision-points {
        list-style: none;
        margin: 6px 0 4px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    .decision-points li {
        font-size: 0.58rem;
        line-height: 1.15;
        font-weight: 600;
        color: #4b5563;
        text-align: center;
        word-break: break-word;
        hyphens: auto;
    }
    .decision-simple.bad .decision-points li { color: #b91c1c; opacity: 0.92; }
    .decision-simple.best .decision-points li { color: #047857; font-weight: 700; opacity: 1; }
    .decision-simple:not(.bad):not(.best) .decision-points li { color: #92400e; opacity: 0.92; }
}

/* Desktop: ocultar los mini-points (la full board ya tiene info detallada) */
@media (min-width: 641px) {
    .decision-points { display: none; }
}

/* En desktop la vista compacta de móvil se oculta — la full board manda */
@media (min-width: 641px) {
    /* Reset opacidad/escala que pone el móvil */
    .decision-simple { opacity: 1; transform: none; }
}

/* Mobile final: comparativa ultra clara, con Globo GO primero y sin exceso de datos. */
@media (max-width: 640px) {
    .value-comparison .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }

    .comparison-decision {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        max-width: 430px;
        margin: 0 auto !important;
        overflow: visible !important;
    }

    .decision-simple {
        border-radius: 18px !important;
    }

    .decision-simple.best {
        order: -1;
        padding: 22px 18px !important;
        min-height: 180px !important;
        background:
            radial-gradient(circle at 18% 12%, rgba(52, 211, 153, 0.22), transparent 32%),
            linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%) !important;
        border: 2px solid #10b981 !important;
        transform: none !important;
    }

    .decision-simple.best::before {
        content: 'Mejor opción';
        top: -14px;
        width: max-content;
        color: #047857;
        font-size: 0.68rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .decision-simple.best::after {
        content: 'Más control, menos lío y todo guiado paso a paso.';
        display: block;
        max-width: 260px;
        margin-top: 3px;
        color: #047857;
        font-size: 0.8rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .decision-simple.best span {
        font-size: 0.78rem !important;
        letter-spacing: 0.08em !important;
    }

    .decision-simple.best strong {
        font-size: 1.55rem !important;
        line-height: 1.05 !important;
    }

    .decision-simple.best small {
        font-size: 0.75rem !important;
    }

    .decision-simple.best .decision-points {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 12px 0 5px;
    }

    .decision-simple.best .decision-points li {
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
    }

    .decision-simple.bad,
    .decision-simple:not(.bad):not(.best) {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "label tag"
            "price tag";
        align-items: center;
        min-height: 74px !important;
        padding: 13px 14px !important;
        opacity: 0.72 !important;
        transform: none !important;
        text-align: left !important;
    }

    .decision-simple.bad span,
    .decision-simple:not(.bad):not(.best) span {
        grid-area: label;
        font-size: 0.66rem !important;
        letter-spacing: 0.08em !important;
        text-align: left;
    }

    .decision-simple.bad strong,
    .decision-simple:not(.bad):not(.best) strong {
        grid-area: price;
        margin-top: 2px;
        font-size: 1.05rem !important;
        line-height: 1.1 !important;
        text-align: left;
    }

    .decision-simple.bad small,
    .decision-simple:not(.bad):not(.best) small {
        grid-area: tag;
        align-self: center;
        justify-self: end;
        padding: 6px 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        font-size: 0.58rem !important;
        line-height: 1;
        white-space: nowrap;
    }

    .decision-simple.bad .decision-points,
    .decision-simple:not(.bad):not(.best) .decision-points {
        display: none !important;
    }
}

/* ════════════════════════════════════════════
 *  MÓVIL · CENTRAR TIMELINE (Cómo funciona)
 *  El @media 900px ya existente desplaza con margin-left:60px y text-align:left
 *  para dejar la línea lateral. En móviles muy pequeños eso queda raro:
 *  ocultamos la línea y centramos todo.
 * ════════════════════════════════════════════ */
@media (max-width: 640px) {
    .timeline-line { display: none !important; }

    .step-row,
    .step-row:nth-child(even) {
        margin-left: 0 !important;
        align-items: center !important;
        text-align: center !important;
    }
    .step-content,
    .step-row:nth-child(even) .step-content {
        text-align: center !important;
        padding: 0 12px;
    }
    .step-visual {
        justify-content: center !important;
    }
    .visual-card-3d {
        margin: 0 auto !important;
    }
}

/* ════════════════════════════════════════════
 *  UNIFICAR FONDO ENTRE SECCIONES
 *  Elimina las líneas duras visibles entre bloques de la página
 * ════════════════════════════════════════════ */
body { background: var(--bg-page); }

/* Cualquier sección con fondo blanco/cream se vuelve transparente para
   heredar el bg-page del body — adiós líneas */
.compare-section,
.product-gallery,
.how-section,
.section-padding {
    background: transparent;
}

/* Mantener variantes que SÍ deben destacar (el contraste entre sec) */
.section-alt-bg { background: var(--bg-alt); }

/* ════════════════════════════════════════════════════════════
   CUESTIONARIO IA — Modal y elementos
   ════════════════════════════════════════════════════════════ */

/* Botón "Test 1 min" en nav */
.btn-quiz {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fef3f2 0%, #fff 100%);
    color: #c8278a;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1.5px solid rgba(200, 39, 138, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
}
.btn-quiz:hover {
    background: linear-gradient(135deg, #ffeded 0%, #fff5f8 100%);
    border-color: #c8278a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 39, 138, 0.18);
}
@media (max-width: 768px) {
    .btn-quiz {
        font-size: 0.78rem;
        padding: 8px 12px;
        margin-right: 4px;
    }
}

/* Link sutil bajo el CTA del hero */
.link-quiz-hero {
    background: transparent;
    border: 0;
    color: #888;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 6px 12px;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(200, 39, 138, 0.4);
}
.link-quiz-hero:hover {
    color: #c8278a;
    text-decoration-color: #c8278a;
}

/* Overlay del modal */
.cuestionario-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 20, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: cuestionarioFadeIn 0.25s ease-out;
}
.cuestionario-overlay.active {
    display: flex;
}
@keyframes cuestionarioFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cuestionario-modal {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding: 32px 28px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: cuestionarioSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cuestionarioSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cuestionario-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #f5f5f7;
    color: #555;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.15s ease;
    z-index: 2;
}
.cuestionario-close:hover {
    background: #ebebee;
    color: #111;
    transform: rotate(90deg);
}

.cuestionario-progress {
    height: 4px;
    background: #f0f0f3;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
    margin-top: 8px;
}
.cuestionario-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c8278a 0%, #ff6b9d 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 999px;
}

.cuestionario-step {
    display: none;
    animation: stepFade 0.3s ease-out;
}
.cuestionario-step.active {
    display: block;
}
@keyframes stepFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cuestionario-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.cuestionario-subtitle {
    color: #777;
    font-size: 0.96rem;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* Opciones genéricas (botones de ocasión, presupuesto) */
.cuestionario-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.cuestionario-options-budget {
    grid-template-columns: 1fr;
}
.cuestionario-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #ececef;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
    font-size: 0.95rem;
    color: #222;
    font-family: inherit;
}
.cuestionario-option:hover {
    border-color: #c8278a;
    background: #fff5f8;
    transform: translateY(-1px);
}
.cuestionario-option.selected {
    border-color: #c8278a;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
    box-shadow: 0 4px 12px rgba(200, 39, 138, 0.15);
}
.cuestionario-option .opt-emoji {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.cuestionario-option .opt-text {
    font-weight: 600;
}

/* Slider de invitados */
.cuestionario-slider-wrap {
    padding: 8px 4px 0;
}
.cuestionario-slider-value {
    text-align: center;
    margin-bottom: 16px;
}
.cuestionario-slider-value #invitadosValue {
    display: inline-block;
    min-width: 60px;
    font-size: 3rem;
    font-weight: 800;
    color: #c8278a;
    line-height: 1;
    letter-spacing: -0.02em;
}
.cuestionario-slider-value span:last-child {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.cuestionario-slider {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c8278a 0%, #c8278a var(--v, 17%), #ececef var(--v, 17%), #ececef 100%);
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}
.cuestionario-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #c8278a;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(200, 39, 138, 0.3);
    transition: transform 0.1s ease;
}
.cuestionario-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}
.cuestionario-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #c8278a;
    cursor: grab;
}
.cuestionario-slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #999;
    font-size: 0.78rem;
}

/* Tarjetas de estética */
.cuestionario-estetica {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.cuestionario-estetica-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border: 2px solid #ececef;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}
.cuestionario-estetica-card:hover {
    border-color: #c8278a;
    transform: translateY(-2px);
}
.cuestionario-estetica-card.selected {
    border-color: #c8278a;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
    box-shadow: 0 6px 16px rgba(200, 39, 138, 0.18);
}
.estetica-swatches {
    display: flex;
    gap: 4px;
}
.estetica-swatches span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.estetica-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #222;
    text-align: center;
}

/* Loading */
.cuestionario-loading {
    text-align: center;
    padding: 40px 20px;
}
.cuestionario-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f0f0f3;
    border-top-color: #c8278a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 24px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Resultado */
.cuestionario-result {
    text-align: center;
    padding: 8px 0;
}
.cuestionario-result-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c8278a 0%, #ff6b9d 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.cuestionario-result-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.cuestionario-result-motivo {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 24px;
    font-style: italic;
}
.cuestionario-result-paleta {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 0 24px;
    flex-wrap: wrap;
}
.cuestionario-result-paleta .paleta-color {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.cuestionario-result-paleta .paleta-swatch {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.cuestionario-result-paleta .paleta-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
}
.cuestionario-result-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    padding: 14px;
    background: #f9f9fb;
    border-radius: 12px;
    color: #555;
    font-size: 0.92rem;
}
.cuestionario-result-meta strong {
    color: #111;
}
.cuestionario-cta-pedido {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px 24px;
    font-size: 1rem;
}
.cuestionario-link-redo {
    background: transparent;
    border: 0;
    color: #888;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 8px;
    font-family: inherit;
}
.cuestionario-link-redo:hover {
    color: #c8278a;
}

/* Error */
.cuestionario-error {
    text-align: center;
    padding: 24px 16px;
}
.cuestionario-error-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}
.cuestionario-error-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

/* Footer con navegación */
.cuestionario-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f3;
}
.cuestionario-footer.hidden { display: none; }
.cuestionario-btn-back, .cuestionario-btn-next {
    padding: 10px 18px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.15s ease;
    font-family: inherit;
}
.cuestionario-btn-back {
    background: #f5f5f7;
    color: #555;
}
.cuestionario-btn-back:hover:not(:disabled) {
    background: #ebebee;
    color: #111;
}
.cuestionario-btn-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.cuestionario-btn-next {
    background: #111;
    color: #fff;
}
.cuestionario-btn-next:hover:not(:disabled) {
    background: #c8278a;
    transform: translateY(-1px);
}
.cuestionario-btn-next:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
}
.cuestionario-step-indicator {
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .cuestionario-modal {
        padding: 24px 18px 16px;
        border-radius: 20px;
    }
    .cuestionario-title { font-size: 1.3rem; }
    .cuestionario-subtitle { font-size: 0.9rem; }
    .cuestionario-options { grid-template-columns: 1fr; }
    .cuestionario-estetica { grid-template-columns: 1fr; }
    .cuestionario-estetica-card {
        flex-direction: row;
        justify-content: flex-start;
    }
    .cuestionario-slider-value #invitadosValue { font-size: 2.4rem; }
}
