/* =========================================
   The Truth Lens — Landing
   Estilo: azul marino profundo + dorado (premium bíblico)
   ========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-deep: #0f1b30;        /* azul marino profundo (fondo) */
    --bg-dark: #0a1322;        /* azul aún más oscuro (footer) */
    --bg-card: #16243d;        /* azul de las tarjetas */
    --bg-card-soft: #1b2c49;   /* gradiente tarjeta */
    --gold: #c9a84a;           /* dorado principal */
    --gold-bright: #e3c876;    /* dorado claro/brillo */
    --gold-soft: #a8893a;      /* dorado oscuro */
    --red: #b03a3a;            /* rojo sobrio (acentos urgencia) */
    --red-bright: #d46a6a;
    --text: #f4efe2;           /* crema/hueso (texto principal) */
    --text-soft: #cfc8b6;
    --text-mute: #8a93a6;      /* gris azulado apagado */
    --border: rgba(201, 168, 74, 0.25);
    --border-strong: rgba(201, 168, 74, 0.6);
}

html, body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'EB Garamond', 'Inter', Georgia, serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    background:
        radial-gradient(ellipse at top, rgba(201, 168, 74, 0.08) 0%, transparent 58%),
        radial-gradient(ellipse at bottom, rgba(201, 168, 74, 0.04) 0%, transparent 58%),
        var(--bg-deep);
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================================
   BARRA DE URGENCIA SUPERIOR
   ========================================= */
.urgency-bar {
    background: linear-gradient(180deg, #14223b 0%, #0c1526 100%);
    border-bottom: 1px solid var(--gold);
    padding: 11px 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #ffefb0;
}

.urgency-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.urgency-divider {
    color: rgba(201, 168, 74, 0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4444;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.warning-icon {
    color: var(--gold-bright);
}

.countdown {
    background: var(--bg-deep);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 8px;
    border: 1px solid var(--gold);
    min-width: 95px;
    display: inline-block;
    text-shadow: 0 0 8px rgba(201, 168, 74, 0.4);
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 168, 74, 0.15);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.brand-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(201, 168, 74, 0.4));
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 12px rgba(201, 168, 74, 0.25);
}

.brand-tagline {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-mute);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--bg-deep);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 12px 20px;
    border-radius: 4px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 16px rgba(201, 168, 74, 0.3);
    text-transform: uppercase;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(201, 168, 74, 0.5);
    background: var(--gold-bright);
}

.price-tag {
    background: var(--bg-deep);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 800;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    padding: 56px 0 24px;
    text-align: center;
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(201, 168, 74, 0.3);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title .gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 168, 74, 0.35);
}

.hero-title .underline-gold {
    color: var(--gold);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(201, 168, 74, 0.35);
}

.hero-title .underline-gold::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(201, 168, 74, 0.6);
}

.hero-subtitle {
    color: var(--text-soft);
    font-size: 17px;
    max-width: 700px;
    margin: 30px auto 40px;
    line-height: 1.65;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.badge {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.badge strong {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
}

.badge span {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;
}

/* =========================================
   PRODUCTOS — 3 CAJAS
   ========================================= */
.products {
    padding: 40px 0 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 24px;
    align-items: stretch;
}

.product-card {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    border: 1px solid rgba(201, 168, 74, 0.18);
    border-radius: 10px;
    padding: 40px 28px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 14px 44px rgba(201, 168, 74, 0.12), 0 10px 36px rgba(0, 0, 0, 0.6);
}

.product-card.premium {
    background: linear-gradient(180deg, #1a1505 0%, #0f0c03 100%);
    border-color: var(--gold);
    box-shadow:
        0 0 0 1px rgba(201, 168, 74, 0.4) inset,
        0 14px 44px rgba(201, 168, 74, 0.18),
        0 10px 36px rgba(0, 0, 0, 0.6);
    padding-top: 64px;
}

.premium-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--bg-deep);
    padding: 11px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.stars {
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--bg-deep);
}

.product-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--bg-deep);
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    z-index: 2;
    letter-spacing: 0.5px;
}

.product-tag span {
    font-size: 9px;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.product-card.premium .product-tag {
    top: 50px;
    background: var(--red);
    color: #fff;
}

.product-card.premium .save-tag span {
    font-size: 18px;
    margin-top: 2px;
    color: #fff;
}

.product-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0 24px;
    min-height: 280px;
}

.product-image {
    max-height: 320px;
    width: auto;
    filter:
        drop-shadow(0 20px 32px rgba(0, 0, 0, 0.7))
        drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.product-card.premium .product-image {
    max-height: 360px;
}

.product-card:hover .product-image {
    transform: translateY(-4px) scale(1.03);
}

.product-title {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(201, 168, 74, 0.2);
}

.product-card.premium .product-title {
    font-size: 34px;
}

.product-subtitle {
    text-align: center;
    color: var(--text-mute);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 50px;
    padding: 0 4px;
}

/* VOLUMENES CHIPS (solo en premium) */
.volumes-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.volume-chip {
    background: rgba(201, 168, 74, 0.08);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 14px;
    text-align: center;
    min-width: 72px;
    position: relative;
}

.volume-chip strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--gold);
    line-height: 1;
    font-weight: 400;
}

.volume-chip span {
    display: block;
    font-size: 9px;
    letter-spacing: 1.3px;
    color: var(--text-mute);
    margin-top: 6px;
    font-weight: 700;
}

.volume-chip.exclusive {
    border-color: var(--gold);
    background: rgba(201, 168, 74, 0.15);
}

.chip-flag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-deep);
    font-size: 8px !important;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: 1px !important;
    font-weight: 800 !important;
    white-space: nowrap;
}

.volume-plus {
    color: var(--gold-soft);
    font-size: 18px;
    font-weight: 300;
}

/* PRECIO */
.product-price-block {
    text-align: center;
    margin-bottom: 24px;
}

.price-original {
    color: var(--text-mute);
    text-decoration: line-through;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 500;
}

.price-current {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
}

.price-current span {
    font-size: 60px;
    text-shadow: 0 0 20px rgba(201, 168, 74, 0.3);
}

.price-save {
    color: var(--red-bright);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.red-save {
    background: rgba(176, 58, 58, 0.12);
    color: #ff8080;
    padding: 7px 14px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid rgba(176, 58, 58, 0.35);
}

/* FEATURES (bullets de contenido) */
.product-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.product-features li {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
    padding: 10px 0 10px 32px;
    position: relative;
    border-bottom: 1px solid rgba(201, 168, 74, 0.06);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--bg-deep);
    background: var(--gold);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 0 12px rgba(201, 168, 74, 0.3);
}

.product-features li strong {
    color: var(--text);
    font-weight: 700;
}

/* CTA BOTÓN */
.product-cta {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    margin-top: auto;
    text-transform: uppercase;
}

.product-cta:hover {
    background: var(--gold);
    color: var(--bg-deep);
    box-shadow: 0 6px 22px rgba(201, 168, 74, 0.45);
}

.premium-cta {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
    font-size: 15px;
    padding: 18px;
    box-shadow: 0 6px 24px rgba(201, 168, 74, 0.4);
}

.premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 168, 74, 0.55);
    background: var(--gold-bright);
}

/* =========================================
   GARANTÍA
   ========================================= */
.guarantee {
    padding: 40px 0 80px;
}

.guarantee-box {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.guarantee-seal {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 70%, var(--gold-soft) 100%);
    color: var(--bg-deep);
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 4px rgba(201, 168, 74, 0.15),
        0 0 28px rgba(201, 168, 74, 0.35);
    position: relative;
}

.guarantee-seal::before {
    content: "DÍAS";
    position: absolute;
    bottom: 14px;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.guarantee-text h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.guarantee-text p {
    color: var(--text-soft);
    font-size: 15px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 168, 74, 0.15);
    padding: 32px 0;
    text-align: center;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: var(--text-mute);
}

.footer-links a {
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* =========================================
   POPUP DE COMPRA RECIENTE
   ========================================= */
.recent-purchase {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    padding: 14px 16px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 90;
}

.recent-purchase.show {
    transform: translateY(0);
    opacity: 1;
}

.purchase-avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    font-family: 'Cinzel', serif;
}

.purchase-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.purchase-name {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
}

.purchase-item {
    color: var(--text-soft);
    margin-top: 2px;
}

.purchase-item strong {
    color: var(--text);
}

.purchase-time {
    color: var(--text-mute);
    font-size: 11px;
    margin-top: 4px;
}

.purchase-close {
    background: none;
    border: none;
    color: var(--text-mute);
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.purchase-close:hover {
    color: var(--gold);
}

/* =========================================
   SECCIONES GENÉRICAS (títulos / lead)
   ========================================= */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.section-lead {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 20px;
}

.section-lead.center {
    text-align: center;
}

.section-lead strong {
    color: var(--text);
}

/* =========================================
   HERO CTA (botón grande + reaseguro)
   ========================================= */
.hero-cta-wrap {
    margin: 36px 0 8px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-soft) 100%);
    color: #1a1206;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 1px;
    padding: 18px 44px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 28px rgba(201, 168, 74, 0.35);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 168, 74, 0.5);
}

.hero-cta-sub {
    margin-top: 14px;
    color: var(--text-mute);
    font-size: 14px;
    font-style: italic;
}

.hero-subtitle em {
    color: var(--gold-bright);
    font-style: italic;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem {
    padding: 70px 0;
    border-top: 1px solid rgba(201, 168, 74, 0.12);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.problem-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    border: 1px solid rgba(201, 168, 74, 0.18);
    border-left: 3px solid var(--red);
    border-radius: 8px;
    padding: 24px 24px 24px 28px;
    position: relative;
}

.problem-icon {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--red-bright);
    line-height: 0.5;
    opacity: 0.5;
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--text-soft);
    font-size: 17px;
    font-style: italic;
}

.problem-card strong {
    color: var(--text);
    font-style: normal;
}

/* =========================================
   LEARN SECTION (6 puntos)
   ========================================= */
.learn {
    padding: 70px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(201,168,74,0.03) 50%, transparent 100%);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.learn-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    border: 1px solid rgba(201, 168, 74, 0.18);
    border-radius: 10px;
    padding: 32px 28px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.learn-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.learn-num {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1206;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 0 16px rgba(201, 168, 74, 0.3);
}

.learn-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 21px;
    color: var(--gold-bright);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.learn-card p {
    color: var(--text-soft);
    font-size: 15.5px;
    line-height: 1.6;
}

/* =========================================
   OFFER SECTION (producto único)
   ========================================= */
.offer {
    padding: 16px 0 60px;
}

.offer-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 50px;
    box-shadow:
        0 0 0 1px rgba(201, 168, 74, 0.3) inset,
        0 18px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(201, 168, 74, 0.1);
}

.offer-image {
    display: flex;
    justify-content: center;
}

.offer-cover {
    max-height: 460px;
    width: auto;
    filter:
        drop-shadow(0 24px 40px rgba(0, 0, 0, 0.6))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.offer-eyebrow {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.offer-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 12px;
}

.offer-subtitle {
    color: var(--text-mute);
    font-style: italic;
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.5;
}

.offer-features {
    list-style: none;
    margin-bottom: 32px;
}

.offer-features li {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.5;
    padding: 11px 0 11px 34px;
    position: relative;
    border-bottom: 1px solid rgba(201, 168, 74, 0.1);
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--gold);
    font-size: 16px;
}

.offer-features strong {
    color: var(--text);
    font-weight: 600;
}

.offer-price-block {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.offer-price-block .price-original {
    color: var(--text-mute);
    text-decoration: line-through;
    font-size: 24px;
    margin: 0;
}

.offer-price-block .price-current {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--gold);
    margin: 0;
}

.offer-price-block .price-current span {
    font-size: 52px;
    font-weight: 700;
}

.offer-price-block .price-save {
    background: rgba(176, 58, 58, 0.15);
    color: var(--red-bright);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(176, 58, 58, 0.3);
    font-family: 'Inter', sans-serif;
}

.offer-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-soft) 100%);
    color: #1a1206;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1.5px;
    padding: 20px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 28px rgba(201, 168, 74, 0.35);
}

.offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 38px rgba(201, 168, 74, 0.55);
}

.offer-reassure {
    text-align: center;
    color: var(--text-mute);
    font-size: 13.5px;
    font-style: italic;
    margin-top: 14px;
}

/* =========================================
   ABOUT / CREDIBILITY
   ========================================= */
.about {
    padding: 70px 0;
    border-top: 1px solid rgba(201, 168, 74, 0.12);
}

.about-box {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    max-width: 880px;
    margin: 40px auto 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    border: 1px solid rgba(201, 168, 74, 0.18);
    border-radius: 12px;
    padding: 40px;
}

.about-logo {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

.about-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(201, 168, 74, 0.3));
}

.about-text p {
    color: var(--text-soft);
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text);
}

.about-motto {
    color: var(--gold-bright) !important;
    font-style: italic;
    font-size: 18px !important;
    border-left: 3px solid var(--gold);
    padding-left: 18px;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 28px auto 0;
}

.about-stat {
    text-align: center;
    padding: 22px 16px;
    background: rgba(201, 168, 74, 0.05);
    border: 1px solid rgba(201, 168, 74, 0.15);
    border-radius: 8px;
}

.about-stat strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold-bright);
    margin-bottom: 6px;
}

.about-stat span {
    color: var(--text-mute);
    font-size: 14px;
    line-height: 1.4;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(201,168,74,0.05) 100%);
}

.final-cta .hero-cta {
    margin-top: 16px;
}

/* =========================================
   FOOTER motto
   ========================================= */
.footer-motto {
    color: var(--text-mute);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 14px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .learn-grid {
        grid-template-columns: 1fr 1fr;
    }

    .offer-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
        text-align: center;
    }

    .offer-features {
        text-align: left;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-price-block {
        justify-content: center;
    }

    .about-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .about-motto {
        border-left: none;
        padding-left: 0;
    }

    .urgency-content {
        gap: 12px;
        font-size: 12px;
    }

    .urgency-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 50px 0 30px;
    }

    .hero-badges {
        gap: 20px;
    }

    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .brand {
        justify-content: center;
    }

    .header-cta {
        justify-content: center;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .recent-purchase {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .learn-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}
