/* ============================================================
   Notícias de Saúde 24 — Premium Advertorial Stylesheet
   Portugal (PT) Joint Comfort Product Review
   ============================================================ */

:root {
    --primary: #1a6b5a;
    --primary-light: #2a8f78;
    --primary-dark: #145548;
    --primary-subtle: #e8f5f0;
    --accent: #d4a853;
    --accent-light: #f0dca8;
    --accent-dark: #b8902e;
    --bg: #fafbfc;
    --bg-alt: #f3f5f7;
    --bg-warm: #fdf9f3;
    --text: #1e2a36;
    --text-muted: #5a6978;
    --text-light: #8b95a1;
    --white: #ffffff;
    --border: #e4e8ec;
    --border-light: #f0f2f5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(26,107,90,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--primary-light); }


/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes bounce-in {
    0% { transform: scale(0) rotate(-12deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(-10deg); }
    100% { transform: scale(1) rotate(-12deg); opacity: 1; }
}

.bounce-in {
    animation: bounce-in 0.6s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e74c3c;
    animation: pulse 1.5s ease infinite;
    margin-right: 6px;
    vertical-align: middle;
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


/* ============================================================
   TOP BAR
   ============================================================ */

.top-bar {
    background: var(--text);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.03em;
    padding: 8px 0;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-bar-label {
    background: var(--accent);
    color: var(--text);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.top-bar-sep {
    opacity: 0.3;
}

.top-bar-urgency {
    margin-left: auto;
    color: var(--accent-light);
    font-weight: 500;
    display: flex;
    align-items: center;
}


/* ============================================================
   DISCLAIMER BANNER
   ============================================================ */

.disclaimer-banner {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-bottom: 1px solid #f0dca8;
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6b5a00;
}

.disclaimer-banner strong {
    color: #4a3d00;
}


/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 90;
    transition: box-shadow var(--transition);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.logo-icon {
    display: flex;
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.logo-text--long {
    font-size: clamp(13px, 2.2vw, 17px);
    max-width: 220px;
    line-height: 1.2;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a {
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--primary-light);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

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


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26,107,90,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,107,90,0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-xl { padding: 18px 42px; font-size: 18px; }
.btn-block { width: 100%; text-align: center; }


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    background: linear-gradient(135deg, #f0f9f6 0%, #e8f0ed 30%, #fdf9f3 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,107,90,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-tag {
    display: inline-block;
    background: var(--primary-subtle);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(26,107,90,0.12);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 540px;
}

.trust-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.chip svg {
    color: var(--primary);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* Hero Product */

.product-spotlight {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(231,76,60,0.35);
    z-index: 10;
    transform: rotate(-12deg);
    letter-spacing: -0.02em;
}

.product-image-wrapper {
    position: relative;
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,107,90,0.12) 0%, transparent 70%);
    z-index: 0;
    animation: float 4s ease infinite;
}

.product-placeholder {
    position: relative;
    z-index: 1;
}

.product-box {
    background: linear-gradient(145deg, #ffffff 0%, #f4f9f7 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    min-width: 240px;
}

.product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.product-box-top {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.product-box-sub {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-box-detail {
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-alt);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.product-box-icon {
    margin-top: 8px;
}

.product-photo {
    display: block;
    max-height: 240px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 12px;
    object-fit: contain;
}

.product-box-caption {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.pcr-image .product-photo {
    max-height: 200px;
    margin-bottom: 8px;
}

.offer-product .product-photo {
    max-height: 300px;
    margin-bottom: 0;
}

.offer-product .product-box {
    padding: 24px 28px 32px;
}

.product-box-sm {
    padding: 28px 36px;
    min-width: auto;
}

.product-box-sm .product-box-top { font-size: 22px; }

.product-box-lg {
    padding: 48px 56px;
}

.product-box-lg .product-box-top { font-size: 32px; }

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(212,168,83,0.3);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


/* ============================================================
   EDITORIAL INTRO
   ============================================================ */

.editorial-intro {
    padding: 80px 0;
    background: var(--white);
}

.article-meta {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.meta-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.meta-item svg { color: var(--primary); }

.editorial-content {
    max-width: 760px;
    margin: 0 auto;
}

.editorial-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 64px;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 6px;
    color: var(--primary);
    font-weight: 700;
}


/* ============================================================
   INFO BOXES
   ============================================================ */

.info-box {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.6;
    align-items: flex-start;
}

.info-box-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box-blue {
    background: linear-gradient(135deg, #e8f4fd 0%, #dbedf8 100%);
    border: 1px solid #b8d8f0;
    color: #1a4a6b;
}

.info-box-blue .info-box-icon { color: #2980b9; }

.info-box-green {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, #d4ede6 100%);
    border: 1px solid #a8d5c8;
    color: #145548;
}

.info-box-green .info-box-icon { color: var(--primary); }

.info-box-amber {
    background: linear-gradient(135deg, #fef9e7 0%, #fdf3d3 100%);
    border: 1px solid #f0dca8;
    color: #6b5a00;
}

.info-box-amber .info-box-icon { color: #d4a853; }


/* ============================================================
   SECTIONS
   ============================================================ */

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 48px;
}

.context-lead {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    max-width: 900px;
    margin: 0 auto 40px;
}

.context-lead strong {
    font-weight: 600;
    color: var(--text);
}

.editorial-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.editorial-photo-card {
    margin: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.editorial-photo-card img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.editorial-photo-card figcaption {
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    background: var(--bg-alt);
}

.routine-lifestyle-photo {
    margin: 48px auto 0;
    max-width: 720px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.routine-lifestyle-photo img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.routine-lifestyle-photo figcaption {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    background: var(--bg-alt);
}

.section-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    max-width: 680px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    line-height: 1.6;
}


/* ============================================================
   CONTEXT CARDS (Section 4)
   ============================================================ */

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

.context-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.context-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-subtle);
}

.context-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.context-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.context-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ============================================================
   REVIEW SECTION (Section 5)
   ============================================================ */

.review-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.review-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.review-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.review-block p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.product-card-review {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.pcr-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pcr-image {
    padding: 32px 24px;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
}

.pcr-details {
    padding: 0 24px 24px;
}

.pcr-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.pcr-row:last-child { border-bottom: none; }

.pcr-row span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.pcr-row span:last-child {
    color: var(--text);
    font-weight: 600;
}

.pcr-details + .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
}


/* ============================================================
   INGREDIENT CARDS (Section 6)
   ============================================================ */

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

.ingredient-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

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

.ingredient-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ingredient-icon-1 { background: #e8f5e9; color: #2e7d32; }
.ingredient-icon-2 { background: #fff3e0; color: #e65100; }
.ingredient-icon-3 { background: #e3f2fd; color: #1565c0; }
.ingredient-icon-4 { background: #fce4ec; color: #c62828; }
.ingredient-icon-5 { background: #f3e5f5; color: #6a1b9a; }
.ingredient-icon-6 { background: #e0f2f1; color: #00695c; }

.ingredient-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.ingredient-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ingredient-tag {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--text-light);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


/* ============================================================
   ROUTINE SECTION (Section 7)
   ============================================================ */

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

.routine-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.routine-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-subtle);
}

.routine-step:last-child { margin-bottom: 0; }

.routine-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26,107,90,0.2);
}

.routine-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.routine-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ============================================================
   FEATURES (Section 8)
   ============================================================ */

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

.feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-item:hover {
    border-color: var(--primary-subtle);
    box-shadow: var(--shadow-sm);
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ============================================================
   COMPARISON TABLE (Section 9)
   ============================================================ */

.comparison-table-wrap {
    max-width: 840px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--text);
    color: var(--white);
}

.comparison-table th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.02em;
}

.comparison-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

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

.comparison-table tbody tr:hover td {
    background: var(--bg-alt);
}

.highlight-col {
    background: var(--primary-subtle) !important;
    font-weight: 500;
}

thead .highlight-col {
    background: var(--primary) !important;
}

.check {
    color: var(--primary);
    font-weight: 700;
    margin-right: 6px;
}

.comparison-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    max-width: 680px;
    margin: 24px auto 0;
    line-height: 1.6;
}


/* ============================================================
   TESTIMONIALS (Section 10)
   ============================================================ */

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}


/* ============================================================
   OFFER SECTION (Section 11)
   ============================================================ */

.offer-section {
    background: linear-gradient(135deg, #f0f9f6 0%, #e4f0ec 50%, #fdf9f3 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
}

.offer-wrapper {
    position: relative;
}

.offer-badge-large {
    text-align: center;
    margin-bottom: 48px;
}

.offer-percent {
    display: block;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.04em;
}

.offer-label {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
}

.offer-ribbon {
    position: absolute;
    top: 20px;
    left: -8px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    padding: 6px 20px 6px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 4% 50%);
    box-shadow: 0 2px 8px rgba(231,76,60,0.3);
}

.offer-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stock-warning {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #c0392b;
    font-weight: 600;
}

.offer-details h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.offer-details > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.price-block {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.price-value.struck {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 24px;
    font-weight: 600;
}

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

.offer-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.offer-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.offer-trust-row svg {
    color: var(--accent);
}


/* ============================================================
   FAQ (Section 12)
   ============================================================ */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-subtle);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ============================================================
   DISCLAIMER STRIP (Section 13)
   ============================================================ */

.disclaimer-strip {
    background: var(--text);
    color: rgba(255,255,255,0.8);
    padding: 48px 0;
}

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

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.disclaimer-item svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.disclaimer-item p {
    font-size: 13px;
    line-height: 1.5;
}


/* ============================================================
   FOOTER (Section 14)
   ============================================================ */

.footer {
    background: #141e28;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 48px;
}

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

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 500;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-entity {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.48);
    max-width: 300px;
}

.footer-links h4,
.footer-notice h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-notice p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-copy {
    opacity: 0.5;
    font-size: 12px;
    margin-top: 8px;
}


/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 80;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transition: bottom 0.4s ease;
    display: none;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-cta-info strong {
    font-size: 15px;
    color: var(--text);
}

.sticky-cta-discount {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}


/* ============================================================
   LEGAL PAGES LAYOUT
   ============================================================ */

.legal-page {
    padding: 80px 0;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-page .legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content { order: 1; }
    .hero-product { order: 0; }

    .hero-subtitle { margin: 0 auto 24px; }
    .trust-chips { justify-content: center; }
    .hero-ctas { justify-content: center; }

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

    .product-card-review {
        position: static;
    }

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

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

@media (max-width: 768px) {
    .hero-title { font-size: 30px; }
    .section-title { font-size: 26px; }

    .editorial-photo-grid {
        grid-template-columns: 1fr;
    }

    .editorial-photo-card img {
        height: 220px;
    }

    .context-grid,
    .ingredients-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links a:not(.nav-cta) { display: none; }

    .sticky-cta { display: block; }

    .comparison-table-wrap {
        margin: 0 -24px;
        padding: 0 24px;
    }

    .offer-grid {
        padding: 28px;
    }

    .price-block {
        flex-direction: column;
        gap: 16px;
    }

    .offer-badge-large .offer-percent {
        font-size: 56px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .section { padding: 60px 0; }

    .drop-cap::first-letter {
        font-size: 48px;
    }
}

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

    .hero-title { font-size: 26px; }
    .section-title { font-size: 22px; }
    .hero-subtitle { font-size: 15px; }

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

    .btn-xl { padding: 16px 28px; font-size: 16px; }

    .top-bar-inner {
        font-size: 11px;
    }

    .product-box { padding: 28px 24px; }
    .product-box-top { font-size: 22px; }
}
