/* ============================================
   LOPEZ AESTHETICS — Sculptra Landing Page
   Colors: #d398a6 (pink), white, black
   Fonts: Cormorant Garamond (headings), Inter (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #d398a6;
    --pink-light: #f0dce1;
    --pink-dark: #b87a8a;
    --pink-subtle: #faf5f7;
    --black: #1a1a1a;
    --black-soft: #2d2d2d;
    --gray-dark: #4a4a4a;
    --gray: #6b6b6b;
    --gray-light: #e8e8e8;
    --white: #ffffff;
    --off-white: #fafafa;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1140px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black-soft);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 12px;
}

em {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05em;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pink-dark);
    margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 152, 166, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 1.05rem;
    padding: 18px 40px;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    flex-shrink: 0;
}

/* ============================================
   HEADER — Sticky navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-dark);
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.header-nav a:hover {
    color: var(--pink-dark);
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--pink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-header-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(211, 152, 166, 0.35);
}

.whatsapp-icon-sm {
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION — Split layout
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--white) 0%, var(--pink-subtle) 50%, var(--pink-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(211, 152, 166, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 60px 24px;
}

.hero-text {
    max-width: 560px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pink-dark);
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--black);
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.hero-sub-2 {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--black-soft);
    border: 1.5px solid var(--gray-light);
    padding: 16px 32px;
}

.btn-outline:hover {
    border-color: var(--pink);
    color: var(--pink-dark);
    background: rgba(211, 152, 166, 0.05);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 3/4;
    background: var(--pink-light);
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    border: 2px solid var(--pink);
    opacity: 0.3;
    z-index: 1;
}

/* ============================================
   B&A TEASER — Early social proof strip
   ============================================ */
.ba-teaser {
    padding: 50px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.ba-teaser-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.ba-teaser-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ba-teaser-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: var(--pink-light);
}

.ba-teaser-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 16px;
}

.ba-teaser-text a {
    color: var(--pink-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

.ba-teaser-text a:hover {
    color: var(--pink);
}

@media (max-width: 768px) {
    .ba-teaser-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .ba-teaser-item {
        border-radius: 10px;
    }
}

/* ============================================
   PAIN VALIDATION SECTION
   ============================================ */
.pain-validation {
    padding: var(--section-padding);
    background: var(--white);
}

/* Reusable section banner for image slots */
.section-banner {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    max-height: 400px;
}

.section-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.banner-caption {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    font-family: var(--font-heading);
    text-align: center;
    max-width: 600px;
    margin: 12px auto 0;
}

.mechanism-banner {
    max-height: 350px;
    margin: 50px 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.pain-card {
    padding: 28px 24px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pain-card:hover {
    border-color: var(--pink);
    box-shadow: 0 4px 20px rgba(211, 152, 166, 0.15);
}

.pain-icon {
    color: var(--pink);
    margin-bottom: 16px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.pain-closer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ============================================
   WHY SECTION — Education
   ============================================ */
.why-section {
    padding: var(--section-padding);
    background: var(--pink-subtle);
}

.why-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.why-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-text p {
    margin-bottom: 16px;
    color: var(--gray-dark);
}

.why-reframe {
    background: var(--white);
    border-left: 3px solid var(--pink);
    padding: 32px;
    border-radius: 0 12px 12px 0;
    margin-top: 32px;
}

.why-reframe h3 {
    color: var(--black);
    margin-bottom: 16px;
}

.why-reframe ul {
    list-style: none;
    padding: 0;
}

.why-reframe li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.why-reframe li::before {
    content: '\00D7';
    position: absolute;
    left: 0;
    color: var(--pink-dark);
    font-weight: 700;
    font-size: 1.1em;
}

.reframe-closer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.why-visual {
    position: sticky;
    top: 40px;
}

.collagen-stat {
    text-align: center;
    margin-bottom: 30px;
}

.stat-circle {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--pink);
    background: var(--white);
    margin-bottom: 12px;
    padding-top: 45px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--pink-dark);
    line-height: 1;
}

.stat-percent {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pink-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    max-width: 180px;
    margin: 0 auto;
}

.why-image {
    border-radius: 12px;
    background: var(--gray-light);
    min-height: 200px;
    object-fit: cover;
}

/* ============================================
   MECHANISM SECTION — New Mechanism Intro
   ============================================ */
.mechanism {
    padding: var(--section-padding);
    background: var(--white);
}

.mechanism-intro {
    max-width: 680px;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

.mechanism-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 50px;
}

.comparison-card {
    padding: 40px 36px;
    border-radius: 16px;
}

.comparison-old {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
}

.comparison-new {
    background: var(--pink-subtle);
    border: 1px solid var(--pink-light);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.comparison-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 24px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-old li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--gray);
    font-size: 0.95rem;
}

.comparison-old li::before {
    content: '\00D7';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
    font-size: 1.2em;
}

.comparison-new li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--black-soft);
    font-size: 0.95rem;
}

.comparison-new li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pink-dark);
    font-weight: 700;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.comparison-divider span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray);
}

.mechanism-closer {
    max-width: 750px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* ============================================
   SCULPTRA REVEAL SECTION
   ============================================ */
.sculptra-reveal {
    padding: var(--section-padding);
    background: var(--black);
    color: var(--white);
}

.sculptra-reveal .section-eyebrow {
    color: var(--pink);
}

.sculptra-reveal h2 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 8px;
}

.reveal-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 550px;
}

.sculptra-details {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    color: var(--pink);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.info-block p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.sculptra-timeline {
    list-style: none;
    padding: 0;
}

.sculptra-timeline li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}

.sculptra-timeline li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 24px;
    bottom: -8px;
    width: 1px;
    background: var(--pink);
    opacity: 0.3;
}

.timeline-marker {
    width: 17px;
    height: 17px;
    min-width: 17px;
    border-radius: 50%;
    border: 2px solid var(--pink);
    background: var(--black);
    margin-top: 4px;
}

.sculptra-timeline strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.sculptra-timeline p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.sculptra-img {
    border-radius: 16px;
    background: var(--gray-dark);
    min-height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.trust-badge {
    background: rgba(211, 152, 166, 0.1);
    border: 1px solid rgba(211, 152, 166, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
}

.trust-badge p {
    color: var(--white);
    font-size: 0.95rem;
}

.trust-small {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 4px;
}

/* ============================================
   FEAR ADDRESS SECTION
   ============================================ */
.fear-address {
    padding: var(--section-padding);
    background: var(--white);
}

.fear-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.fear-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

.fear-text > p {
    margin-bottom: 16px;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.fear-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.fear-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.fear-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pink-dark);
    font-weight: 700;
}

.fear-visual-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fear-result-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 280px;
    background: var(--pink-light);
}

.fear-quote-block {
    background: var(--pink-subtle);
    border-radius: 16px;
    padding: 40px 36px;
}

.fear-quote-block blockquote p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--black-soft);
    margin-bottom: 16px;
}

.fear-quote-block cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   RESULTS / BEFORE & AFTER SECTION
   ============================================ */
.results {
    padding: var(--section-padding);
    background: var(--off-white);
}

.results-intro {
    max-width: 580px;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

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

.ba-card-v2 {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ba-card-v2 img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.ba-caption {
    padding: 16px 20px;
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.5;
}

.results-note {
    font-size: 0.78rem;
    color: var(--gray);
    max-width: 700px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

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

.testimonial-card {
    background: var(--pink-subtle);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s ease;
}

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

.stars {
    color: var(--pink);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--black-soft);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--gray);
    font-family: var(--font-body);
}

/* ============================================
   MARIA / PRACTITIONER SECTION
   ============================================ */
.maria {
    padding: var(--section-padding);
    background: var(--pink-subtle);
}

.maria-content {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 60px;
    align-items: start;
}

.maria-photo {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--gray-light);
}

.maria-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 32px;
}

.maria-credentials,
.maria-philosophy,
.maria-promise {
    margin-bottom: 28px;
}

.maria-credentials h3,
.maria-philosophy h3 {
    font-size: 1.1rem;
    color: var(--pink-dark);
    margin-bottom: 12px;
}

.maria-credentials ul,
.maria-promise ul {
    list-style: none;
    padding: 0;
}

.maria-credentials li,
.maria-promise li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.maria-credentials li::before,
.maria-promise li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pink-dark);
    font-weight: 700;
}

.maria-philosophy p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    border-left: 3px solid var(--pink);
    padding-left: 20px;
}

.maria-promise p {
    font-size: 0.9rem;
    color: var(--black-soft);
    margin-bottom: 12px;
}

/* ============================================
   SKEPTICISM SECTION
   ============================================ */
.skepticism {
    padding: var(--section-padding);
    background: var(--white);
}

.skepticism-content h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.skeptic-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--gray-light);
}

.skeptic-card h3 {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 16px;
}

.skeptic-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-padding);
    background: var(--pink-subtle);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
}

.step {
    text-align: center;
    max-width: 280px;
    padding: 0 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--pink);
    padding-top: 16px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.cta-content {
    max-width: 620px;
    margin: 0 auto;
}

.cta-clinic-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 32px;
    border: 3px solid rgba(211, 152, 166, 0.3);
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.cta-reassurance {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.cta-micro {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 50px 0;
    border-top: 1px solid rgba(211, 152, 166, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-family: var(--font-heading);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

/* ============================================
   ANIMATIONS — Fade in on scroll
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 24px;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-image {
        order: 0;
        justify-content: center;
    }

    .hero-image img {
        max-width: 340px;
    }

    .hero-image-accent {
        max-width: 340px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-visual {
        position: static;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .sculptra-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fear-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .maria-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .maria-photo {
        max-width: 400px;
        aspect-ratio: 4/3;
    }
}

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

    .hero {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-split {
        min-height: auto;
        padding: 30px 16px 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .mechanism-comparison {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-divider {
        padding: 8px 0;
    }

    .ba-grid-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skepticism-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .step-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .why-visual {
        flex-direction: column;
    }

    .fear-quote-block {
        padding: 28px 24px;
    }

    .fear-quote-block blockquote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

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

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

/* --- Mobile nav dropdown --- */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--gray-light);
    }

    .header-nav.mobile-open {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
