/* ============================================
   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: 'Playfair Display', serif;
    --font-heading: 'Playfair Display', 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);
    font-size: 22px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    font-weight: 500;
}

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

.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: 16px;
    padding: 12px 32px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    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: 24px;
}

.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: 24px;
}

.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: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    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;
    }

    .hero__h1 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .hero__sub {
        font-size: 16px;
    }

    .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: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .hero__h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .metric__number,
    .metric__suffix {
        font-size: 32px;
    }

    .feature-row__h3 {
        font-size: 22px;
    }

    .cta-card__h2 {
        font-size: 24px;
    }
}

/* ── 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: 24px;
    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: 100px;
    }
}

/* ── 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: 'Playfair Display', serif !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 {
        padding: 8px 20px !important;
        margin-top: 24px !important;
        gap: 10px !important;
    }
    
    .social-avatar {
        width: 28px !important;
        height: 28px !important;
        font-size: 9px !important;
    }

    .hero__social-text {
        font-size: 13px !important;
    }
}

/* ============================================
   SALON SHOWCASE GRID
   ============================================ */
.salon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    width: 100%;
}

.salon-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid var(--white);
}

.salon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.salon-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* 9:16 aspect ratio fallback */
    background: var(--gray-100);
}

/* modern browsers aspect-ratio support */
@supports (aspect-ratio: 9/16) {
    .salon-card__image {
        aspect-ratio: 9/16;
        padding-bottom: 0;
    }
}

.salon-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.salon-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(224, 70, 114, 0.85); /* Accent color */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.salon-card:hover .salon-card__overlay {
    opacity: 1;
}

.salon-card__overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border: 2px solid var(--white);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .salon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .salon-grid {
        gap: 12px;
    }
    
    .salon-card {
        border-radius: 16px;
        border-width: 2px;
    }

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