@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

:root {
    --blood: #8B0000;
    --blood-bright: #C41E3A;
    --blood-glow: #ff2244;
    --dark: #0a0608;
    --dark-2: #110d0f;
    --dark-3: #1a1215;
    --ash: #2a2025;
    --bone: #e8ddd0;
    --bone-dim: #a89880;
    --gold: #c9a84c;
    --white: #f5ede4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--bone);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 5;
    opacity: 0.4;
}

/* === NAV === */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.4s;
}

nav.scrolled {
    background: rgba(10, 6, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-brand {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand span {
    color: var(--blood-bright);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bone-dim);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blood-bright);
    transition: width 0.3s;
}

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

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

.nav-cta {
    color: var(--white) !important;
    border: 1px solid var(--blood-bright);
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(139, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-cta:hover {
    background: var(--blood-bright);
    color: var(--white) !important;
    box-shadow: 0 0 25px rgba(196, 30, 58, 0.5);
    transform: translateY(-2px);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(139, 0, 0, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(50, 0, 0, 0.4) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--dark));
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--blood-bright);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 6s ease-in infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 1.2s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: 0.6s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-delay: 2.4s;
}

.particle:nth-child(5) {
    left: 70%;
    animation-delay: 1.8s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-delay: 3s;
}

@keyframes float-up {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: scale(1);
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        bottom: 100%;
        opacity: 0;
        transform: scale(0.3);
    }
}

.logo-symbol {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 155px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.drip-svg {
    overflow: visible;
}

.single-drop {
    animation: single-drip 4s ease-in-out infinite;
    transform-origin: 35px 0px;
}

@keyframes single-drip {
    0% {
        transform: translateY(0px) scale(0.04);
        opacity: 1;
    }

    10% {
        transform: translateY(0px) scale(0.2);
        opacity: 1;
    }

    30% {
        transform: translateY(0px) scale(0.55);
        opacity: 1;
    }

    50% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }

    57% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }

    65% {
        transform: translateY(22px) scale(0.97) scaleY(1.08);
        opacity: 1;
    }

    75% {
        transform: translateY(60px) scale(0.93) scaleY(1.12);
        opacity: 1;
    }

    85% {
        transform: translateY(108px) scale(0.9) scaleY(1.06);
        opacity: 1;
    }

    93% {
        transform: translateY(148px) scale(0.85);
        opacity: 0.4;
    }

    97% {
        transform: translateY(160px) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateY(0px) scale(0.04);
        opacity: 0;
    }
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: clamp(13px, 2vw, 18px);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blood-bright);
    margin: 0 0 16px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 40px rgba(196, 30, 58, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title span {
    color: var(--blood-bright);
    display: block;
}

.hero-subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 400;
    text-shadow: none;
    font-size: clamp(18px, 2.5vw, 26px);
    font-style: italic;
    color: var(--bone-dim);
    margin: 24px auto 0;
    max-width: 620px;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(13px, 1.8vw, 16px);
    color: var(--bone);
    margin: 32px auto 0;
    max-width: 560px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

/* Hero mockup image */
.hero-mockup {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    max-width: 800px;
    width: 100%;
}

.hero-mockup img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(139, 0, 0, 0.3), 0 0 120px rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 44px;
    position: relative;
    z-index: 2;
}

/* === BUTTONS === */
.btn-primary {
    background: var(--blood);
    color: var(--white);
    border: 1px solid var(--blood-bright);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    background: var(--blood-bright);
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.6), 0 0 60px rgba(196, 30, 58, 0.2);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--bone-dim);
    border: 1px solid var(--ash);
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--bone-dim);
    color: var(--bone);
}

/* === SECTIONS === */
section {
    padding: 80px 24px;
    max-width: 960px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    opacity: 0.9;
}

h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(26px, 4vw, 44px);
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.2);
}

h2 em {
    font-style: italic;
    color: var(--blood-bright);
    font-family: 'Cinzel', serif;
}

.lead {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--bone-dim);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

p {
    color: var(--bone-dim);
    margin-bottom: 16px;
}

/* === ENEMY SECTION === */
.enemy-section {
    max-width: 100%;
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent, var(--dark-2) 15%, var(--dark-2) 85%, transparent);
    text-align: center;
}

.enemy-inner {
    max-width: 800px;
    margin: 0 auto;
}

.enemy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 48px 0;
    text-align: left;
}

.enemy-item {
    border: 1px solid rgba(139, 0, 0, 0.3);
    background: rgba(139, 0, 0, 0.05);
    padding: 20px 24px;
    position: relative;
    transition: all 0.4s;
}

.enemy-item::before {
    content: '✕';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--dark-2);
    color: var(--blood-bright);
    padding: 0 8px;
    font-size: 12px;
    font-family: 'Cinzel', serif;
}

.enemy-item:hover {
    border-color: rgba(196, 30, 58, 0.5);
    background: rgba(139, 0, 0, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
}

.enemy-item strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.enemy-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* === TESTIMONIAL === */
.testimonial-section {
    max-width: 100%;
    padding: 100px 24px;
    background: var(--dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(139, 0, 0, 0.12) 0%, transparent 70%);
}

.testimonial-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-family: 'Cinzel Decorative', serif;
    font-size: 120px;
    color: var(--blood);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 24px;
    display: block;
}

blockquote {
    font-size: clamp(22px, 3.5vw, 34px);
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 32px;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

blockquote strong {
    color: var(--blood-bright);
    font-style: normal;
}

.quote-author {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--bone-dim);
    text-transform: uppercase;
}

/* === FEATURES WITH IMAGES === */
.feature-showcase {
    max-width: 100%;
    padding: 80px 24px;
}

.feature-showcase-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-text .section-label {
    margin-bottom: 12px;
}

.feature-text h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.2);
}

.feature-text h3 em {
    font-style: italic;
    color: var(--blood-bright);
    font-family: 'Cinzel', serif;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.7;
}

.feature-image {
    position: relative;
}

.feature-image img,
.feature-image video {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.15);
    transition: transform 0.4s, box-shadow 0.4s;
}

.feature-image:hover img,
.feature-image:hover video {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(139, 0, 0, 0.25);
}

/* === MOBILE MOCKUP (Demo) === */
.mobile-mockup {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    height: 720px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    border: 12px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background-color: #000;
}


.mobile-mockup iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 28px;
    background: var(--bg-color);
}

.demo-mockup-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.demo-cta {
    display: inline-block;
}

/* === FEATURE CARDS GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 48px;
    border: 1px solid var(--ash);
}

.feature-card {
    padding: 32px 28px;
    background: var(--dark-3);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blood), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    background: var(--dark-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blood-bright);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--bone-dim);
    line-height: 1.6;
    margin: 0;
}

/* === BULLETS === */
.bullet-list {
    list-style: none;
    margin: 32px auto;
    max-width: 600px;
    text-align: center;
}

.bullet-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--bone-dim);
    font-size: 17px;
    transition: all 0.3s;
    text-align: center;
}

.bullet-marker {
    color: var(--blood-bright);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    margin-bottom: 4px;
}

.bullet-list li:hover {
    padding-left: 8px;
    border-bottom-color: rgba(139, 0, 0, 0.15);
}

.bullet-list li:last-child {
    border-bottom: none;
}

/* === STEPS === */
.steps {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    margin-top: 48px;
}

.step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid var(--ash);
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.step:hover {
    padding-left: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px;
    color: var(--blood);
    opacity: 0.5;
    line-height: 1;
    transition: opacity 0.3s;
}

.step:hover .step-number {
    opacity: 1;
}

.step-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* === PRICING === */
.pricing-section {
    max-width: 100%;
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent, var(--dark-3) 20%, var(--dark-3) 80%, transparent);
}

.pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 56px;
    text-align: left;
}

.price-card {
    border: 1px solid var(--ash);
    padding: 30px 20px;
    background: var(--dark-2);
    position: relative;
    transition: all 0.4s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
    border-color: var(--blood);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, var(--dark-2) 100%);
}

.price-card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blood);
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    padding: 4px 16px;
    white-space: nowrap;
}

.price-tag {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    color: var(--white);
    line-height: 1;
    margin: 16px 0 4px;
}

.price-tag span {
    font-size: 20px;
    color: var(--bone-dim);
    font-family: 'EB Garamond', serif;
}

.price-period {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--bone-dim);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.price-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
    min-height: 40px;
}

.price-features {
    list-style: none;
    margin: 24px 0 32px;
}

.price-features li {
    font-size: 14px;
    color: var(--bone-dim);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-features li::before {
    content: '—';
    color: var(--blood-bright);
    flex-shrink: 0;
    font-family: 'Cinzel', serif;
    font-size: 12px;
}

/* === FAQ === */
.faq-section {
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid var(--ash);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--white);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.3s;
}

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

.faq-arrow {
    color: var(--blood-bright);
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
    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: 200px;
    padding: 0 0 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* === FINAL CTA === */
.final-cta {
    max-width: 100%;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
}

.final-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === FOOTER === */
footer {
    border-top: 1px solid var(--ash);
    padding: 40px 24px;
    text-align: center;
}

footer p {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(168, 152, 128, 0.4);
    text-transform: uppercase;
}

footer .footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

footer .footer-logo span {
    color: var(--blood-bright);
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--bone-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.stagger-in .fade-child {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Mobile CTA — hidden on desktop, visible on mobile */
.nav-cta-mobile {
    display: none;
    font-family: 'Cinzel', serif;
    font-size: 10px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white, #fff) !important;
    border: 1px solid var(--blood-bright, #c41e3a);
    padding: 8px 16px !important;
    border-radius: 50px;
    background: rgba(139, 0, 0, 0.2);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}
.nav-cta-mobile:hover {
    background: var(--blood-bright, #c41e3a);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.4);
}

/* Hamburger button — hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bone, #e0d6c8);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    nav {
        padding: 12px 16px;
        flex-wrap: nowrap;
    }

    .menu-toggle {
        display: flex;
        order: -1;
    }

    .nav-brand {
        flex: 1;
        font-size: 15px;
    }

    /* Show mobile CTA in top bar */
    .nav-cta-mobile {
        display: inline-block;
    }

    /* Hide CTA inside slide menu — the mobile CTA is in the top bar */
    .nav-links > .nav-cta {
        display: none !important;
    }

    /* Sidebar menu — absolute inside the fixed nav */
    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: rgba(10, 6, 8, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 80px 24px 32px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 200;
        border-right: 1px solid rgba(139, 0, 0, 0.2);
        display: flex;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a:not(.nav-cta) {
        display: block !important;
        padding: 14px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: var(--bone-dim, #b8a99a);
    }

    .nav-links a:not(.nav-cta):hover {
        color: var(--white, #fff);
    }

    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
    .nav-overlay.open {
        display: block;
    }

    section {
        padding: 40px 20px;
    }

    .enemy-section,
    .testimonial-section,
    .pricing-section {
        padding: 50px 20px;
    }

    .final-cta {
        padding: 80px 20px;
    }

    .feature-row {
        margin-bottom: 32px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .feature-row .feature-text {
        text-align: center;
    }

    .feature-row .feature-text .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-mockup {
        max-width: 300px;
        height: 600px;
        border-width: 8px;
        border-radius: 32px;
    }

    .mobile-mockup iframe {
        border-radius: 24px;
    }

    .features-grid {
        gap: 1px;
    }

    .step {
        grid-template-columns: 40px 1fr;
        padding: 15px 0;
    }

    .hero {
        min-height: auto;
        height: 100svh;
        padding: 70px 20px 24px;
        justify-content: center;
    }

    .logo-symbol {
        width: 60px;
        height: 100px;
    }

    .logo-symbol .drip-svg {
        width: 45px;
        height: 140px;
    }

    .hero-eyebrow {
        font-size: 11px;
        margin-bottom: 8px;
        letter-spacing: 0.15em;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-top: 12px;
        line-height: 1.35;
    }

    .hero-tagline {
        font-size: 12px;
        margin-top: 14px;
    }

    .cta-group {
        margin-top: 20px;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 12px;
    }

    .hero .btn-secondary {
        display: none;
    }
}

/* === SLIDER STYLES === */
.slider-container {
    background: rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.slider-wrapper img {
    animation: fadeInSlider 0.5s ease-in-out;
}

@keyframes fadeInSlider {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    pointer-events: auto;
    background: rgba(139, 0, 0, 0.3);
    color: var(--white);
    border: 1px solid rgba(196, 30, 58, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
    background: var(--blood-bright);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--blood-bright);
    box-shadow: 0 0 10px var(--blood-bright);
    transform: scale(1.4);
}