:root {
    --fuchsia: #E91E8C;
    --fuchsia-hover: #C41678;
    --fuchsia-pale: rgba(233, 30, 140, 0.07);
    --black: #0A0A0A;
    --gray-dark: #4A4A4A;
    --gray-mid: #8A8A8A;
    --gray-light: #F7F7F7;
    --gray-border: #EBEBEB;
    --white: #FFFFFF;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-card: 0 2px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
    background: var(--white);
}

h1,
h2,
h3,
.bricolage {
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* Navbar */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gray-border);
    border-radius: 999px;
    padding: 10px 10px 10px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: auto;
    min-width: 600px;
    max-width: 900px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.logo .che {
    color: var(--black);
}

.logo .ag {
    color: var(--fuchsia);
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-btn.desk {
    background: var(--fuchsia);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.nav-btn.desk:hover {
    background: var(--fuchsia-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 20px;
    height: 1.5px;
    background: var(--black);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 16px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    font-size: 16px;
    padding: 12px 16px;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-border);
}

.mobile-menu .nav-btn {
    margin-top: 12px;
    width: 100%;
    background: var(--fuchsia);
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    display: inline-block;
    font-size: 16px;
    border: none;
    border-radius: 999px;
}

/* Hero */
.hero {
    padding: 176px 32px 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-left {
    width: 55%;
}

.hero-right {
    width: 45%;
}

.pill-badge {
    background: var(--fuchsia-pale);
    color: var(--fuchsia);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p.sub {
    font-size: 20px;
    font-weight: 300;
    color: var(--gray-dark);
    line-height: 1.65;
    margin-bottom: 28px;
}

.client-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 999px;
    padding: 10px 20px;
    margin-bottom: 28px;
}

.cb-avatars {
    display: flex;
}

.cb-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-left: -8px;
}

.cb-av:first-child {
    margin-left: 0;
}

.cb-text {
    font-size: 14px;
    color: var(--gray-mid);
}

.cb-text span {
    font-weight: 700;
    color: var(--black);
}

.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid var(--gray-border);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.htb-stars {
    color: #FFB800;
    font-size: 13px;
    display: flex;
    gap: 2px;
    letter-spacing: 1px;
}

.htb-content {
    font-size: 13px;
    color: var(--gray-dark);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-trust-bar {
        padding: 6px 12px;
        gap: 8px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .htb-stars {
        font-size: 10px;
        gap: 1px;
        letter-spacing: 0.5px;
    }

    .htb-content {
        font-size: 10.5px;
        line-height: 1.3;
    }

    .cb-av {
        width: 22px;
        height: 22px;
        font-size: 8.5px;
        margin-left: -6px;
    }
}

.htb-content strong {
    color: var(--black);
    font-weight: 700;
}

.hero-cta {
    background: var(--fuchsia);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 36px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 28px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.hero-cta:hover {
    background: var(--fuchsia-hover);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Top Trust Ticker Style */
.trust-ticker-container {
    background: #fff;
    border-bottom: 1px solid var(--gray-border);
    padding: 10px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 84px;
}

.trust-ticker-track {
    display: flex;
    width: max-content;
    animation: trustTicker 60s linear infinite;
    gap: 40px;
    align-items: center;
}

.tt-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-dark);
    white-space: nowrap;
    font-weight: 500;
}

.tt-item strong {
    color: var(--black);
    font-weight: 700;
}

.tt-item .stars {
    color: #FFB800;
    font-size: 14px;
}

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

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

.h-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-dark);
}

.h-badge svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fuchsia-pale);
    flex-shrink: 0;
}

/* Insta Card */
.insta-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.ic-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E8C 0%, #9C27B0 100%);
    margin: 0 auto 14px;
}

.ic-name {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--black);
}

.ic-bio {
    font-size: 13px;
    color: var(--gray-mid);
    text-align: center;
    margin-bottom: 24px;
}

.ic-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: var(--fuchsia);
    text-align: center;
    line-height: 1;
}

.ic-label {
    font-size: 13px;
    color: var(--gray-mid);
    text-align: center;
    margin-bottom: 24px;
    margin-top: 4px;
}

.ic-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}

.ic-s-val {
    font-weight: 600;
    font-size: 15px;
}

.ic-s-lbl {
    font-size: 12px;
    color: var(--gray-mid);
}

.ic-s-act {
    color: var(--fuchsia);
}

.ic-prog-bg {
    margin-top: 20px;
    height: 3px;
    background: var(--gray-border);
    border-radius: 2px;
}

.ic-prog-fill {
    height: 100%;
    background: var(--fuchsia);
    border-radius: 2px;
    width: 0%;
    animation: fillBar 3s ease-out forwards;
}

@keyframes fillBar {
    to {
        width: 100%;
    }
}

/* Social Proof */
.social-proof {
    background: #0A0A0A;
    padding: 100px 32px;
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, rgba(233, 30, 140, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.sp-counters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 64px;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.sp-counters>div {
    flex: 1;
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 250px;
}

.sp-counters>div:last-child {
    border-right: none;
}

.sp-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 72px;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.fuchsia-symbol {
    color: #E91E8C;
}

.sp-lbl {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.sp-ticker-wrap {
    margin-top: 40px;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    position: relative;
    z-index: 1;
}

.sp-ticker {
    display: flex;
    gap: 24px;
    animation: slideLeft 25s linear infinite;
    width: max-content;
}

.sp-tick {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 10px 20px;
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .sp-num {
        font-size: 56px;
    }

    .sp-counters>div {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .social-proof {
        padding: 80px 24px;
    }

    .sp-counters {
        flex-direction: column;
        gap: 48px;
    }

    .sp-counters>div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0 0 40px 0;
        width: 100%;
    }

    .sp-counters>div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .sp-num {
        font-size: 64px;
    }
}

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

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

/* Nichos Section */
.nichos-section {
    background: #F7F7F7;
    padding: 100px 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}

.nichos-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 32px;
}

.nichos-badge {
    background: var(--fuchsia-pale);
    color: var(--fuchsia);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nichos-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.nichos-title span {
    color: var(--fuchsia);
}

.nichos-sub {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.nichos-ticker-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.nichos-ticker {
    display: flex;
    gap: 16px;
    width: max-content;
}

.nichos-ticker.left {
    animation: scrollNichosLeft 40s linear infinite;
}

.nichos-ticker.right {
    animation: scrollNichosRight 40s linear infinite;
}

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

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

@keyframes scrollNichosRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.nicho-pill {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
}

/* Profile Cards Ticker */
.profiles-ticker-wrap {
    margin-top: 40px;
}

.profile-card {
    background: var(--white);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-border);
}

.profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-user {
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
}

.profile-stats {
    font-size: 13px;
    color: var(--gray-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-growth {
    color: #16A34A;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nichos-title {
        font-size: 32px;
    }

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

/* Servicios */
.servicios {
    background: linear-gradient(180deg, #fff 0%, #fdf2f8 50%, #fff 100%);
}

.servicios-inner {
    padding: 120px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 56px;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 18px;
    color: var(--gray-mid);
    text-align: center;
    margin-bottom: 40px;
}

.svc-header-badge {
    background: var(--fuchsia-pale);
    color: var(--fuchsia);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-align: center;
    display: inline-block;
}

.svc-oferta-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: var(--fuchsia);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
    white-space: nowrap;
}

.svc-tabs-wrapper {
    width: 100%;
    margin-bottom: 48px;
}

.svc-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.svc-tab {
    border: 1.5px solid var(--gray-border);
    background: white;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 999px;
    color: var(--gray-dark);
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    white-space: nowrap;
}

.svc-tab:hover:not(.active) {
    border-color: var(--fuchsia);
    color: var(--fuchsia);
}

.svc-tab.active {
    background: var(--fuchsia);
    color: white;
    border-color: var(--fuchsia);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.25);
}

/* Mobile Services Cards */
.svc-mobile-cards {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 32px;
}

.svc-mobile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1.5px solid var(--gray-border);
    border-radius: 18px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.svc-mobile-card.active {
    border-color: var(--fuchsia);
    background: #fffafa;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.12);
    transform: scale(1.02);
}

.svc-mobile-card .svc-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-dark);
    flex-shrink: 0;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-mobile-card.active .svc-icon {
    color: var(--fuchsia);
}

.svc-mobile-card .svc-icon svg {
    width: 100%;
    height: 100%;
}

.svc-mobile-card .svc-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    transition: color 0.25s;
}

.svc-mobile-card .svc-desc {
    font-size: 13px;
    color: var(--gray-mid);
}

.svc-mobile-card.active .svc-name {
    color: var(--fuchsia);
}

/* Platform Selector */
.platform-selector {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.platform-btn {
    padding: 10px 28px;
    border-radius: 999px;
    border: 1.5px solid var(--gray-border);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    background: white;
    color: var(--gray-dark);
}

.platform-btn:hover:not(.active) {
    border-color: var(--black);
    color: var(--black);
}

.platform-btn.active {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

@media (max-width: 768px) {
    .svc-tabs-wrapper {
        display: none;
    }

    .svc-mobile-cards {
        display: flex;
    }

    .section-title {
        font-size: 40px;
    }
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.packs-grid-center {
    grid-template-columns: repeat(3, minmax(0, 320px));
    justify-content: center;
    max-width: 1060px;
    margin: 48px auto 0;
}

@media (max-width: 1024px) {
    .packs-grid-center {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        max-width: 100%;
    }
}

.s-card {
    background: white;
    border: 1.5px solid var(--gray-border);
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.25s;
    position: relative;
}

.s-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
    border-color: var(--fuchsia);
}

.s-card.recomendado {
    border: 2px solid var(--black);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.s-mvp-badge,
.s-recomendado-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 2;
}

.s-mvp-badge {
    background: var(--fuchsia);
}

.s-recomendado-badge {
    background: var(--black);
}

.s-nuevo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--black);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 2;
}

.s-empty {
    height: 28px;
}

.s-garantia-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f8f0;
    color: #1a8a4a;
    border: 1px solid #a8e6c4;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    margin: 6px auto 0;
    letter-spacing: 0.01em;
}

.s-qty {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 54px;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-top: 16px;
    margin-bottom: 0px;
    line-height: 1;
}

.s-lbl {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 6px;
}

.s-platform-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-mid);
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 999px;
    padding: 3px 8px;
    margin-bottom: 10px;
}

.s-platform-chip img {
    width: 11px;
    height: 11px;
    object-fit: contain;
}

.s-platform-chip svg {
    flex-shrink: 0;
}

.s-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.s-stars-icons {
    display: flex;
    gap: 2px;
}

.s-stars-count {
    font-size: 12px;
    color: var(--gray-mid);
}

.s-sep {
    border-top: 1px solid var(--gray-border);
    margin-bottom: 16px;
}

.s-price-orig {
    text-decoration: line-through;
    color: var(--gray-mid);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
}

.s-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--fuchsia);
    line-height: 1.1;
}

.s-ars-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: 4px;
}

.s-ars {
    font-size: 12px;
    color: var(--gray-mid);
    letter-spacing: 0.08em;
}

.s-off-badge {
    background: #fff0f7;
    color: var(--fuchsia);
    border: 1px solid var(--fuchsia);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.s-btn {
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.s-btn:hover {
    background: var(--fuchsia);
}

.s-card.mvp .s-btn {
    background: var(--fuchsia);
}

.s-card.mvp .s-btn:hover {
    background: var(--fuchsia-hover);
}

.s-skeleton {
    background: var(--gray-light);
    border-radius: 28px;
    height: 320px;
    animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* Modal Checkout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-mid);
    background: none;
    border: none;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
    color: var(--black);
    background: var(--gray-light);
}

.m-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 32px;
}

.m-step {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-border);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.m-step.done {
    background: var(--black);
}

.m-step.active {
    background: var(--fuchsia);
    width: 28px;
    border-radius: 999px;
}

.m-line {
    height: 1px;
    background: var(--gray-border);
    flex: 1;
    z-index: 1;
    transition: all 0.3s ease;
}

.m-line.done {
    background: var(--black);
}

.m-view {
    display: none;
}

.m-view.active {
    display: block;
}

.m-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--black);
    margin-bottom: 8px;
}

.m-sub {
    font-size: 15px;
    color: var(--gray-mid);
    margin-bottom: 24px;
}

.m-pill {
    background: var(--fuchsia-pale);
    color: var(--fuchsia);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 24px;
}

.m-input {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid var(--gray-border);
    border-radius: 16px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.m-input:focus {
    border-color: var(--fuchsia);
}

.m-input.error {
    border-color: #E53935;
}

.m-err {
    font-size: 13px;
    color: #E53935;
    display: none;
    margin-bottom: 12px;
}

.m-btn {
    background: var(--fuchsia);
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.m-btn:hover {
    background: var(--fuchsia-hover);
}

.m-btn-wa {
    background: #25D366;
    color: white;
}

.m-btn-wa:hover {
    background: #20BA56;
}

.m-btn-sec {
    background: var(--gray-light);
    color: var(--gray-dark);
    margin-top: 10px;
}

.m-btn-sec:hover {
    background: #E8E8E8;
}

.m-note {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 24px;
}

.m-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--fuchsia);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

/* Upselling cards */
.ups-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.ups-card {
    border: 2px solid var(--gray-border);
    border-radius: 18px;
    padding: 18px 20px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.ups-card:hover {
    border-color: #ccc;
}

.ups-card.active {
    border-color: var(--fuchsia);
    background: var(--fuchsia-pale);
}

.ups-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.ups-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
}

.ups-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}

.ups-badge-gray {
    background: #F0F0F0;
    color: var(--gray-mid);
}

.ups-badge-fuchsia {
    background: var(--fuchsia);
    color: white;
}

.ups-desc {
    font-size: 14px;
    color: var(--gray-mid);
    margin: 0 0 4px;
}

.ups-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.ups-card.active .ups-price {
    color: var(--fuchsia);
}

.ups-badge-green {
    background: #D1FAE5;
    color: #065F46;
}

.ups-card-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* Waiting screen */
.waiting-section {
    max-width: 520px;
    margin: 0 auto;
    padding: 80px 32px;
    text-align: center;
}

.waiting-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--gray-border);
    border-top-color: var(--fuchsia);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 28px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.waiting-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 12px;
}

.waiting-sub {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-bottom: 36px;
}

.waiting-summary {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 24px 28px;
    text-align: left;
    margin-bottom: 28px;
}

.ws-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-border);
}

.ws-row:last-child {
    border-bottom: none;
}

.ws-label {
    font-size: 14px;
    color: var(--gray-mid);
}

.ws-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.ws-total {
    color: var(--fuchsia);
    font-size: 17px;
}

.waiting-btn {
    background: var(--black);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.waiting-btn:hover {
    background: #222;
}

.transfer-box {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 24px 28px;
    text-align: left;
    margin-bottom: 16px;
}

.waiting-warning {
    font-size: 13.5px;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 36px;
    background: #fff8e1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ffe082;
    line-height: 1.5;
}

.ws-val-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ws-copy-btn {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.ws-copy-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

/* Como Funciona */
.como-funciona,
.garantias {
    background: var(--gray-light);
    padding: 80px 32px;
    border-top: 1px solid var(--gray-border);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cf-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 32px 28px;
}

.cf-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cf-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 10px;
}

.cf-desc {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.65;
}

/* Por qué funciona & Garantias */
.pqf {
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pqf-card {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.pqf-icon {
    width: 48px;
    height: 48px;
    background: var(--fuchsia-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pqf-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--fuchsia);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pqf-title {
    font-weight: 700;
    font-size: 19px;
    color: var(--black);
    margin: 0 0 8px;
}

.pqf-desc {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.6;
}

.garantias .pqf-card {
    background: var(--white);
}

/* Cuenta CTA */
.cuenta-cta {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 32px;
}

.cuenta-cta-inner {
    background: var(--black);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cuenta-cta-text {
    flex: 1;
    min-width: 260px;
}

.cuenta-cta-badge {
    display: inline-block;
    background: var(--fuchsia-pale);
    color: var(--fuchsia);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.cuenta-cta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 10px;
}

.cuenta-cta-desc {
    font-size: 15px;
    color: #C4C4C4;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 480px;
}

.cuenta-cta-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.cuenta-cta-list li {
    font-size: 14px;
    color: #E5E5E5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cuenta-cta-list li::before {
    content: '✓';
    color: var(--fuchsia);
    font-weight: 700;
}

.cuenta-cta-btn {
    background: var(--fuchsia);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

.cuenta-cta-btn:hover {
    background: var(--fuchsia-hover);
}

@media (max-width: 640px) {
    .cuenta-cta-inner {
        padding: 36px 24px;
        text-align: center;
        justify-content: center;
    }

    .cuenta-cta-list {
        justify-content: center;
    }

    .cuenta-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* Testimonios */
.testimonios {
    padding: 80px 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.t-carousel-wrapper {
    position: relative;
}

.t-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.t-carousel-track.exiting {
    opacity: 0;
    transform: translateY(8px);
}

.t-carousel-track.entering {
    opacity: 0;
    transform: translateY(-8px);
}

.t-carousel-track.visible {
    opacity: 1;
    transform: translateY(0);
}

.t-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
}

.t-stars {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 16px;
}

.t-text {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fuchsia-pale);
    color: var(--fuchsia);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.t-loc {
    font-size: 12px;
    color: var(--gray-mid);
}

/* Flechas del carrusel */
.t-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
    color: var(--gray-dark);
}

.t-arrow:hover {
    border-color: var(--fuchsia);
    color: var(--fuchsia);
}

.t-arrow-prev {
    left: -20px;
}

.t-arrow-next {
    right: -20px;
}

/* Dots */
.t-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-border);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.t-dot.active {
    background: var(--fuchsia);
    transform: scale(1.2);
}

.t-mobile-list {
    display: none;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .t-carousel-wrapper,
    .t-dots {
        display: none;
    }

    .t-mobile-list {
        display: flex;
    }

    .testimonios {
        padding: 60px 20px;
    }
}

/* CTA Final */
.cta-final {
    background: var(--black);
    padding: 100px 32px;
    text-align: center;
}

.cta-f-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-f-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 32px;
}

.f-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.f-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.f-col-l .logo {
    color: var(--white);
}

.f-col-l .logo .che {
    color: var(--white);
}

.f-col-l .f-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    max-width: 240px;
}

.f-col-r {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.f-col-r a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.f-col-r a:hover {
    color: var(--white);
}

.f-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.f-bot p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        left: 16px;
        right: 16px;
        transform: none;
        min-width: unset;
        width: auto;
        padding: 10px 16px;
    }

    .nav-links,
    .nav-btn.desk {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 136px 24px 80px;
        flex-direction: column;
        gap: 40px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        margin-top: 0px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p.sub {
        font-size: 17px;
    }

    .section-title {
        font-size: 34px;
    }

    .sp-counters,
    .sp-ticker-wrap {
        padding: 0 24px;
    }

    .servicios,
    .como-funciona,
    .pqf,
    .garantias,
    .testimonios,
    .cta-final {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-f-title {
        font-size: 34px;
    }

    .modal-box {
        padding: 28px 20px;
        border-radius: 24px;
        width: 95%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .servicios .section-title {
        font-size: 36px;
    }

    .servicios .section-sub {
        font-size: 16px;
    }

    .servicios-inner {
        padding: 80px 20px;
    }

    .svc-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-bottom: 32px;
    }

    .svc-tab {
        width: 100%;
        padding: 13px 8px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 999px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 360px;
        margin: 0 auto;
    }

    .s-card {
        padding: 28px 24px;
    }

    .s-qty {
        font-size: 48px;
    }

    .s-price {
        font-size: 28px;
    }

    .s-btn {
        padding: 16px;
        font-size: 16px;
        border-radius: 16px;
    }

    .s-card.mvp {
        margin-top: 20px;
    }

    .s-mvp-badge {
        font-size: 11px;
        padding: 5px 14px;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .s-garantia-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .svc-oferta-badge {
        display: none;
    }
}

/* Timer Banner */
.timer-banner {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a10 100%);
    border-radius: 20px;
    padding: 20px 28px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.timer-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--fuchsia);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.timer-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    transition: color 0.3s ease;
}

.timer-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    min-width: 64px;
}

.timer-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: white;
    line-height: 1;
}

.timer-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.timer-sep {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    align-self: flex-start;
    padding-top: 10px;
}

.timer-status-text {
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 500;
}

.s-off-badge.timer-active {
    background: var(--fuchsia) !important;
    color: white !important;
    border-color: var(--fuchsia) !important;
    animation: pulse-timer 2s infinite;
}

@keyframes pulse-timer {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.m-btn .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

/* Success Step Modal */
.success-icon-modal {
    width: 64px;
    height: 64px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-icon-modal svg {
    width: 32px;
    height: 32px;
}

@keyframes scale-up {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .timer-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .timer-right {
        justify-content: center;
        width: 100%;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 32px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.active {
    border-color: var(--fuchsia);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.05);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    gap: 16px;
}

.faq-question {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--black);
    flex: 1;
    margin: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--fuchsia);
    color: white;
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-body {
    max-height: 400px;
    padding: 0 28px 24px;
}

.faq-answer {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 20px;
    }

    .faq .section-title {
        font-size: 34px;
    }

    .faq-header {
        padding: 18px 20px;
    }

    .faq-item.active .faq-body {
        padding: 0 20px 20px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* UGC Section */
.ugc-section {
    padding: 100px 32px;
    background: var(--white);
    text-align: center;
}

.ugc-eyebrow {
    color: var(--fuchsia);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: inline-block;
    background: var(--fuchsia-pale, #fff0f7);
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
}

.ugc-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--black);
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.ugc-carousel-wrap {
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.ugc-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ugc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
}

@media (max-width: 1024px) {
    .ugc-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ugc-carousel::-webkit-scrollbar {
        display: none;
    }

    .ugc-card {
        flex: 0 0 calc(33.333% - 14px);
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .ugc-card {
        flex: 0 0 85%;
    }

    .ugc-title {
        font-size: 36px;
    }

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

.ugc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.ugc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 0 0 20px 20px;
}

.ugc-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.ugc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid white;
    color: white;
    flex-shrink: 0;
}

.ugc-user-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ugc-name {
    color: white;
    font-weight: 700;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.1;
}

.ugc-handle {
    color: #ddd;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
}

.ugc-badge {
    background: var(--fuchsia);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    margin-top: 4px;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

/* Social Notification Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    #notif-social {
        bottom: 16px !important;
        left: 16px !important;
        right: 16px !important;
        width: calc(100% - 32px) !important;
        max-width: none !important;
    }
}


/* Payment Methods Bar & Packs Center Grid */
.payment-methods-bar {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 24px;
                    flex-wrap: wrap;
                    margin-top: 36px;
                    padding-top: 28px;
                    border-top: 1px solid var(--gray-border);
                }

                .payment-method-item {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    font-size: 14px;
                    color: var(--gray-mid);
                }

                .payment-method-divider {
                    width: 1px;
                    height: 16px;
                    background: var(--gray-border);
                }

                @media (max-width: 768px) {
                    .payment-methods-bar {
                        flex-direction: column;
                        gap: 12px;
                    }

                    .payment-method-divider {
                        display: none;
                    }
                }
