/* Import standard Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables for Premium Design System */
:root {
    --bg-main: #060913;
    --bg-surface: rgba(13, 20, 38, 0.45);
    --bg-surface-solid: #0d1426;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 255, 135, 0.15);
    
    /* Colors */
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    --color-gold-start: #ffe259;
    --color-gold-end: #ffa751;
    --color-green-start: #00f260;
    --color-green-end: #0575e6;
    --color-neon-green: #00ff87;
    --color-neon-gold: #ffd700;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background glowing Orbs */
body::before, body::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    z-index: -1;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
}

body::before {
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, var(--color-gold-end), transparent 70%);
}

body::after {
    top: 35%;
    right: -10%;
    background: radial-gradient(circle, var(--color-green-start), transparent 70%);
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-green {
    background: linear-gradient(135deg, var(--color-green-start), var(--color-neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Styles */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(0, 255, 135, 0.25);
    box-shadow: 0 12px 40px 0 rgba(0, 255, 135, 0.05);
}

/* Buttons and CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 2.25rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-green-start), var(--color-neon-green));
    color: #030a05;
    box-shadow: 0 0 25px rgba(0, 242, 96, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 242, 96, 0.5);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    color: #1a1000;
    box-shadow: 0 0 25px rgba(255, 167, 81, 0.3);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

.btn-gold:hover::before {
    left: 150%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 167, 81, 0.5);
}

.btn-microtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-microtext svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-neon-green);
}

/* Animations declarations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 135, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0); }
}

/* Intersection Observer - Scroll Reveal Styles */
.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* DOBRA 1: HERO SECTION */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 226, 89, 0.08);
    border: 1px solid rgba(255, 226, 89, 0.2);
    color: var(--color-gold-start);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.15;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 2rem;
}

.ebook-mockup {
    width: 70%;
    height: auto;
    filter: drop-shadow(5px 15px 30px rgba(0, 0, 0, 0.7));
    border-radius: 6px;
    z-index: 2;
    transform: rotateY(-8deg);
}

.tablet-mockup {
    position: absolute;
    width: 58%;
    height: auto;
    bottom: 0px;
    right: 0px;
    filter: drop-shadow(-10px 15px 25px rgba(0, 0, 0, 0.8));
    z-index: 3;
    transform: rotateY(12deg) rotateX(4deg);
}

.ebook-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: radial-gradient(circle, rgba(0, 242, 96, 0.12) 0%, transparent 60%);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

/* DOBRA 2: PAIN POINT SECTION */
.pain-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, #0b1120 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.pain-card {
    border-left: 4px solid var(--color-gold-end);
}

.pain-truth {
    border-left: 4px solid var(--color-green-start);
    background: linear-gradient(135deg, rgba(0, 242, 96, 0.03) 0%, rgba(13, 20, 38, 0.45) 100%);
}

.pain-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pain-title-gold {
    color: var(--color-gold-start);
}

.pain-title-green {
    color: var(--color-neon-green);
}

.pain-card p, .pain-truth p {
    color: var(--color-text-secondary);
}

.pain-card strong, .pain-truth strong {
    color: #fff;
    font-weight: 600;
}

/* DOBRA 3: WHAT'S INSIDE THE GUIDE */
.features-section {
    background: #0b1120;
}

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

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:nth-child(4), .feature-card:nth-child(5) {
    grid-column: span 1.5; /* Centers the bottom two items */
    margin: 0 auto;
    width: calc(100% * 0.7);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.feature-card:nth-child(1) .feature-icon-wrapper svg { stroke: #60a5fa; }
.feature-card:nth-child(2) .feature-icon-wrapper svg { stroke: #a78bfa; }
.feature-card:nth-child(3) .feature-icon-wrapper svg { stroke: #f59e0b; }
.feature-card:nth-child(4) .feature-icon-wrapper svg { stroke: #f43f5e; }
.feature-card:nth-child(5) .feature-icon-wrapper svg { stroke: #10b981; }

.feature-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.95rem;
}

/* DOBRA 4: INTERACTIVE EXECUTION PLAN */
.matrix-section {
    background: linear-gradient(180deg, #0b1120 0%, var(--bg-main) 100%);
}

.matrix-container {
    max-width: 900px;
    margin: 0 auto;
}

.matrix-intro {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.matrix-interactive-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--color-text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.filter-btn.active {
    background: rgba(0, 255, 135, 0.1);
    border-color: var(--color-neon-green);
    color: var(--color-neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.15);
}

.strategy-display {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    animation: fadeIn 0.5s ease forwards;
}

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

.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.strategy-title-group h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.strategy-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold-start);
}

.strategy-badge {
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.2);
    color: var(--color-neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.strategy-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.strategy-metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
}

.metric-value.green {
    color: var(--color-neon-green);
}

/* DOBRA 5: OFFER & PRICE */
.offer-section {
    background: radial-gradient(circle at center, #0e172a 0%, var(--bg-main) 100%);
    position: relative;
}

.offer-container {
    max-width: 900px;
    margin: 0 auto;
}

.offer-card {
    position: relative;
    border: 1px solid rgba(0, 255, 135, 0.15);
    background: linear-gradient(180deg, rgba(13, 20, 38, 0.6) 0%, rgba(6, 9, 19, 0.95) 100%);
    text-align: center;
    padding: 4rem 3rem;
}

.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,255,135,0.3), transparent 40%, transparent 60%, rgba(255,226,89,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.offer-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.1), rgba(0, 242, 96, 0.02));
    border: 1px solid rgba(0, 255, 135, 0.2);
    color: var(--color-neon-green);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.offer-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.price-box {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-original {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.price-promo {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.price-promo span {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.price-sub {
    font-size: 0.95rem;
    color: var(--color-neon-green);
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.offer-bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto 3rem auto;
    text-align: left;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-card:hover {
    border-color: rgba(0, 255, 135, 0.2);
    background: rgba(13, 20, 38, 0.3);
    transform: translateY(-2px);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold-start);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.bonus-header-green {
    color: var(--color-neon-green) !important;
}

.bonus-header svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold-start);
    flex-shrink: 0;
}

.bonus-header-green svg {
    stroke: var(--color-neon-green) !important;
}

.bonus-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    flex-grow: 1;
}

.bonus-description strong {
    color: #ffffff;
}

.bonus-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.pillar-item {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.pillar-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-neon-green);
    flex-shrink: 0;
}

/* Timer styles for Urgency */
.timer-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.timer-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-neon-green);
}

/* DOBRA 6: GUARANTEE & FAQ */
.faq-section {
    background: var(--bg-main);
    padding-bottom: 8rem;
}

.guarantee-container {
    max-width: 800px;
    margin: 0 auto 5rem auto;
    display: grid;
    grid-template-columns: 0.4fr 1.6fr;
    gap: 2.5rem;
    align-items: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.guarantee-seal-wrapper {
    display: flex;
    justify-content: center;
}

.guarantee-seal {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 226, 89, 0.15) 0%, transparent 70%);
    border: 2px dashed rgba(255, 226, 89, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: var(--color-gold-start);
    font-family: var(--font-heading);
    animation: float 8s ease-in-out infinite;
}

.seal-num {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
}

.seal-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.guarantee-content p {
    font-size: 1rem;
}

/* Accordion FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    gap: 1.5rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-secondary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Active state for FAQ */
.faq-item.active {
    border-color: rgba(0, 255, 135, 0.2);
    background: rgba(13, 20, 38, 0.6);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    stroke: var(--color-neon-green);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* arbitrary height to slide down */
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    background: #03050a;
}

.footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Mobile Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 9, 19, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.5rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .btn {
    max-width: 600px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    animation: pulse-glow 2s infinite;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card:nth-child(4), .feature-card:nth-child(5) {
        grid-column: span 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-visual {
        order: -1; /* Ebook appears on top in mobile */
    }
    
    .ebook-container {
        max-width: 260px;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .offer-card {
        padding: 2.5rem 1.5rem;
    }
    
    .price-promo {
        font-size: 3.25rem;
    }
    
    .guarantee-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .guarantee-seal-wrapper {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .price-promo {
        font-size: 2.75rem;
    }
}
