/* ============================================
   COACHOPSPRO LANDING PAGE - STYLES
   ============================================ */

:root {
    --navy: #1f2a44;
    --teal: #2F5D62;
    --coral: #E76F51;
    --gold: #C2A14A;
    --light-bg: #F3F4F5;
    --dark-text: #2B2B2B;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(31, 42, 68, 0.1);
    --shadow-sm: 0 4px 15px rgba(31, 42, 68, 0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--navy); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p  { margin-bottom: 1rem; font-size: 1rem; line-height: 1.7; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, #d85a3d 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-xl { padding: 18px 48px; font-size: 1.2rem; }

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: sticky; top: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(31, 42, 68, 0.08);
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(31, 42, 68, 0.05);
}
.nav-wrapper {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0;
}
.logo { font-size: 1.5rem; font-weight: 700; }
.logo-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark-text); font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--coral); }

.nav-cta {
    background: linear-gradient(135deg, var(--coral) 0%, #d85a3d 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 111, 81, 0.2);
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    transition: var(--transition);
}
.nav-cta:hover {
    box-shadow: 0 6px 18px rgba(231, 111, 81, 0.3);
    transform: translateY(-1px);
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-links { gap: 0.5rem; font-size: 0.9rem; }
    .nav-links li:not(:last-child) { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #1f3a4d 40%, var(--teal) 100%);
    color: var(--white);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(47,93,98,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -5%; left: -5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(194,161,74,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 2;
}
.hero-headline { font-size: clamp(2.2rem, 6vw, 3.5rem); line-height: 1.2; margin-bottom: 1.5rem; color: var(--white); }
.highlight {
    background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subheadline { font-size: 1.2rem; color: rgba(255,255,255,0.95); margin-bottom: 2rem; line-height: 1.8; }
.hero-cta-group   { margin-bottom: 2rem; }
.cta-subtext      { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-top: 0.75rem; }

.hero-trust-badges {
    display: flex; gap: 3rem;
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.badge        { display: flex; flex-direction: column; }
.badge-number { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.badge-label  { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

.hero-visual {
    position: relative;
    animation: none;
    display: flex; align-items: center; justify-content: center;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-15px); }
}

.ebook-mockup-wrapper { position: relative; display: inline-block; padding: 20px 40px 45px 20px; }

/* ---- CSS Ebook Cover ---- */
.ebook-cover {
    max-width: 300px;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    display: block;
    position: relative;
    z-index: 2;
    transform: perspective(900px) rotateY(-10deg) rotateX(2deg);
    box-shadow:
        -22px 32px 75px rgba(0,0,0,0.62),
        -8px 8px 25px rgba(0,0,0,0.35),
        3px -3px 15px rgba(255,255,255,0.04);
    overflow: hidden;
    background: #111c38;
    font-family: inherit;
    user-select: none;
}
.ebook-inner { display: flex; flex-direction: column; height: 100%; }

.ebook-top-bar {
    background: #111c38;
    padding: 12px 14px 0;
    border-bottom: 3px solid #C2A14A;
    flex-shrink: 0;
}
.ebook-logo-row { display: flex; align-items: baseline; gap: 3px; margin-bottom: 5px; }
.ebook-logo-coach {
    font-size: 1.3rem; font-weight: 900; font-style: italic;
    color: #C2A14A; letter-spacing: -0.5px; line-height: 1;
}
.ebook-logo-ops {
    font-size: 1.3rem; font-weight: 900;
    color: #E76F51; letter-spacing: -0.5px; line-height: 1;
}
.ebook-cursor { font-size: 1rem; color: #fff; opacity: 0.85; margin-left: 2px; }
.ebook-domain {
    font-size: 0.6rem; color: rgba(255,255,255,0.9);
    text-align: center; letter-spacing: 2px; padding-bottom: 8px;
}
.ebook-gold-bar {
    height: 4px;
    background: linear-gradient(90deg, #C2A14A 0%, #e8c46a 50%, #C2A14A 100%);
}

.ebook-body {
    flex: 1;
    background: #1a2c55;
    padding: 14px 14px 8px;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.ebook-title {
    font-size: 1rem; font-weight: 700;
    color: #C2A14A; line-height: 1.35;
    max-width: 58%;
    position: relative; z-index: 2;
    margin: 0 0 auto;
}
.ebook-person {
    position: absolute; right: -8px; bottom: 0;
    height: 88%; width: auto;
    object-fit: contain; object-position: bottom;
    z-index: 1; pointer-events: none;
}
.ebook-tagline {
    font-size: 0.62rem; color: rgba(255,255,255,0.88);
    letter-spacing: 0.5px;
    position: relative; z-index: 2;
    margin: 0; padding-top: 6px;
}

.ebook-footer { background: #111c38; padding: 8px 14px; flex-shrink: 0; }
.ebook-label {
    background: #E76F51;
    color: #fff; font-size: 0.85rem; font-weight: 900;
    padding: 4px 16px; border-radius: 3px;
    display: inline-block; letter-spacing: 1px;
}

.ebook-glow-gold {
    position: absolute; bottom: 8px; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 55px;
    background: radial-gradient(ellipse at center, rgba(194,161,74,0.7) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1; pointer-events: none;
}
.ebook-glow-teal {
    position: absolute; top: 30%; left: 2px;
    width: 55px; height: 55%;
    background: radial-gradient(ellipse at center, rgba(47,93,98,0.6) 0%, transparent 70%);
    filter: blur(22px);
    z-index: 0; pointer-events: none;
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 60px 20px; }
    .ebook-cover { max-width: 260px; transform: perspective(800px) rotateY(-7deg) rotateX(2deg); }
}
@media (max-width: 768px) {
    .hero-trust-badges { flex-direction: column; gap: 1.5rem; border: none; padding-top: 1.5rem; }
    .ebook-cover { max-width: 220px; }
    .ebook-logo-coach, .ebook-logo-ops { font-size: 1.05rem; }
    .ebook-title { font-size: 0.85rem; }
    .ebook-mockup-wrapper { padding: 15px 30px 32px 15px; }
}
@media (max-width: 480px) {
    .ebook-cover { max-width: 180px; transform: perspective(600px) rotateY(-5deg) rotateX(1deg); }
    .ebook-logo-coach, .ebook-logo-ops { font-size: 0.9rem; }
    .ebook-title { font-size: 0.75rem; }
    .ebook-mockup-wrapper { padding: 10px 20px 25px 10px; }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; color: var(--navy); }
.section-header p  { font-size: 1.1rem; color: #666; max-width: 500px; margin: 0 auto; }

.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.problem-card {
    background: var(--white); padding: 32px;
    border-radius: 12px; border: 2px solid var(--gold);
    transition: var(--transition); position: relative; overflow: hidden;
}
.problem-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--coral) 100%);
}
.problem-card::after {
    content: ''; position: absolute; bottom: -15px; right: -15px;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(194,161,74,0.1) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
}
.problem-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(31,42,68,0.15); border-color: var(--coral); }
.problem-icon    { font-size: 2.5rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.problem-card h3 { color: var(--navy); margin-bottom: 1rem; position: relative; z-index: 1; }
.problem-card p  { color: #666; font-size: 0.95rem; position: relative; z-index: 1; }

/* ============================================
   STUCK SECTION
   ============================================ */

.stuck-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8F0F5 100%);
}
.stuck-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stuck-text h2  { margin-bottom: 1.5rem; }
.stuck-intro    { font-size: 1.1rem; color: var(--coral); font-weight: 600; margin-bottom: 2rem; }

.stuck-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.stuck-list strong { display: block; color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.stuck-list span   { color: #666; font-size: 0.95rem; }

.stuck-callout {
    background: var(--white); border-left: 4px solid var(--coral);
    padding: 24px; border-radius: 8px; margin-top: 2rem; font-size: 0.95rem;
}
.stuck-callout strong { color: var(--navy); font-size: 1rem; }

.comparison-chart   { display: flex; gap: 30px; align-items: center; }
.comparison-item    { flex: 1; }
.comparison-item h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--navy); }
.comparison-list    { background: var(--white); border-radius: 8px; padding: 24px; box-shadow: var(--shadow-sm); }
.comparison-row     { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; }
.comparison-row:last-child { margin-bottom: 0; }
.comparison-row .icon { font-size: 1.2rem; font-weight: bold; min-width: 20px; }
.comparison-list.negative .icon { color: #d85a3d; }
.comparison-list.positive .icon { color: var(--teal); }
.comparison-arrow { font-size: 2rem; color: var(--gold); font-weight: bold; }

@media (max-width: 1024px) {
    .stuck-content    { grid-template-columns: 1fr; gap: 40px; }
    .comparison-chart { flex-direction: column; }
    .comparison-arrow { transform: rotate(90deg); }
}

/* ============================================
   METHOD SECTION
   ============================================ */

.method-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}
.method-steps {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 20px; align-items: start; margin-bottom: 3rem;
}
.method-step {
    background: var(--white); padding: 28px; border-radius: 12px;
    text-align: center; border: 2px solid var(--gold);
    transition: var(--transition); position: relative; overflow: hidden;
}
.method-step::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--coral) 100%);
}
.method-step::after {
    content: ''; position: absolute; bottom: -15px; right: -15px;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(194,161,74,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.method-step:hover { border-color: var(--coral); box-shadow: 0 12px 30px rgba(231,111,81,0.2); transform: translateY(-6px); }

.step-number {
    display: inline-flex; width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    color: white; border-radius: 50%;
    font-size: 1.5rem; font-weight: 700;
    align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(47,93,98,0.25);
    position: relative; z-index: 1;
}
.method-step h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.1rem; position: relative; z-index: 1; }
.method-step p  { font-size: 0.9rem; color: #666; margin-bottom: 0; position: relative; z-index: 1; }

.step-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold); font-weight: bold; grid-column: span 1;
}
.method-highlight {
    text-align: center;
    background: linear-gradient(135deg, var(--coral) 0%, #d85a3d 100%);
    color: white; padding: 36px 32px; border-radius: 12px;
    font-size: 1.05rem; line-height: 1.8;
    border: 2px solid rgba(194,161,74,0.3); position: relative; overflow: hidden;
}

@media (max-width: 1024px) {
    .method-steps { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .step-arrow   { display: none; }
}
@media (max-width: 768px) {
    .method-steps { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

/* ============================================
   INSIDE SECTION
   ============================================ */

.inside-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8F0F5 100%);
}
.inside-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.inside-card {
    background: var(--white); padding: 32px; border-radius: 12px;
    text-align: center; box-shadow: 0 4px 15px rgba(31,42,68,0.08);
    border: 2px solid var(--gold); transition: var(--transition);
    display: flex; flex-direction: column; align-items: center;
    position: relative; overflow: hidden;
}
.inside-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
}
.inside-card::after {
    content: ''; position: absolute; bottom: -15px; right: -15px;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(47,93,98,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.inside-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(31,42,68,0.15); border-color: var(--coral); }
.card-icon      { font-size: 2.5rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.inside-card h3 { color: var(--navy); margin-bottom: 1rem; font-size: 1.15rem; position: relative; z-index: 1; }
.inside-card p  { color: #666; font-size: 0.9rem; margin-bottom: 0; position: relative; z-index: 1; }

/* ============================================
   BONUS SECTION
   ============================================ */

.bonus-section { padding: 80px 20px; background: var(--white); }

.bonus-wrapper {
    background: linear-gradient(135deg, var(--navy) 0%, #1f3a4d 40%, var(--teal) 100%);
    color: var(--white); padding: 60px 40px; border-radius: 16px;
    text-align: center; position: relative; overflow: hidden;
    border: 2px solid rgba(194,161,74,0.2);
}
.bonus-wrapper::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.bonus-wrapper::after {
    content: ''; position: absolute; bottom: -50%; left: -5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(194,161,74,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.bonus-badge {
    display: inline-block; background: rgba(194,161,74,0.25);
    color: var(--white); padding: 8px 16px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem;
    backdrop-filter: blur(10px); border: 1px solid rgba(194,161,74,0.4);
}
.bonus-wrapper h2 { color: var(--white); margin-bottom: 0.5rem; font-size: 2rem; font-weight: 800; }
.bonus-intro { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; font-weight: 500; }

.bonus-list {
    list-style: none; max-width: 600px; margin: 0 auto 2rem;
    text-align: left; position: relative; z-index: 2;
}
.bonus-list li {
    color: rgba(255,255,255,0.9); margin-bottom: 1rem;
    padding-left: 32px; position: relative; font-size: 0.95rem; line-height: 1.6;
}
.bonus-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--gold); font-weight: bold; font-size: 1.3rem;
}
.bonus-highlight {
    background: rgba(194,161,74,0.2); padding: 24px; border-radius: 10px;
    margin: 2rem auto 0; font-size: 0.95rem; backdrop-filter: blur(10px);
    border: 1px solid rgba(194,161,74,0.3); position: relative; z-index: 2;
    max-width: 400px;
}
.bonus-highlight strong { font-size: 1rem; color: rgba(255,255,255,0.95); }
.highlight-text { color: var(--gold); font-weight: 700; font-size: 1.1rem; display: block; margin-top: 0.5rem; }

/* ============================================
   VALUE STACK SECTION
   ============================================ */

.value-stack-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}
.value-items { max-width: 600px; margin: 0 auto 3rem; }

.value-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 24px; background: var(--white);
    border-radius: 10px; margin-bottom: 16px;
    border-left: 4px solid var(--coral);
    box-shadow: 0 4px 12px rgba(31,42,68,0.08);
    transition: var(--transition); position: relative; overflow: hidden;
}
.value-item::after {
    content: ''; position: absolute; top: -20px; right: -20px;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(194,161,74,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.value-item:hover { box-shadow: 0 8px 20px rgba(31,42,68,0.12); transform: translateY(-2px); }
.value-left    { flex: 1; }
.value-left h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; font-weight: 700; }
.value-left p  { font-size: 0.85rem; color: #888; margin-bottom: 0; }
.value-right   { text-align: right; }
.value-price   { font-size: 1.4rem; font-weight: 700; color: var(--coral); }

.value-total {
    display: flex; justify-content: space-between;
    padding: 22px 24px; background: var(--white); border-radius: 10px;
    font-size: 1.1rem; font-weight: 700; color: var(--navy);
    border: 3px solid var(--gold); margin-bottom: 2rem;
    position: relative; overflow: hidden;
}
.value-total::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--coral) 50%, var(--teal) 100%);
}
.total-price { color: var(--gold); font-size: 1.3rem; }

.value-offer-box {
    background: linear-gradient(135deg, var(--coral) 0%, #d85a3d 100%);
    color: var(--white); padding: 48px 40px; border-radius: 12px; text-align: center;
    box-shadow: 0 15px 40px rgba(231,111,81,0.35);
    position: relative; overflow: hidden;
    border: 2px solid rgba(194,161,74,0.3);
}
.value-offer-box::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.value-offer-box p { font-size: 1rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.offer-price   { font-size: 3.5rem; margin: 0.5rem 0; color: var(--white); font-weight: 800; position: relative; z-index: 1; }
.offer-savings { font-size: 0.95rem; color: rgba(255,255,255,0.95); margin: 0; position: relative; z-index: 1; font-weight: 600; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.testimonial-card {
    background: var(--white); padding: 32px; border-radius: 12px;
    border: 2px solid var(--gold); display: flex; flex-direction: column;
    transition: var(--transition); position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--coral) 100%);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(31,42,68,0.15); border-color: var(--coral); }

.testimonial-stars  { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.testimonial-text   { font-size: 0.95rem; color: #666; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { display: flex; flex-direction: column; border-top: 1px solid var(--gold); padding-top: 1rem; position: relative; z-index: 1; }
.author-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.author-info { font-size: 0.8rem; color: #999; }

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8F0F5 100%);
}
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white); border-radius: 10px; margin-bottom: 15px;
    overflow: hidden; box-shadow: 0 4px 12px rgba(31,42,68,0.08);
    border: 2px solid var(--gold); transition: var(--transition);
}
.faq-item:hover { box-shadow: 0 8px 20px rgba(31,42,68,0.12); border-color: var(--coral); }

.faq-question {
    width: 100%; padding: 20px; background: var(--white); border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1rem; font-weight: 600; color: var(--navy);
    transition: var(--transition); text-align: left; font-family: inherit;
}
.faq-question:hover { background: rgba(47,93,98,0.05); color: var(--teal); }
.faq-icon { color: var(--coral); font-size: 1.5rem; font-weight: bold; transition: var(--transition); flex-shrink: 0; margin-left: 1rem; }

.faq-item.active .faq-question { background: rgba(47,93,98,0.08); border-bottom: 2px solid var(--teal); color: var(--teal); }
.faq-item.active .faq-icon     { transform: rotate(45deg); color: var(--gold); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 20px 20px; color: #666; font-size: 0.95rem; margin: 0; line-height: 1.7; }

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #1f3a4d 40%, var(--teal) 100%);
    color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.final-cta-section::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.final-cta-section::after {
    content: ''; position: absolute; bottom: -50%; left: -5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(194,161,74,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.final-cta-content    { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.final-cta-content h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; font-weight: 800; }
.final-cta-content p  { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2.5rem; }

.cta-guarantee {
    background: rgba(255,255,255,0.12); padding: 24px; border-radius: 10px;
    margin: 2.5rem 0; font-size: 0.95rem; line-height: 1.9;
    backdrop-filter: blur(10px); color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.15); border-left: 3px solid var(--gold);
}
.cta-guarantee strong { color: var(--gold); font-weight: 700; }
.cta-founders         { margin-top: 3rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.cta-founders strong  { color: var(--gold); font-size: 1rem; display: block; margin-bottom: 0.3rem; }

/* ============================================
   FOOTER
   ============================================ */

.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 60px 20px 30px; }
.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; margin-bottom: 40px;
}
.footer-section h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer-section p  { font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.75rem; }
.footer-section a  { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-section a:hover { color: var(--coral); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px; text-align: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.footer-bottom p { margin-bottom: 0.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .hero-trust-badges  { flex-wrap: wrap; }
    .problem-grid       { grid-template-columns: 1fr; }
    .inside-grid        { grid-template-columns: 1fr; }
    .testimonials-grid  { grid-template-columns: 1fr; }
    .method-steps       { grid-template-columns: 1fr; }
    .faq-list           { max-width: 100%; }
    .value-items        { max-width: 100%; }
    .stuck-content      { grid-template-columns: 1fr; }
    .comparison-chart   { flex-direction: column; }
    .comparison-arrow   { transform: rotate(90deg); margin: 10px 0; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    .problem-card, .inside-card, .method-step, .testimonial-card { padding: 20px; }
    .btn-lg { padding: 12px 24px; font-size: 0.95rem; }
    .hero-cta-group    { margin-bottom: 1.5rem; }
    .hero-trust-badges { gap: 1rem; }
    .badge-number      { font-size: 1.2rem; }
    .offer-price       { font-size: 2.2rem; }
    .value-item        { flex-direction: column; align-items: flex-start; text-align: left; }
    .value-right       { text-align: left; margin-top: 10px; width: 100%; }
    .final-cta-content h2 { font-size: 1.5rem; }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

button:focus, a:focus { outline: 2px solid var(--coral); outline-offset: 2px; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

@media print {
    .navbar, .final-cta-section { display: none; }
}

/* ============================================
   LEAD CAPTURE POPUP
   ============================================ */

.lead-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(31,42,68,0.8);
    display: none; align-items: center; justify-content: center;
    z-index: 2000; backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease; padding: 20px;
}
.lead-popup-overlay.active { display: flex; }

.lead-popup-container {
    background: linear-gradient(135deg, var(--navy) 0%, #2a3d5f 50%, var(--teal) 100%);
    border-radius: 16px; padding: 36px;
    max-width: 420px; width: 100%;
    box-shadow: 0 25px 60px rgba(31,42,68,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    animation: slideUp 0.4s ease;
    border: 2px solid var(--gold); overflow: visible;
}
.lead-popup-container::before {
    content: ''; position: absolute; top: -8px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--coral) 100%);
    border-radius: 2px;
}
.lead-popup-container::after {
    content: ''; position: absolute; bottom: -25px; right: -25px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(194,161,74,0.2) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.popup-close {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 28px; color: rgba(255,255,255,0.7);
    cursor: pointer; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); border-radius: 8px; padding: 0; font-family: inherit;
}
.popup-close:hover { background: rgba(194,161,74,0.3); color: var(--gold); border-color: var(--gold); }

.popup-content  { position: relative; z-index: 1; text-align: center; }
.popup-header   { display: flex; justify-content: center; margin-bottom: 1.25rem; padding-bottom: 0.75rem; }
.popup-brand-label {
    color: var(--gold); font-weight: 700;
    font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    background: rgba(194,161,74,0.2);
    padding: 6px 12px; border-radius: 20px;
    border: 1px solid rgba(194,161,74,0.4);
}
.popup-headline    { font-size: 1.65rem; color: var(--white); margin-bottom: 0.5rem; margin-top: 0; font-weight: 700; line-height: 1.3; }
.popup-subheadline { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; line-height: 1.6; }

.lead-form  { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group label { display: none; }
.form-group input {
    padding: 12px 14px; border: 2px solid rgba(194,161,74,0.5);
    border-radius: 8px; font-size: 1rem; font-family: inherit;
    transition: var(--transition);
    background: rgba(255,255,255,0.96); color: var(--navy); font-weight: 500;
}
.form-group input:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(194,161,74,0.15);
    background: rgba(255,255,255,0.99);
}
.form-group input.error { border-color: #f28482; box-shadow: 0 0 0 3px rgba(242,132,130,0.1); }
.form-group input::placeholder { color: #a0a0a0; font-weight: 400; }
.form-error { color: #ffc5c1; font-size: 0.75rem; margin-top: 0.3rem; display: block; min-height: 1rem; font-weight: 500; }

.btn-popup-primary {
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--coral) 0%, #d85a3d 100%);
    color: var(--white); border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(231,111,81,0.4);
    border-left: 4px solid var(--gold); margin-top: 0.5rem;
}
.btn-popup-primary:hover  { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(231,111,81,0.5); }
.btn-popup-primary:active { transform: translateY(0); }

.success-message { text-align: center; padding: 20px 0; }
.success-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
    color: var(--white); border-radius: 50%; font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    animation: scaleIn 0.5s ease;
    box-shadow: 0 8px 20px rgba(47,93,98,0.3);
}
@keyframes scaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.success-message h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.25rem; font-weight: 700; }
.success-message p  { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.95rem; }

@media (max-width: 480px) {
    .lead-popup-container { padding: 28px 20px; margin: 20px; max-width: 90vw; border-radius: 12px; }
    .popup-headline       { font-size: 1.4rem; }
    .popup-subheadline    { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .lead-popup-overlay   { padding: 15px; }
    .form-group input     { font-size: 16px; }
    .btn-popup-primary    { padding: 12px 24px; font-size: 0.95rem; }
}

.lead-popup-overlay.popup-scrolled { align-items: flex-end; padding-bottom: 50px; }
@media (max-width: 768px) {
    .lead-popup-overlay.popup-scrolled { align-items: center; padding-bottom: 20px; }
}
/* ============================================
   EBOOK COVER SOFT MOVEMENT - STRONG FIX
   Paste this at the very end of styles.css
   ============================================ */

.ebook-cover {
    animation: none !important;
    transform-origin: center center !important;
    will-change: auto !important;
}

@keyframes ebookCoverMove {
    0%, 100% {
        transform: perspective(900px) rotateY(-10deg) rotateX(2deg) translateY(0px);
    }

    50% {
        transform: perspective(900px) rotateY(-10deg) rotateX(2deg) translateY(-5px);
    }
}

/* If Windows / Firefox reduced motion is enabled, keep this light animation */
@media (prefers-reduced-motion: reduce) {
    .ebook-cover {
        animation: ebookCoverMove none ease-in-out infinite !important;
    }
}

/* ============================================
   POPUP STYLES
   ============================================ */

.lead-popup-overlay {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(31, 42, 68, 0.6); backdrop-filter: blur(4px);
    z-index: 2000; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.lead-popup-overlay.active {
    display: flex; opacity: 1;
}

.lead-popup-container {
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF4F8 100%); border-radius: 16px; box-shadow: 0 20px 60px rgba(31, 42, 68, 0.3);
    max-width: 450px; width: 90%; position: relative; overflow: hidden;
    animation: popupSlideUp 0.4s ease-out;
}
@keyframes popupSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white); padding: 24px; display: flex; justify-content: flex-end;
    align-items: center; gap: 16px;
}
.popup-timer {
    display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
    background: rgba(231, 111, 81, 0.2); padding: 6px 12px; border-radius: 20px;
    border: 1px solid rgba(231, 111, 81, 0.4); margin-right: auto;
}
.timer-icon { font-size: 1rem; }
.timer-text { color: rgba(255, 255, 255, 0.95); font-weight: 600; }
#countdown { color: var(--coral); font-weight: 800; font-size: 0.95rem; }

.popup-close {
    background: none; border: none; font-size: 1.8rem; color: var(--white);
    cursor: pointer; padding: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); flex-shrink: 0;
}
.popup-close:hover { color: var(--gold); transform: rotate(90deg); }

.popup-content { padding: 40px 32px; }
.popup-headline { color: var(--navy); margin-bottom: 1rem; font-size: 1.5rem; }
.popup-subheadline { color: #666; font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.6; }

.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group input {
    padding: 12px 16px; border: 2px solid #ddd; border-radius: 8px;
    font-size: 0.95rem; font-family: inherit; transition: var(--transition);
}
.form-group input:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(47, 93, 98, 0.1);
}
.form-group input.error {
    border-color: #d85a3d; background: rgba(216, 90, 61, 0.05);
}
.form-error { color: #d85a3d; font-size: 0.8rem; margin-top: 4px; min-height: 18px; }

.btn-popup-primary {
    background: linear-gradient(135deg, var(--coral) 0%, #d85a3d 100%);
    color: var(--white); padding: 14px; border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit;
    transition: var(--transition); box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}
.btn-popup-primary:hover {
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
}
.btn-popup-primary:active { transform: translateY(0); }

.success-message {
    text-align: center; padding: 40px 20px;
}
.success-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; background: rgba(47, 93, 98, 0.15);
    border-radius: 50%; font-size: 2rem; color: var(--teal); margin-bottom: 1rem;
}
.success-message h3 { color: var(--navy); margin-bottom: 0.5rem; }
.success-message p { color: #666; font-size: 0.95rem; }