:root {
    /* Paleta No+Acné */
    --azul: #00afb9;
    --azul-hover: #008b94;
    --azul-light: #d6eef0;
    --azul-pale: #f0fafb;
    --naranja: #fc671a;
    --naranja-hover: #e15710;
    --naranja-light: #ffe2d2;
    --naranja-pale: #fff5ef;
    --rosa: #ff3e8d;
    --rosa-light: #ffd9e6;

    --cream: #f6fbfc;
    --white: #ffffff;
    --dark: #102a3a;
    --text: #2d4956;
    --text-light: #7b96a1;
    --gray-light: #f8f9fa;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.font-serif { font-family: 'Cormorant Garamond', serif; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--azul-light);
}

.logo-main {
    transition: height 0.3s ease;
    max-height: 50px;
}

.nav-link-custom {
    position: relative;
    padding: 10px 15px !important;
    color: var(--dark) !important;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link-custom:hover { color: var(--azul) !important; }

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 5px;
    left: 15px;
    background-color: var(--azul);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after { width: calc(100% - 30px); }

.btn-nav-cta {
    background-color: var(--naranja);
    color: var(--white) !important;
    border-radius: 30px;
    padding: 10px 22px !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background-color: var(--naranja-hover);
    color: var(--white) !important;
}

.btn-nav-cta::after { display: none !important; }

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .nav-link-custom::after { display: none; }
}

/* ============================================
   MARCA — "Scars Reset 360" siempre igual
   ============================================ */
.brand-scars {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--azul);
    letter-spacing: 0.5px;
}
.brand-scars .brand-360 {
    color: var(--naranja);
    font-style: italic;
    font-weight: 400;
}

/* ============================================
   HERO
   ============================================ */
.hero-scars {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--azul-pale) 0%, var(--white) 100%);
    padding: 90px 0 60px;
}

/* Círculos decorativos animados (del artifact) */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-deco-1 {
    width: 560px; height: 560px;
    border: 1px solid rgba(0, 175, 185, 0.10);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlow 30s linear infinite;
}
.hero-deco-2 {
    width: 380px; height: 380px;
    border: 1px solid rgba(252, 103, 26, 0.12);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlow 20s linear infinite reverse;
}
.hero-deco-3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(252, 103, 26, 0.10) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-scars .container { position: relative; z-index: 1; }

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

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

@keyframes heroFadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Animaciones de entrada escalonadas (estilo artifact) */
.hero-scars .hero-tag,
.hero-scars h1,
.hero-scars .hero-sub,
.hero-scars .hero-promise,
.hero-scars .btn-cta-primary {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-scars .hero-tag       { animation-delay: 0.2s; }
.hero-scars h1              { animation-delay: 0.4s; }
.hero-scars .hero-sub       { animation-delay: 0.6s; }
.hero-scars .hero-promise   { animation-delay: 0.8s; }
.hero-scars .btn-cta-primary{ animation-delay: 1.0s; }

.hero-scars .hero-images > * {
    opacity: 0;
    animation: heroFadeInRight 0.9s ease forwards;
}
.hero-scars .hero-images > *:nth-child(1) { animation-delay: 0.7s; }
.hero-scars .hero-images > *:nth-child(2) { animation-delay: 0.95s; }

@media (prefers-reduced-motion: reduce) {
    .hero-scars .hero-tag,
    .hero-scars h1,
    .hero-scars .hero-sub,
    .hero-scars .hero-promise,
    .hero-scars .btn-cta-primary,
    .hero-scars .hero-images > * {
        opacity: 1;
        animation: none;
    }
    .hero-deco-1, .hero-deco-2, .hero-deco-3 { animation: none; }
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--azul);
    background: rgba(0, 175, 185, 0.08);
    border: 1px solid rgba(0, 175, 185, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-scars h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(48px, 7vw, 84px);
    line-height: 1;
    color: var(--azul);
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.hero-scars h1 .h1-360 {
    color: var(--naranja);
    font-style: italic;
    font-weight: 400;
}

.hero-scars h1 .h1-deg {
    font-style: normal;
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 2px;
}

.brand-scars .brand-360 .brand-deg {
    font-style: normal;
    font-size: 0.7em;
    vertical-align: top;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.3;
}

.hero-promise {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.hero-promise span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-promise span::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--naranja);
    display: inline-block;
}

.btn-cta-primary {
    display: inline-block;
    background: var(--naranja);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(252, 103, 26, 0.28);
}

.btn-cta-primary:hover {
    background: var(--azul);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 175, 185, 0.3);
}

.btn-cta-primary i { margin-right: 8px; }

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-images img,
.hero-images .placeholder-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--azul-light);
}

.hero-images > *:nth-child(1) { margin-top: 30px; }
.hero-images > *:nth-child(2) { margin-bottom: 30px; }

@media (max-width: 991.98px) {
    .hero-scars { padding-top: 60px; text-align: center; }
    .hero-promise { justify-content: center; }
    .hero-images { margin-top: 40px; }
    .hero-images img,
    .hero-images .placeholder-img { height: 240px; }
}

/* ============================================
   INTRO + VIDEO CRISTINA
   ============================================ */
.intro-scars {
    background: var(--white);
    padding: 100px 0;
    text-align: center;
}

.intro-scars .intro-text {
    max-width: 760px;
    margin: 0 auto 56px;
}

.intro-scars .intro-video {
    max-width: 920px;
    margin: 0 auto;
}

.intro-scars .section-tag,
.section-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--azul);
    margin-bottom: 18px;
    font-weight: 600;
}

.intro-scars h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
}

.intro-scars h2 em {
    font-style: italic;
    color: var(--naranja);
}

.intro-scars p {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text);
    font-weight: 300;
}

.video-cristina {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 175, 185, 0.15);
    background: var(--azul-light);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-cristina-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--azul-light);
    border: 1px dashed var(--azul);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   TÉCNICAS (3 cuadros)
   ============================================ */
.treatments-scars {
    background: var(--cream);
    padding: 100px 0;
    border-top: 1px solid var(--azul-light);
    border-bottom: 1px solid var(--azul-light);
}

.treatments-scars .header-block { text-align: center; margin-bottom: 56px; }

.treatments-scars h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.treatments-scars h2 em {
    font-style: italic;
    color: var(--naranja);
}

.treatments-scars .header-block .subtitle {
    font-size: 17px;
    color: var(--text);
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.treatment-card {
    background: var(--white);
    border: 1px solid var(--azul-light);
    border-top: 4px solid var(--azul);
    padding: 44px 32px;
    border-radius: 6px;
    transition: all 0.35s ease;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 175, 185, 0.12);
}

.treatment-card.accent-naranja { border-top-color: var(--naranja); }
.treatment-card.accent-naranja .card-num { color: var(--naranja-light); }
.treatment-card.accent-naranja:hover .card-num { color: var(--naranja); }
.treatment-card.accent-azul .card-num { color: var(--azul-light); }
.treatment-card.accent-azul:hover .card-num { color: var(--azul); }

.card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: var(--azul-light);
    line-height: 1;
    margin-bottom: 18px;
    transition: color 0.3s;
}

.card-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--azul);
    margin-bottom: 12px;
    font-weight: 600;
}

.treatment-card.accent-naranja .card-label { color: var(--naranja); }

.treatment-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.treatment-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
    margin: 0;
}

.cta-band {
    background: var(--azul);
    padding: 50px 24px;
    text-align: center;
    color: var(--white);
    border-radius: 8px;
    margin-top: 56px;
}

.cta-band h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    margin-bottom: 22px;
    color: var(--white);
}

.cta-band h3 em { font-style: italic; color: var(--naranja-light); }

.btn-cta-band {
    display: inline-block;
    background: var(--naranja);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-cta-band:hover {
    background: var(--white);
    color: var(--naranja);
    transform: translateY(-2px);
}

.btn-cta-band i { margin-right: 8px; }

/* ============================================
   RESULTADOS (stats + timeline)
   ============================================ */
.results-scars {
    background: var(--white);
    padding: 100px 0;
}

.results-scars h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 22px;
}

.results-scars h2 em { font-style: italic; color: var(--naranja); }

.results-scars .lead-p {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 36px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-item {
    padding: 22px 18px;
    background: var(--azul-pale);
    border-left: 3px solid var(--naranja);
    border-radius: 4px;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--azul);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-num .stat-small { font-size: 22px; color: var(--text); }

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.timeline-card {
    background: linear-gradient(145deg, var(--azul-pale) 0%, var(--azul-light) 100%);
    border: 1px solid var(--azul-light);
    padding: 42px 34px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.timeline-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 103, 26, 0.18), transparent 70%);
}

.timeline-card .tag {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--azul);
    margin-bottom: 20px;
    font-weight: 600;
}

.timeline-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 28px;
}

.timeline { display: flex; flex-direction: column; position: relative; }

.timeline::before {
    content: '';
    position: absolute;
    left: 16px; top: 8px; bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--naranja), var(--azul-light));
}

.timeline-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.timeline-dot {
    width: 33px; height: 33px;
    border-radius: 50%;
    border: 2px solid var(--azul);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-dot span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--azul);
    font-weight: 600;
}

.timeline-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.timeline-text p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   TESTIMONIOS + ANTES/DESPUÉS
   ============================================ */
.testimonials-scars {
    background: var(--cream);
    padding: 100px 0;
    border-top: 1px solid var(--azul-light);
}

.testimonials-scars .header-block { text-align: center; margin-bottom: 56px; }

.testimonials-scars h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
    color: var(--dark);
}

.testimonials-scars h2 em { font-style: italic; color: var(--naranja); }

.testi-card {
    background: var(--white);
    padding: 32px 26px;
    border-radius: 6px;
    border: 1px solid var(--azul-light);
    border-top: 3px solid var(--naranja);
    box-shadow: 0 4px 18px rgba(0, 175, 185, 0.06);
    height: 100%;
}

.testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    line-height: 1;
    color: var(--naranja-light);
    margin-bottom: -6px;
}

.testi-stars {
    color: var(--naranja);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 18px;
}

.testi-author {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--azul);
    font-weight: 600;
}

.antes-despues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 64px;
}

.antes-despues-grid img,
.antes-despues-grid .placeholder-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--azul-light);
    border: 1px solid var(--azul-light);
}

.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    border: 1px dashed var(--azul);
}

/* ============================================
   DOCTORA
   ============================================ */
.doctora-scars {
    background: var(--azul-pale);
    padding: 100px 0;
}

.doctora-scars img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 175, 185, 0.15);
}

.doctora-scars h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 14px;
}

.doctora-scars .role {
    color: var(--azul);
    font-weight: 500;
    margin-bottom: 24px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.doctora-scars p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
    font-weight: 300;
}

.blockquote-scars {
    border-left: 3px solid var(--naranja);
    padding-left: 22px;
    margin-top: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--dark);
    line-height: 1.5;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final-scars {
    background: linear-gradient(135deg, var(--azul-pale) 0%, var(--white) 100%);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--azul-light);
}

.cta-final-scars::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 103, 26, 0.09) 0%, transparent 65%);
}

.cta-final-scars::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 175, 185, 0.08) 0%, transparent 65%);
}

.cta-final-scars .inner { position: relative; max-width: 720px; margin: 0 auto; }

.cta-final-scars h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 22px;
}

.cta-final-scars h2 em { font-style: italic; color: var(--naranja); }

.cta-final-scars > .inner > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.btn-cta-mail,
.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-cta-mail {
    background: var(--naranja);
    color: var(--white);
    box-shadow: 0 6px 22px rgba(252, 103, 26, 0.3);
}

.btn-cta-mail:hover {
    background: var(--naranja-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-wa {
    background: var(--azul);
    color: var(--white);
    box-shadow: 0 6px 22px rgba(0, 175, 185, 0.3);
}

.btn-cta-wa:hover {
    background: var(--azul-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-pill {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--azul-light);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.cta-pill .pill-accent { color: var(--naranja); font-weight: 600; }

/* ============================================
   FOOTER (estilo armonización)
   ============================================ */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 4px solid var(--naranja);
}

.main-footer h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--azul);
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.main-footer p, .main-footer li, .main-footer a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.main-footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover { color: var(--azul); }

.main-footer .footer-icon {
    color: var(--azul);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FADE-IN ON SCROLL
   ============================================ */
.fade-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767.98px) {
    .hero-images > *:nth-child(1),
    .hero-images > *:nth-child(2) { margin-top: 0; margin-bottom: 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons a { justify-content: center; }
}
