/* ============================================
   AgendaBeauty — Premium SaaS Stylesheet
   Inspired by Stripe, Notion, Calendly
   ============================================ */

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ─ Color System ─ */
    --white: #ffffff;
    --black: #0a0a0a;

    /* Neutrals — Stripe-style cool grays */
    --gray-25: #fcfcfd;
    --gray-50: #f9fafb;
    --gray-100: #f2f4f7;
    --gray-200: #eaecf0;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-500: #667085;
    --gray-600: #475467;
    --gray-700: #344054;
    --gray-800: #1d2939;
    --gray-900: #101828;

    /* Brand — refined rose */
    --brand-25: #fff5f7;
    --brand-50: #ffeef2;
    --brand-100: #ffd6e0;
    --brand-200: #ffadc2;
    --brand-300: #ff85a3;
    --brand-400: #f06087;
    --brand-500: #e04672;
    --brand-600: #c73a62;
    --brand-700: #a13050;
    --brand-gold: #c5a47e;

    /* Accent */
    --violet-500: #7c3aed;
    --blue-500: #3b82f6;

    /* ─ Typography ─ */
    --font: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;

    /* ─ Sizing ─ */
    --max-w: 1140px;
    --max-w-narrow: 720px;

    /* ─ Radius ─ */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-full: 100px;

    /* ─ Shadows ─ */
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, .05);
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, .1), 0 1px 2px rgba(16, 24, 40, .06);
    --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, .1), 0 2px 4px -2px rgba(16, 24, 40, .06);
    --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, .08), 0 4px 6px -2px rgba(16, 24, 40, .03);
    --shadow-xl: 0 20px 24px -4px rgba(16, 24, 40, .08), 0 8px 8px -4px rgba(16, 24, 40, .03);
    --shadow-2xl: 0 24px 48px -12px rgba(16, 24, 40, .18);
    --shadow-badge: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-brand: 0 1px 2px rgba(224, 70, 114, .2), 0 8px 24px rgba(224, 70, 114, .15);

    /* ─ Transitions ─ */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --t-fast: .15s var(--ease);
    --t-base: .25s var(--ease);
    --t-slow: .4s var(--ease);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font);
}

/* ── LAYOUT ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section--soft {
    background: var(--gray-50);
}

.section--dark {
    background: var(--gray-900);
    overflow: hidden;
}

/* ── SECTION HEADS ── */
.section__head {
    max-width: 680px;
    margin: 0 auto 72px;
    text-align: center;
}

.section__head--narrow {
    max-width: 600px;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-600);
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-full);
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section__tag--light {
    color: var(--brand-200);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .1);
}

.section__h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section__h2--light {
    color: var(--white);
}

.section__desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
}

.section__desc--light {
    color: var(--gray-400);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all var(--t-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--brand-500);
    color: var(--white);
    box-shadow: var(--shadow-brand);
}

.btn--primary:hover {
    background: var(--brand-600);
    box-shadow: 0 1px 2px rgba(224, 70, 114, .25), 0 12px 32px rgba(224, 70, 114, .2);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xs);
}

.btn--secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.btn--white {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--r-md);
}

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all var(--t-base);
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-base);
}

.nav.scrolled::before {
    border-bottom-color: var(--gray-200);
}

.nav__container {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-900);
    letter-spacing: -.3px;
}

.nav__logo strong {
    font-weight: 700;
}

.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 22px;
    line-height: 1;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.nav__logo-text .logo-agenda {
    color: var(--brand-500);
}

.nav__logo-text .logo-beauty {
    color: var(--brand-gold);
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--t-fast);
}

.nav__links a:hover {
    color: var(--gray-900);
}

.nav__actions {
    display: flex;
    align-items: center;
}

.nav__cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-500);
    transition: all var(--t-fast);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__cta-arrow {
    transition: transform var(--t-fast);
    display: inline-block;
}

.nav__cta:hover {
    color: var(--brand-600);
}

.nav__cta:hover .nav__cta-arrow {
    transform: translateX(3px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 10;
}

.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 1px;
    transition: all var(--t-fast);
    transform-origin: center;
}

.nav__toggle.active span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav__toggle.active span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

.nav__mobile {
    display: none;
    position: relative;
    z-index: 2;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px 28px;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}

.nav__mobile.open {
    display: flex;
}

.nav__mobile a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 4px 0;
}

/* ── HERO ── */
.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero__gradient {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(224, 70, 114, .06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: var(--brand-25);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-600);
    margin-bottom: 28px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-400);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--brand-300);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.hero__h1 {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: var(--gray-900);
    max-width: 850px;
    margin: 0 auto 24px;
}

.hero__h1 span {
    color: var(--brand-400);
}

.hero__sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 28px;
}

.hero__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: all var(--t-base);
}

.hero-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--gray-200);
}

.hero-card__icon {
    font-size: 24px;
}

.hero-card__content h4 {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.hero-card__content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.4;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.hero__proof-avatars {
    display: flex;
}

.hero__proof-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
}

.hero__proof-avatars span:first-child {
    margin-left: 0;
}

.hero__proof p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
}


/* Hero social proof badge */
.hero__social-badge {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 40px;
    background: var(--black);
    border: none;
    border-radius: var(--r-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    margin-top: 40px;
}

.hero__social-avatars {
    display: flex;
    align-items: center;
}

.social-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-left: -14px;
}

.social-avatar:first-child {
    margin-left: 0;
}

.hero__social-text {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

.hero__social-text strong {
    font-weight: 700;
    color: var(--gray-900);
}

/* Hero visual — browser frame */
.hero__visual {
    max-width: 280px;
    width: 90%;
    margin: 0 auto;
}

.hero__visual-frame {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    box-shadow: 0 40px 80px -12px rgba(16, 24, 40, .25), 0 0 0 1px rgba(16, 24, 40, .05);
    overflow: hidden;
    position: relative;
}

.hero__visual-bar {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

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

.dot--red {
    background: #ff5f57;
}

.dot--yellow {
    background: #febc2e;
}

.dot--green {
    background: #28c840;
}

.hero__visual-frame img {
    width: 100%;
    display: block;
}

/* ── TRUST BAR ── */
.trust-bar {
    padding: 64px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-25);
}

.trust-bar__label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.trust-bar__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.metric__number {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -2px;
    line-height: 1;
}

.metric__suffix {
    font-size: 40px;
    font-weight: 800;
    color: var(--brand-500);
    letter-spacing: -2px;
    line-height: 1;
}

.metric__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ── PAIN GRID ── */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pain-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    transition: all var(--t-base);
}

.pain-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.pain-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-md);
    color: var(--brand-500);
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.pain-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── VIDEO SHOWCASE ── */
.video-showcase {
    max-width: 840px;
    margin: 0 auto;
}

.video-showcase__frame {
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--gray-900);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-2xl);
}

.video-showcase__player {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--gray-900);
}

.video-showcase__cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ── PRODUCT SHOWCASE ── */
.product-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.product-showcase__frame {
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .08);
}

.product-showcase__frame img {
    width: 100%;
    display: block;
}

/* ── FEATURE ROWS ── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid var(--gray-100);
}

.feature-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-row--reverse {
    direction: rtl;
}

.feature-row--reverse>* {
    direction: ltr;
}

.feature-row__badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-600);
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.feature-row__h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -.5px;
}

.nav__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -.5px;
    color: var(--gray-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-row__desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-row__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-row__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-row__list li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e04672' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.feature-row__frame {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--t-slow);
}

.feature-row__frame:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.feature-row__frame img {
    width: 100%;
    display: block;
}

/* ── BENEFITS ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit {
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    transition: all var(--t-base);
}

.benefit:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.benefit__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-md);
    color: var(--brand-500);
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -.2px;
}

.benefit p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── CTA SECTION ── */
.section--cta {
    padding: 120px 0 140px;
    background: var(--white);
}

.cta-card {
    position: relative;
    padding: 80px 48px;
    border-radius: var(--r-2xl);
    overflow: hidden;
    text-align: center;
    background: var(--gray-900);
}

.cta-card__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(224, 70, 114, .2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, .15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, .1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card__content {
    position: relative;
    z-index: 2;
}

.cta-card__h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1.2px;
    max-width: 560px;
    margin: 0 auto 20px;
}

.cta-card__desc {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-card__actions {
    margin-bottom: 20px;
}

.cta-card__note {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 400;
}

/* ── PRICING ── */
.pricing-activation {
    margin-top: 24px;
}

.pricing-activation__headline {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-500);
    letter-spacing: -.3px;
    margin-bottom: 6px;
}

.pricing-activation__sub {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
    align-items: start;
}

.pricing-grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1060px;
}

.pricing-card {
    padding: 40px 32px 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    transition: all var(--t-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

/* Featured card (Pro — main) */
.pricing-card--featured {
    background: var(--gray-900);
    border-color: var(--brand-500);
    border-width: 2px;
    padding-top: 52px;
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card--featured:hover {
    box-shadow: 0 20px 40px rgba(224, 70, 114, .18), var(--shadow-2xl);
    transform: scale(1.04) translateY(-4px);
}

/* Upgrade card (Premium — secondary) */
.pricing-card--upgrade {
    padding-top: 52px;
}

.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--brand-500);
    border-radius: var(--r-full);
    letter-spacing: .3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card__badge--subtle {
    background: var(--gray-700);
}

.pricing-card__header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-card--featured .pricing-card__header {
    border-bottom-color: rgba(255, 255, 255, .1);
}

.pricing-card__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -.3px;
}

.pricing-card--featured .pricing-card__name {
    color: var(--white);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-card__currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
}

.pricing-card--featured .pricing-card__currency {
    color: var(--gray-400);
}

.pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card__amount--free {
    font-size: 36px;
    color: var(--brand-500);
    letter-spacing: -1px;
}

.pricing-card--featured .pricing-card__amount {
    color: var(--white);
}

.pricing-card__period {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-400);
}

.pricing-card__period-desc {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 4px;
}

.pricing-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-card--featured .pricing-card__desc {
    color: var(--gray-400);
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
}

.pricing-card--featured .pricing-card__features li {
    color: var(--gray-300);
}

.pricing-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23e04672' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pricing-card--featured .pricing-card__features li::before {
    background-color: rgba(224, 70, 114, .15);
    border-color: rgba(224, 70, 114, .25);
}

.pricing-card__btn {
    width: 100%;
    text-align: center;
}

.pricing-card__note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.5;
    text-align: center;
}

/* ── FOOTER ── */
.footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__brand {
    max-width: 260px;
}

.footer__brand .nav__logo {
    margin-bottom: 12px;
}

.footer__brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

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

.footer__col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.footer__col a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color var(--t-fast);
}

.footer__col a:hover {
    color: var(--gray-900);
}

.footer__bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
}

.footer__bottom p {
    font-size: 13px;
    color: var(--gray-400);
}

/* ── ANIMATIONS ── */
[data-anim] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── STEPS (CÓMO FUNCIONA) ── */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-500);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(224, 70, 114, .3);
}

.step-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--brand-300);
    margin: 0 auto 20px;
}

.step-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.step-card__desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.step-card__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 48px;
    color: var(--gray-600);
    flex-shrink: 0;
}

.steps-cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--brand-100);
}

.testimonial-card__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__quote {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 15px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-card__role {
    font-size: 13px;
    color: var(--gray-400);
}

/* ── GUARANTEE ── */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 4px;
}

.guarantee-badge svg {
    color: #22c55e;
    stroke: #22c55e;
    flex-shrink: 0;
}

.pricing-guarantee {
    margin-top: 40px;
}

.guarantee-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-card svg {
    color: #22c55e;
    stroke: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.guarantee-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── FAQ ── */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: color var(--t-fast);
    line-height: 1.4;
}

.faq-item__question:hover {
    color: var(--brand-500);
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform var(--t-base);
    color: var(--gray-400);
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
    color: var(--brand-500);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
    padding: 0 4px;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding: 0 4px 20px;
}

.faq-item__answer p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 92px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    z-index: 99;
    transition: all var(--t-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .4);
    animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .section {
        padding: 96px 0;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 0;
    }

    .feature-row--reverse {
        direction: ltr;
    }

    .feature-row__visual {
        order: -1;
    }

    .feature-row--reverse .feature-row__visual {
        order: -1;
    }

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

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

    .pricing-grid--three {
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 100%;
    }

    .pricing-grid {
        max-width: 100%;
    }

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

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

    .section__head {
        margin-bottom: 48px;
    }

    .nav__links,
    .nav__actions {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .container {
        padding: 0 20px;
    }

    .hero__h1 {
        font-size: 28px;
        letter-spacing: -1.2px;
    }

    .hero__sub {
        font-size: 15px;
    }

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

    .hero__ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .trust-bar {
        padding: 48px 0;
    }

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

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step-card {
        max-width: 340px;
    }

    .step-card__connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-grid,
    .pricing-grid--three {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card--featured {
        transform: scale(1);
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    .cta-card {
        padding: 56px 24px;
        border-radius: var(--r-xl);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section__h2 {
        font-size: 26px;
        letter-spacing: -.8px;
    }

    .section__desc {
        font-size: 16px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}




/* ── ROI CALCULATOR ── */
.roi-calculator {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    padding: 32px;
    margin-top: 40px;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.roi-calculator__inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roi-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-hint {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: -4px;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 16px;
    color: var(--gray-900);
    transition: border-color var(--t-fast);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(224, 70, 114, .1);
}

.currency-symbol {
    position: absolute;
    left: 12px;
    color: var(--gray-500);
    pointer-events: none;
}

.input-wrapper input[id="avg-price"] {
    padding-left: 24px;
}

.unit-suffix {
    position: absolute;
    right: 12px;
    color: var(--gray-500);
    font-size: 14px;
    pointer-events: none;
}

.roi-calculator__result {
    background: var(--brand-50);
    border-radius: var(--r-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--brand-100);
}

.roi-result__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.roi-result__amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-600);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.roi-result__sub {
    font-size: 13px;
    color: var(--brand-400);
}

@media (max-width: 768px) {
    .roi-calculator {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ── PRICING COMPARISON ── */
.pricing-comparison {
    margin-top: 64px;
    margin-bottom: 40px;
}

.comparison-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.table-responsive {
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.comparison-table th {
    background: var(--gray-25);
    font-weight: 700;
    color: var(--gray-900);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlighted {
    background: var(--brand-25);
    color: var(--brand-700);
}

.comparison-table th.highlighted {
    background: var(--brand-50);
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    display: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    width: auto;
    white-space: nowrap;
}

.mobile-sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.mobile-sticky-cta .btn {
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(224, 70, 114, 0.3);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    .whatsapp-float {
        bottom: 15px;
    }
}

/* ── DESKTOP LAYOUT (≥ 1024px) ── */
@media (min-width: 1024px) {
    .hero {
        padding: 160px 0 100px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__content {
        max-width: 720px;
        margin: 0 auto;
    }

    .hero__benefits {
        justify-content: center;
        max-width: 680px;
        margin: 0 auto 36px;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__proof {
        justify-content: center;
    }

    .hero__visual {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

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

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

/* ── WIDE DESKTOP (≥ 1280px) ── */
@media (min-width: 1280px) {
    .hero__content {
        max-width: 800px;
    }

    .hero__h1 {
        font-size: 68px;
    }
}

/* -- VIDEO SECTION -- */
.section--video {
    padding: 100px 0;
    background: var(--gray-25);
}

.product-video {
    max-width: 320px;
    max-width: 960px;
    margin: 0 auto;
}

.product-video__frame {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    position: relative;
}

.product-video__bar {
    display: flex;
    gap: 6px;
    padding: 12px 18px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.product-video__wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
}

@media (max-width: 768px) {
    .section--video {
        padding: 60px 0;
    }
    .product-video__frame {
        border-radius: var(--r-lg);
    }
    .product-video__bar {
        padding: 8px 12px;
    }
}

/* ============================================
   HERO POLISH (FORCED OVERRIDES)
   ============================================ */
.hero__h1 {
    font-family: var(--font-heading) !important;
    font-size: clamp(36px, 5.5vw, 68px) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: -2.5px !important;
    color: var(--gray-900) !important;
    max-width: 850px !important;
    margin: 0 auto 24px !important;
}

.hero__sub {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: var(--gray-700) !important;
    max-width: 600px !important;
    margin: 0 auto 32px !important;
}

.hero__cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    max-width: 680px !important;
    margin: 32px auto !important;
}

.hero-card {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--r-md) !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: left !important;
    box-shadow: var(--shadow-sm) !important;
}

.hero-card__icon {
    font-size: 24px !important;
    flex-shrink: 0 !important;
}

.hero-card__content h4 {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--gray-900) !important;
    margin: 0 0 2px 0 !important;
}

.hero-card__content p {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: var(--gray-500) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.hero__social-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    padding: 12px 32px !important;
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    margin: 40px auto 0 !important;
    z-index: 10 !important;
    position: relative !important;
}

.hero__social-avatars {
    display: flex !important;
}

.social-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 2px solid var(--white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-left: -12px !important;
}

.social-avatar:first-child {
    margin-left: 0 !important;
}

.hero__social-text {
    font-size: 15px !important;
    color: var(--gray-700) !important;
    margin: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

.hero__social-text strong {
    font-weight: 800 !important;
    color: var(--gray-900) !important;
}

@media (max-width: 640px) {
    .hero__h1 {
        font-size: 32px !important;
        letter-spacing: -1px !important;
    }

    .hero__sub {
        font-size: 15px !important;
        margin-bottom: 24px !important;
    }

    .hero__cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        max-width: 100% !important;
        margin: 24px 0 !important;
    }

    .hero-card {
        padding: 10px !important;
        gap: 8px !important;
    }

    .hero-card__icon {
        font-size: 18px !important;
    }

    .hero-card__content h4 {
        font-size: 12px !important;
    }

    .hero-card__content p {
        font-size: 10px !important;
        display: none; /* Hide subtext on mobile to save space */
    }

    .hero__ctas {
        margin-bottom: 32px !important;
    }

    .hero__social-badge {
        border-width: 2px;
    }

    .salon-card__overlay span {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ── EXPERIENCIA CLIENTES ── */
.section--experience {
    background-color: var(--gray-50);
    overflow: hidden;
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .experience-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.experience-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.experience-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(224, 70, 114, 0.08) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.mobile-mockup {
    position: relative;
    width: 280px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 12px #f0f2f5;
    z-index: 2;
}

.mobile-mockup__screen {
    border-radius: 24px;
    overflow: hidden;
    background: #fffafb;
}

.mobile-mockup__header {
    position: relative;
    height: 140px;
}

.mobile-mockup__cover {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.mobile-mockup__top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
    color: #fff;
}

.mobile-mockup__username {
    font-size: 11px;
    font-weight: 600;
}

.mobile-mockup__actions {
    display: flex;
    gap: 8px;
}

.mockup-btn {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: none;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.mockup-icon-btn {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: none;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-mockup__avatar {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #fffafb;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-mockup__body {
    padding: 48px 20px 24px;
    text-align: center;
}

.mobile-mockup__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-mockup__socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-600);
}

.mobile-mockup__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.mockup-link {
    display: block;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-800);
    box-shadow: 0 4px 0 var(--gray-800);
    transition: transform 0.1s;
}

.mockup-link:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--gray-800);
}

.mobile-mockup__branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: var(--gray-900);
    font-weight: 500;
}

.mobile-mockup__branding strong {
    font-size: 14px;
    font-family: var(--font);
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon--1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.floating-icon--2 {
    top: 30%;
    right: -36px;
    width: 32px;
    height: 32px;
    animation-delay: 1s;
}

.floating-icon--3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.floating-icon--4 {
    bottom: 30%;
    left: -36px;
    width: 32px;
    height: 32px;
    animation-delay: 3s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.experience-content {
    max-width: 520px;
}

.experience-h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.experience-desc {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-500);
    margin-bottom: 32px;
}

.experience-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

@media (max-width: 500px) {
    .experience-checklist {
        grid-template-columns: 1fr;
    }
}

.experience-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.mobile-mockup__video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Updated Social Badge Styles */
.social-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    object-fit: cover;
    margin-left: -8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.social-avatar-img:first-child {
    margin-left: 0;
}

.hero__social-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

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

.hero__social-text-main {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
}

.hero__social-text-main strong {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
}

.hero__social-text-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    margin: 4px 0 0 0;
    line-height: 1.4;
}

/* Mobile Responsive Badge */
@media (max-width: 600px) {
    .hero__social-badge {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        border-radius: 24px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__social-info {
        align-items: center;
        text-align: center;
    }
    
    .hero__social-text-main {
        font-size: 15px;
    }
    
    .hero__social-text-main strong {
        font-size: 16px;
    }
    
    .hero__social-text-sub {
        font-size: 13px;
    }
}

/* ============================================
   CHATBOT STYLES
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 15px;
    right: 24px;
    z-index: 1000;
    font-family: var(--font);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-500);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--t-base);
    position: relative;
    z-index: 1200;
}

.chat-toggle:hover {
    transform: scale(1.05) translateY(-2px);
    background: var(--brand-600);
}

.chat-toggle__badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: var(--brand-gold);
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 164, 126, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(197, 164, 126, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 164, 126, 0); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 520px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--t-base);
    pointer-events: none;
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    padding: 14px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header__handle {
    display: none; /* Oculto en desktop */
}

.chat-header__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header__avatar {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}

.chat-header__avatar img {
    width: 45%;
    height: 45%;
    object-fit: contain;
    /* Logo aún más pequeño y refinado */
    transform: translate(-1.5px, -0.5px); 
}

.chat-header__details {
    display: flex;
    flex-direction: column;
}

.chat-header__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.chat-header__status {
    font-size: 11px;
    color: #28c840;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-header__status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.chat-header__close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    transition: color var(--t-fast);
}

.chat-header__close:hover {
    color: var(--gray-900);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--gray-25);
    scroll-behavior: smooth;
}

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--r-md);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
    animation: bubbleIn 0.3s var(--ease);
}

@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble--bot {
    align-self: flex-start;
    background: var(--white);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    border-bottom-left-radius: 4px;
}

.chat-bubble--user {
    align-self: flex-end;
    background: var(--brand-500);
    color: var(--white);
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(224, 70, 114, 0.15);
}

.chat-bubble--typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    width: fit-content;
}

.dot-pulse {
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.dot-pulse:nth-child(2) { animation-delay: 0.2s; }
.dot-pulse:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.chat-input {
    padding: 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    border: 1px solid var(--gray-200);
    border-radius: var(--r-full);
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: all var(--t-fast);
}

.chat-input input:focus {
    border-color: var(--brand-400);
    box-shadow: 0 0 0 3px var(--brand-50);
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: var(--brand-500);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-base);
    flex-shrink: 0;
}

.chat-input button:hover {
    background: var(--brand-600);
    transform: scale(1.05);
}

@media (max-width: 480px) {

    /* ── Full-screen chat like WhatsApp ── */
    .chat-window {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        z-index: 9999;
        background: #ece5dd; /* WhatsApp warm background */
        backdrop-filter: none;
        display: flex;
        flex-direction: column;
        transform: translateY(100%);
        opacity: 1;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
        pointer-events: none;
        box-shadow: none;
        border: none;
    }

    .chat-window.open {
        transform: translateY(0);
        visibility: visible;
        pointer-events: all;
    }

    /* WhatsApp-style header with brand color */
    .chat-header {
        background: var(--brand-500);
        padding: 52px 16px 14px; /* top padding for notch/status bar */
        border-bottom: none;
        gap: 0;
    }

    .chat-header__info {
        gap: 10px;
        flex: 1;
    }

    /* Back arrow — repurpose close button to left side */
    .chat-header__close {
        order: -1;
        color: var(--white);
        padding: 4px 8px 4px 0;
        margin-right: 4px;
        opacity: 0.95;
    }

    .chat-header__close:hover {
        color: var(--white);
        opacity: 1;
    }

    /* Override SVG icon to be an arrow on mobile */
    .chat-header__close svg {
        display: none;
    }

    .chat-header__close::before {
        content: '←';
        font-size: 22px;
        font-weight: 400;
        color: white;
    }

    .chat-header__avatar {
        border: 2px solid rgba(255,255,255,0.3);
        background: var(--white);
    }

    .chat-header__name {
        color: var(--white);
        font-size: 15px;
    }

    .chat-header__status {
        color: rgba(255,255,255,0.85);
    }

    .chat-header__status::before {
        background: #4dff91;
    }

    /* Messages area: WhatsApp pattern background */
    .chat-messages {
        flex: 1;
        padding: 16px 12px;
        background: #ece5dd url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5.5C16.5 5.5 5.5 16.5 5.5 30S16.5 54.5 30 54.5 54.5 43.5 54.5 30 43.5 5.5 30 5.5zm0 2C42.4 7.5 52.5 17.6 52.5 30S42.4 52.5 30 52.5 7.5 42.4 7.5 30 17.6 7.5 30 7.5z' fill='%23ccb99a' fill-opacity='0.08'/%3E%3C/svg%3E");
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Bot bubble: WhatsApp-style white left tail */
    .chat-bubble--bot {
        background: #ffffff;
        color: #262626;
        border: none;
        border-radius: 0 10px 10px 10px;
        box-shadow: 0 1px 1px rgba(0,0,0,0.1);
        font-size: 14.5px;
    }

    /* User bubble: brand color right tail */
    .chat-bubble--user {
        background: var(--brand-400);
        border-radius: 10px 0 10px 10px;
        box-shadow: 0 1px 1px rgba(0,0,0,0.1);
        font-size: 14.5px;
    }

    .chat-bubble {
        max-width: 85%;
        font-size: 14.5px;
    }

    /* Input bar: WhatsApp-style */
    .chat-input {
        padding: 10px 12px;
        background: #f0f0f0;
        border-top: none;
        gap: 8px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    .chat-input input {
        border-radius: 24px;
        background: #ffffff;
        border: none;
        padding: 10px 18px;
        font-size: 15px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }

    .chat-input input:focus {
        border-color: transparent;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    }

    .chat-input button {
        background: var(--brand-500);
        width: 44px;
        height: 44px;
        box-shadow: 0 2px 6px rgba(224, 70, 114, 0.35);
    }

    /* Widget button stays at bottom right */
    .chat-widget {
        bottom: 70px;
        right: 20px;
        left: auto;
        position: fixed;
        z-index: 1000;
    }

    .chat-toggle {
        width: 52px;
        height: 52px;
    }
}

/* ── EXPERIENCIA — SOLO TEXTO CENTRADO ── */
.experience-container--text-only {
    display: block !important;
}
.experience-content--centered {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.experience-content--centered .experience-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    text-align: left;
    max-width: 560px;
    margin: 24px auto 0;
}

/* ── HERO 2-COLUMN LAYOUT — DESKTOP (≥ 1024px) ── */
@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 55fr 45fr !important;
        gap: 64px !important;
        text-align: left !important;
        align-items: start !important;
    }
    .hero__content {
        max-width: none !important;
        margin: 0 !important;
    }
    .hero__h1 {
        margin: 0 0 20px 0 !important;
    }
    .hero__sub {
        margin: 0 0 28px 0 !important;
        max-width: 560px !important;
    }
    .hero__cards {
        margin: 28px 0 !important;
    }
    .hero__ctas {
        justify-content: flex-start !important;
    }
    .hero__proof {
        justify-content: flex-start !important;
    }
    .hero__social-badge {
        justify-content: flex-start !important;
    }
    .hero__visual {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 40px 0 !important;
    }
    .hero__visual--phone .mobile-mockup {
        width: 300px;
    }
}
