/* ======================================================
   NeoGlow BEAUTY & WELLNESS — CSS
   Design System: Rose Gold × Deep Plum × Cream
====================================================== */

/* ---- TOKENS ---- */
:root {
    --rose:        hsl(340, 70%, 60%);
    --rose-light:  hsl(340, 60%, 85%);
    --rose-dark:   hsl(340, 60%, 40%);
    --plum:        hsl(285, 45%, 25%);
    --plum-light:  hsl(285, 35%, 35%);
    --gold:        hsl(38, 80%, 60%);
    --gold-light:  hsl(38, 70%, 80%);
    --cream:       hsl(38, 30%, 96%);
    --cream-dark:  hsl(38, 20%, 90%);
    --white:       #ffffff;
    --dark:        hsl(285, 30%, 12%);
    --dark-2:      hsl(285, 25%, 18%);
    --text:        hsl(285, 20%, 25%);
    --text-muted:  hsl(285, 10%, 55%);

    --grad-rose:   linear-gradient(135deg, hsl(340,70%,65%) 0%, hsl(320,60%,55%) 100%);
    --grad-plum:   linear-gradient(135deg, hsl(285,45%,25%) 0%, hsl(260,50%,20%) 100%);
    --grad-gold:   linear-gradient(135deg, hsl(38,80%,65%) 0%, hsl(25,70%,55%) 100%);
    --grad-hero:   linear-gradient(135deg, hsl(340,60%,95%) 0%, hsl(285,30%,88%) 50%, hsl(38,40%,92%) 100%);
    --grad-banner: linear-gradient(135deg, hsl(285,50%,22%) 0%, hsl(340,55%,35%) 50%, hsl(285,40%,28%) 100%);

    --shadow-sm:   0 2px 8px hsla(340,40%,30%,0.10);
    --shadow-md:   0 8px 32px hsla(340,40%,30%,0.15);
    --shadow-lg:   0 20px 60px hsla(340,40%,30%,0.20);
    --shadow-glow: 0 0 40px hsla(340,70%,60%,0.25);

    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   40px;

    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Outfit', system-ui, sans-serif;

    --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
em { font-style: italic; color: var(--rose); }

/* ---- LAYOUT ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section {
    padding: clamp(5rem, 10vw, 9rem) 0;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-rose);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 hsla(340,70%,60%,0);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 20px hsla(340,70%,60%,0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid hsla(285,45%,25%,0.3);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: hsla(285,45%,25%,0.08);
    border-color: var(--plum);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--rose-dark);
    border: 1.5px solid var(--rose);
}
.btn-outline:hover {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--plum);
    font-weight: 600;
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px hsla(0,0%,0%,0.2);
}

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

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}
.section-tag {
    display: inline-block;
    background: hsla(340,70%,60%,0.1);
    color: var(--rose-dark);
    border: 1px solid hsla(340,70%,60%,0.25);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: hsla(38,30%,98%,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(340,30%,70%,0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem clamp(1.5rem, 5vw, 3rem) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* ---- Fila 1: Brand centrada ---- */
.nav-brand-row {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 0.4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}
.nav-logo:hover { opacity: 0.85; transform: scale(1.02); }

/* Logo imagen con filtro al estilo rose/gold */
.nav-logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    /* Filtro CSS para recolorear: elimina color original y aplica rose/gold */
    filter:
        brightness(0)
        saturate(100%)
        invert(45%)
        sepia(60%)
        saturate(500%)
        hue-rotate(300deg)
        brightness(1.1)
        drop-shadow(0 0 8px hsla(340,70%,60%,0.5))
        drop-shadow(0 0 16px hsla(340,70%,60%,0.3));
    transition: filter 0.4s ease, transform 0.4s ease;
}
.nav-logo:hover .nav-logo-img {
    filter:
        brightness(0)
        saturate(100%)
        invert(45%)
        sepia(60%)
        saturate(500%)
        hue-rotate(300deg)
        brightness(1.25)
        drop-shadow(0 0 14px hsla(340,70%,65%,0.7))
        drop-shadow(0 0 28px hsla(340,60%,55%,0.4));
    transform: scale(1.05);
}

.nav-brand-name {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.04em;
}

/* ---- Fila 2: Links centrados ---- */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    padding: 0.45rem 0 0.6rem;
    border-top: 1px solid hsla(340,30%,70%,0.12);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--rose);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
    background: var(--grad-rose);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    top: 0.8rem;
    right: clamp(1rem, 4vw, 2rem);
    z-index: 10;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO
======================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    padding-top: 110px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-bg {
    position: fixed;
    inset: 0;
    background: var(--grad-hero);
    z-index: -2;
}

.hero-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, hsla(340,70%,60%,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, hsla(285,45%,40%,0.08) 0%, transparent 60%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fade-up 0.9s ease both;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: hsla(340,70%,60%,0.1);
    border: 1px solid hsla(340,70%,60%,0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--rose-dark);
    text-transform: uppercase;
}

.hero-title {
    color: var(--plum);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.stat-num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: hsla(285,20%,50%,0.2);
}

/* Hero image */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    animation: fade-up 0.9s 0.2s ease both;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-md);
    box-shadow: var(--shadow-lg), -20px 20px 60px hsla(340,40%,60%,0.2);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: hsla(255,100%,100%,0.9);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid hsla(340,30%,70%,0.2);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.hero-floating-card strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--plum);
}
.hero-floating-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.card-icon { font-size: 1.4rem; }

.card-1 { bottom: 15%; left: -10%; animation-delay: 0s; }
.card-2 { top: 10%; right: -8%; animation-delay: 2s; }

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

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--rose), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

/* ========================================
   CATEGORIES
======================================== */
.categories-section {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-rose);
    opacity: 0;
    transition: var(--transition);
    border-radius: inherit;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-card:hover::before { opacity: 0.05; }

.cat-featured {
    grid-row: 1 / 3;
    background: var(--grad-plum);
    border-color: transparent;
    color: var(--white);
}
.cat-featured::before { display: none; }
.cat-featured h3, .cat-featured p { color: var(--white); }
.cat-featured .cat-link { color: var(--gold-light); }

.cat-icon-wrap {
    width: 60px; height: 60px;
    background: hsla(255,100%,100%,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cat-featured .cat-icon-wrap {
    background: hsla(255,100%,100%,0.15);
}
.category-card:not(.cat-featured) .cat-icon-wrap {
    background: hsla(340,70%,60%,0.1);
}

.cat-icon { font-size: 1.6rem; }

.cat-content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: var(--plum);
}
.cat-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.cat-featured .cat-content h3 { font-size: 1.8rem; color: var(--white); }
.cat-featured .cat-content p { font-size: 1rem; color: hsla(0,0%,100%,0.7); }

.cat-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rose);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}
.cat-link span { transition: transform 0.3s; }
.cat-link:hover { gap: 0.6rem; }
.cat-link:hover span { transform: translateX(4px); }

.cat-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--grad-rose);
    color: var(--white);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ========================================
   FEATURED ARTICLES
======================================== */
.featured-section {
    background: var(--cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.featured-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.article-img-wrap {
    position: relative;
    overflow: hidden;
}
.article-img-wrap:not(.small) { aspect-ratio: 16/9; }
.article-img-wrap.small { height: 120px; }

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-card:hover .article-img,
.side-card:hover .article-img { transform: scale(1.05); }

.article-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--grad-rose);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-content { padding: 1.5rem; }

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--rose-dark);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--plum);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.article-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: var(--transition);
}
.side-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.side-card .article-img-wrap.small { width: 120px; flex-shrink: 0; }
.side-card .article-content { padding: 1rem; }
.side-card .article-content h3 { font-size: 1rem; }
.side-card .article-content p { font-size: 0.82rem; margin-bottom: 0.5rem; }

.side-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rose);
    transition: var(--transition);
}
.side-link:hover { color: var(--rose-dark); letter-spacing: 0.02em; }

/* Gradient fallbacks */
.gradient-fallback-nutrition {
    background: linear-gradient(135deg, hsl(80,60%,75%) 0%, hsl(120,50%,65%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gradient-fallback-hair {
    background: linear-gradient(135deg, hsl(38,70%,75%) 0%, hsl(25,60%,65%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.emoji-placeholder { font-size: 2rem; }

/* ========================================
   BANNER
======================================== */
.banner-section {
    background: var(--grad-banner);
    padding: 6rem clamp(1.5rem, 5vw, 3rem);
    position: relative;
    overflow: hidden;
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.banner-content {
    color: var(--white);
    max-width: 600px;
}
.banner-tag {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.banner-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.banner-content h2 em { color: var(--gold-light); }
.banner-content p {
    color: hsla(0,0%,100%,0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.banner-orbs { position: absolute; inset: 0; overflow: hidden; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}
.orb-1 {
    width: 400px; height: 400px;
    background: hsla(340,70%,60%,1);
    top: -200px; right: -100px;
}
.orb-2 {
    width: 250px; height: 250px;
    background: hsla(38,70%,60%,1);
    bottom: -100px; left: 30%;
}
.orb-3 {
    width: 200px; height: 200px;
    background: hsla(260,60%,60%,1);
    top: 50%; left: -80px;
}

/* ========================================
   TIPS
======================================== */
.tips-section { background: var(--white); }

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tip-card {
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.tip-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(340,50%,70%,0.3);
}
.tip-card:hover::after { transform: scaleX(1); }

.tip-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: hsla(340,50%,80%,0.35);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s;
}
.tip-card:hover .tip-number { color: hsla(340,70%,60%,0.2); }

.tip-icon { font-size: 2rem; margin-bottom: 1rem; }

.tip-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--plum);
    margin-bottom: 0.7rem;
}

.tip-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.tip-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--rose-dark);
    background: hsla(340,70%,60%,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

/* ========================================
   ROUTINE
======================================== */
.routine-section { background: var(--cream); }

.routine-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.routine-content { display: flex; flex-direction: column; gap: 1.5rem; }
.routine-desc { color: var(--text-muted); line-height: 1.7; }

.routine-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--cream-dark);
    padding: 0.4rem;
    border-radius: 50px;
    width: fit-content;
}
.tab-btn {
    background: none;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}
.tab-btn.active {
    background: var(--white);
    color: var(--plum);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.routine-steps { display: flex; flex-direction: column; gap: 0.8rem; }
.routine-steps.hidden { display: none; }

.routine-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}
.routine-step:hover {
    border-color: var(--rose-light);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.step-num {
    width: 32px; height: 32px;
    background: var(--grad-rose);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.step-info { display: flex; flex-direction: column; gap: 0.15rem; }
.step-info strong { font-size: 0.95rem; font-weight: 600; color: var(--plum); }
.step-info span { font-size: 0.82rem; color: var(--text-muted); }

.routine-img-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.routine-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.routine-badge {
    position: absolute;
    bottom: 2rem; left: -2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-dark);
}
.badge-icon { font-size: 1.5rem; }
.routine-badge div { display: flex; flex-direction: column; gap: 0.1rem; }
.routine-badge strong { font-size: 0.9rem; color: var(--plum); }
.routine-badge span { font-size: 0.75rem; color: var(--text-muted); }

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

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.testimonial-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-light);
}

.stars {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-card > p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--grad-rose);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; gap: 0.1rem; }
.testimonial-author strong { font-size: 0.9rem; color: var(--plum); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.nav-arrow {
    width: 44px; height: 44px;
    border: 1.5px solid var(--rose-light);
    border-radius: 50%;
    background: var(--white);
    color: var(--rose);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.nav-arrow:hover {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}
.nav-dots { display: flex; gap: 0.5rem; }
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--rose);
    transform: scale(1.3);
}

/* ========================================
   NEWSLETTER
======================================== */
.newsletter-section {
    position: relative;
    padding: 8rem clamp(1.5rem, 5vw, 3rem);
    background: var(--grad-plum);
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, hsla(340,70%,50%,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, hsla(38,70%,60%,0.15) 0%, transparent 50%);
}

.newsletter-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}
.newsletter-text h2 em { color: var(--gold-light); }
.newsletter-text > p { color: hsla(0,0%,100%,0.75); font-size: 1rem; margin-bottom: 1.5rem; }

.section-tag.light {
    background: hsla(255,100%,100%,0.15);
    color: var(--gold-light);
    border-color: hsla(255,100%,100%,0.2);
}

.newsletter-perks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.newsletter-perks li {
    font-size: 0.9rem;
    color: hsla(0,0%,100%,0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form-wrap {
    background: hsla(255,100%,100%,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(255,100%,100%,0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid hsla(255,100%,100%,0.2);
    border-radius: var(--radius-md);
    background: hsla(255,100%,100%,0.1);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input::placeholder { color: hsla(0,0%,100%,0.5); }
.form-group input:focus {
    outline: none;
    border-color: var(--rose-light);
    background: hsla(255,100%,100%,0.15);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: hsla(0,0%,100%,0.5);
}

.form-success {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}
.form-success.hidden { display: none; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-success p { color: hsla(0,0%,100%,0.75); font-size: 0.95rem; }

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem clamp(1.5rem, 5vw, 3rem) 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid hsla(255,100%,100%,0.08);
}

.footer-brand p {
    color: hsla(0,0%,100%,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    max-width: 280px;
}

.footer-logo { color: var(--white); margin-bottom: 0; }

.social-links { display: flex; gap: 0.8rem; }
.social-link {
    width: 40px; height: 40px;
    border: 1px solid hsla(255,100%,100%,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover {
    border-color: var(--rose);
    background: hsla(340,70%,60%,0.15);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
    font-size: 0.88rem;
    color: hsla(0,0%,100%,0.55);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--rose-light); padding-left: 4px; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: hsla(0,0%,100%,0.35);
}

/* ========================================
   ANIMATIONS (INTERSECTION OBSERVER)
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-top: 160px; padding-bottom: 4rem; }
    .hero-content { align-items: center; }
    .hero-subtitle { text-align: center; }
    .hero-image-wrapper { order: -1; }
    .hero-img { max-height: 450px; }
    .card-1 { left: 0; }
    .card-2 { right: 0; }
    .scroll-hint { display: none; }

    .categories-grid { grid-template-columns: 1fr 1fr; }
    .cat-featured { grid-row: auto; grid-column: 1 / -1; }

    .featured-grid { grid-template-columns: 1fr; }
    .featured-side { display: grid; grid-template-columns: 1fr 1fr; }

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

    .routine-wrapper { grid-template-columns: 1fr; }
    .routine-visual { order: -1; }
    .routine-img { aspect-ratio: 16/9; }

    .testimonials-track { grid-template-columns: 1fr 1fr; }

    .newsletter-content { grid-template-columns: 1fr; gap: 3rem; }

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

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 110px; left: 0; right: 0; background: hsla(38,30%,98%,0.97); padding: 2rem; gap: 1.2rem; border-bottom: 1px solid var(--cream-dark); backdrop-filter: blur(20px); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    .categories-grid { grid-template-columns: 1fr; }
    .cat-featured { grid-column: auto; }

    .featured-side { grid-template-columns: 1fr; }
    .side-card { flex-direction: column; }
    .side-card .article-img-wrap.small { width: 100%; height: 140px; }

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

    .banner-inner { grid-template-columns: 1fr; }

    .testimonials-track { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-stats { flex-wrap: wrap; justify-content: center; }
}

