/* ============================================
   RELIABLE FIGURES - COMPLETE STYLESHEET
   ============================================ */

:root {
    /* Logo Colors */
    --logo-purple: #2E1A47;
    --logo-purple-light: #4A306D;
    --logo-purple-dark: #1A0F2E;
    --logo-gold: #D4AF37;
    --logo-gold-light: #E8C547;
    --logo-gold-dark: #B8941F;
    --logo-green: #2D6A4F;
    --logo-green-light: #40916C;
    --logo-cream: #F5E6D3;
    --logo-cream-light: #FDF8F0;
    --logo-cream-dark: #E8D5C4;

    /* Functional Colors */
    --text-primary: #1A0F2E;
    --text-secondary: #4A306D;
    --text-muted: #6B5B7A;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #2E1A47 0%, #1A0F2E 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-hero: linear-gradient(135deg, #2E1A47 0%, #1A0F2E 50%, #4A306D 100%);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(46, 26, 71, 0.08);
    --shadow-medium: 0 8px 30px rgba(46, 26, 71, 0.12);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
}

/* ============================================
   BASE STYLES
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-primary); 
    line-height: 1.6; 
    overflow-x: hidden; 
    background: var(--logo-cream-light); 
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Inter', sans-serif; 
    font-weight: 700; 
    line-height: 1.2; 
    color: var(--logo-purple); 
}

.script-font { font-family: 'Great Vibes', cursive; font-weight: 400; }
.accent-font { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
nav { 
    background: var(--logo-purple); 
    padding: 12px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 20px rgba(26, 15, 46, 0.3); 
    transition: all 0.3s ease; 
}
nav.scrolled { 
    padding: 8px 0; 
    background: rgba(46, 26, 71, 0.98); 
    backdrop-filter: blur(10px); 
}
.nav-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    text-decoration: none; 
}
.logo-img-container { 
    background: var(--logo-cream); 
    border-radius: 12px; 
    padding: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
    border: 2px solid var(--logo-gold); 
    transition: all 0.3s ease; 
}
.logo:hover .logo-img-container { 
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3); 
    border-color: var(--logo-gold-light); 
}
.logo img { 
    height: 80px; 
    width: auto; 
    display: block; 
    border-radius: 8px; 
}
.logo-text-group { 
    display: flex; 
    flex-direction: column; 
}
.logo-name { 
    font-family: 'Great Vibes', cursive; 
    font-size: 2.2rem; 
    color: var(--logo-gold); 
    letter-spacing: 1px; 
    line-height: 1.1; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.2); 
}
.logo-tagline { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: var(--logo-cream); 
    font-weight: 600; 
    margin-top: 4px; 
}

.nav-links { 
    display: flex; 
    gap: 32px; 
    align-items: center; 
}
.nav-links a { 
    color: rgba(255,255,255,0.9); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 500; 
    transition: color 0.3s; 
    letter-spacing: 0.3px; 
    position: relative; 
}
.nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--logo-gold); 
    transition: width 0.3s; 
}
.nav-links a:hover { color: var(--logo-gold); }
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--logo-gold); 
    font-size: 1.5rem; 
    cursor: pointer; 
}

/* ============================================
   BUTTONS
   ============================================ */
.btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 14px 32px; 
    background: var(--logo-gold); 
    color: var(--logo-purple); 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 6px; 
    border: none; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-size: 0.95rem; 
    letter-spacing: 0.3px; 
    position: relative; 
    overflow: hidden; 
}
.btn:hover { 
    background: var(--logo-gold-light); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-gold); 
}
.btn-outline { 
    background: transparent; 
    border: 2px solid var(--logo-gold); 
    color: var(--logo-gold); 
}
.btn-outline:hover { 
    background: var(--logo-gold); 
    color: var(--logo-purple); 
}
.btn-large { 
    padding: 18px 40px; 
    font-size: 1.05rem; 
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero { 
    background: var(--gradient-hero); 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    padding: 180px 0 100px; 
    position: relative; 
    overflow: hidden; 
}
.hero::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    right: -20%; 
    width: 800px; 
    height: 800px; 
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%); 
    border-radius: 50%; 
}
.hero::after { 
    content: ''; 
    position: absolute; 
    bottom: -30%; 
    left: -10%; 
    width: 600px; 
    height: 600px; 
    background: radial-gradient(circle, rgba(45, 106, 79, 0.15) 0%, transparent 70%); 
    border-radius: 50%; 
}
.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
}
.hero-content { max-width: 600px; }
.hero-label { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--logo-gold); 
    font-size: 0.85rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-bottom: 24px; 
    padding: 8px 16px; 
    background: rgba(212, 175, 55, 0.1); 
    border-radius: 50px; 
    border: 1px solid rgba(212, 175, 55, 0.2); 
}
.hero h1 { 
    font-size: clamp(2.8rem, 5vw, 4.2rem); 
    color: var(--white); 
    margin-bottom: 24px; 
    font-weight: 800; 
    letter-spacing: -1px; 
    line-height: 1.1; 
}
.hero h1 .accent-text { 
    color: var(--logo-gold); 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-weight: 400; 
}
.hero h1 .green-text { 
    color: var(--logo-green); 
    font-family: 'Great Vibes', cursive; 
    font-weight: 400; 
}
.hero-sub { 
    font-size: 1.25rem; 
    color: rgba(255,255,255,0.9); 
    margin-bottom: 20px; 
    font-weight: 400; 
    line-height: 1.6; 
}
.hero-supporting { 
    font-size: 1.05rem; 
    color: rgba(255,255,255,0.65); 
    margin-bottom: 40px; 
    max-width: 480px; 
    line-height: 1.7; 
}
.hero-buttons { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
}

/* Hero Logo Display */
.hero-visual { 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.hero-logo-wrapper { 
    position: relative; 
    width: 100%; 
    max-width: 480px; 
}
.hero-logo-card { 
    background: var(--logo-cream); 
    border-radius: 20px; 
    padding: 30px; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.3); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
    border: 3px solid var(--logo-gold); 
}
.hero-logo-card img { 
    width: 100%; 
    max-width: 400px; 
    height: auto; 
    display: block; 
    border-radius: 12px; 
}
.hero-logo-gold-accent { 
    position: absolute; 
    bottom: -15px; 
    left: -15px; 
    width: 120px; 
    height: 120px; 
    background: var(--logo-gold); 
    border-radius: 16px; 
    z-index: 1; 
    opacity: 0.4; 
}
.hero-logo-green-accent { 
    position: absolute; 
    top: -15px; 
    right: -15px; 
    width: 80px; 
    height: 80px; 
    border: 3px solid var(--logo-green); 
    border-radius: 16px; 
    z-index: 3; 
    opacity: 0.5; 
}
.hero-stats { 
    position: absolute; 
    bottom: 20px; 
    right: -20px; 
    background: var(--white); 
    padding: 18px 22px; 
    border-radius: 12px; 
    box-shadow: var(--shadow-medium); 
    z-index: 4; 
    min-width: 160px; 
    border-left: 4px solid var(--logo-gold); 
}
.hero-stats-number { 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--logo-purple); 
    line-height: 1; 
}
.hero-stats-label { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    margin-top: 4px; 
    font-weight: 500; 
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }
.section-header { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto 60px; 
}
.section-label { 
    display: inline-block; 
    color: var(--logo-gold); 
    font-size: 0.85rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-bottom: 16px; 
    padding: 6px 14px; 
    background: rgba(212, 175, 55, 0.1); 
    border-radius: 50px; 
    border: 1px solid rgba(212, 175, 55, 0.2); 
}
.section-header h2 { 
    font-size: clamp(2rem, 3.5vw, 2.8rem); 
    color: var(--logo-purple); 
    margin-bottom: 20px; 
    font-weight: 800; 
}
.section-header p { 
    color: var(--text-muted); 
    font-size: 1.15rem; 
    line-height: 1.7; 
}
.gold-line { 
    width: 60px; 
    height: 3px; 
    background: var(--logo-gold); 
    margin: 0 auto 24px; 
    border-radius: 2px; 
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section { 
    background: var(--logo-cream); 
    position: relative; 
    overflow: hidden; 
}
.problem-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}
.problem-image { position: relative; }
.problem-image img { 
    width: 100%; 
    height: 450px; 
    object-fit: cover; 
    border-radius: 16px; 
    box-shadow: var(--shadow-medium); 
}
.problem-content h2 { 
    font-size: clamp(2rem, 3vw, 2.6rem); 
    color: var(--logo-purple); 
    margin-bottom: 24px; 
    font-weight: 800; 
}
.problem-content h2 .accent-text { 
    color: var(--logo-green); 
    font-family: 'Great Vibes', cursive; 
    font-weight: 400; 
}
.problem-content p { 
    font-size: 1.15rem; 
    color: var(--text-primary); 
    line-height: 1.9; 
    margin-bottom: 24px; 
}
.problem-features { 
    list-style: none; 
    margin-top: 32px; 
}
.problem-features li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 12px 0; 
    font-size: 1.05rem; 
    color: var(--text-primary); 
    border-bottom: 1px solid rgba(46, 26, 71, 0.1); 
}
.problem-features li i { 
    color: var(--logo-green); 
    font-size: 1.1rem; 
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 30px; 
}
.feature-card { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 16px; 
    text-align: center; 
    box-shadow: var(--shadow-soft); 
    transition: all 0.4s ease; 
    border: 2px solid transparent; 
    position: relative; 
    overflow: hidden; 
}
.feature-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-medium); 
    border-color: var(--logo-gold); 
}
.feature-icon { 
    width: 80px; 
    height: 80px; 
    margin: 0 auto 24px; 
    background: linear-gradient(135deg, var(--logo-purple), var(--logo-purple-light)); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--logo-gold); 
    font-size: 1.8rem; 
    box-shadow: 0 8px 20px rgba(46, 26, 71, 0.2); 
}
.feature-card h3 { 
    font-size: 1.25rem; 
    color: var(--logo-purple); 
    margin-bottom: 12px; 
    font-weight: 700; 
}
.feature-card p { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    line-height: 1.7; 
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { 
    background: var(--logo-purple); 
    color: var(--white); 
    position: relative; 
    overflow: hidden; 
}
.services-section .section-header h2 { color: var(--white); }
.services-section .section-header p { color: rgba(255,255,255,0.7); }
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 24px; 
    position: relative; 
    z-index: 2; 
}
.service-card { 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    padding: 40px; 
    border-radius: 16px; 
    transition: all 0.4s ease; 
    backdrop-filter: blur(10px); 
    position: relative; 
    overflow: hidden; 
}
.service-card:hover { 
    background: rgba(255,255,255,0.06); 
    border-color: var(--logo-gold); 
    transform: translateY(-6px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
}
.service-icon { 
    font-size: 2.2rem; 
    color: var(--logo-gold); 
    margin-bottom: 20px; 
    display: block; 
}
.service-card h3 { 
    color: var(--logo-gold); 
    font-size: 1.3rem; 
    margin-bottom: 14px; 
    font-weight: 700; 
}
.service-card p { 
    color: rgba(255,255,255,0.75); 
    line-height: 1.8; 
    font-size: 0.95rem; 
}
.service-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    color: var(--logo-gold); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem; 
    margin-top: 20px; 
    transition: gap 0.3s; 
}
.service-link:hover { gap: 10px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); 
    gap: 32px; 
}
.testimonial-card { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 16px; 
    box-shadow: var(--shadow-soft); 
    border-left: 4px solid var(--logo-gold); 
    position: relative; 
    transition: all 0.4s ease; 
}
.testimonial-card:hover { 
    transform: translateY(-6px); 
    box-shadow: var(--shadow-medium); 
}
.testimonial-quote { 
    font-size: 3rem; 
    color: var(--logo-gold); 
    opacity: 0.3; 
    line-height: 1; 
    margin-bottom: 8px; 
    font-family: 'Playfair Display', serif; 
}
.testimonial-card p { 
    font-size: 1.1rem; 
    color: var(--text-primary); 
    line-height: 1.8; 
    font-style: italic; 
    margin-bottom: 28px; 
    font-family: 'Playfair Display', serif; 
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
}
.author-avatar { 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, var(--logo-purple), var(--logo-purple-light)); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--logo-gold); 
    font-weight: 700; 
    font-size: 1.2rem; 
    flex-shrink: 0; 
}
.author-info h4 { 
    color: var(--logo-purple); 
    font-size: 1.05rem; 
    margin-bottom: 4px; 
    font-weight: 700; 
}
.author-info span { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
}
.testimonial-rating { 
    display: flex; 
    gap: 4px; 
    margin-bottom: 16px; 
}
.testimonial-rating i { 
    color: var(--logo-gold); 
    font-size: 0.9rem; 
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-section { 
    background: var(--logo-cream); 
    position: relative; 
}
.why-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}
.why-content h2 { 
    font-size: clamp(2rem, 3vw, 2.6rem); 
    color: var(--logo-purple); 
    margin-bottom: 24px; 
    font-weight: 800; 
}
.why-content h2 .accent-text { 
    color: var(--logo-green); 
    font-family: 'Great Vibes', cursive; 
    font-weight: 400; 
}
.why-list { 
    list-style: none; 
    margin-bottom: 36px; 
}
.why-list li { 
    display: flex; 
    align-items: flex-start; 
    gap: 16px; 
    padding: 16px 0; 
    font-size: 1.1rem; 
    color: var(--text-primary); 
    border-bottom: 1px solid rgba(46, 26, 71, 0.1); 
}
.why-list li .check-icon { 
    width: 32px; 
    height: 32px; 
    background: var(--logo-gold); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--logo-purple); 
    font-size: 0.85rem; 
    flex-shrink: 0; 
    margin-top: 2px; 
    font-weight: 700; 
}
.why-closing { 
    font-size: 1.2rem; 
    color: var(--logo-purple); 
    font-style: italic; 
    font-family: 'Playfair Display', serif; 
    line-height: 1.7; 
    border-left: 4px solid var(--logo-gold); 
    padding-left: 24px; 
}
.why-visual { position: relative; }
.why-visual img { 
    width: 100%; 
    height: 450px; 
    object-fit: cover; 
    border-radius: 16px; 
    box-shadow: var(--shadow-medium); 
}

/* ============================================
   QUICKBOOKS
   ============================================ */
.quickbooks-section { 
    background: var(--logo-cream-light); 
    position: relative; 
}
.qb-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}
.qb-visual { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background: linear-gradient(135deg, var(--logo-cream), var(--white)); 
    border-radius: 20px; 
    padding: 50px; 
    border: 2px solid rgba(212, 175, 55, 0.15); 
    position: relative; 
    overflow: hidden; 
}
.qb-logo-display { 
    max-width: 320px; 
    width: 100%; 
    height: auto; 
    position: relative; 
    z-index: 2; 
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15)); 
    border-radius: 12px; 
}
.qb-text h2 { 
    font-size: clamp(2rem, 3vw, 2.6rem); 
    color: var(--logo-purple); 
    margin-bottom: 20px; 
    font-weight: 800; 
}
.qb-text h2 .accent-text { 
    color: var(--logo-green); 
    font-family: 'Great Vibes', cursive; 
    font-weight: 400; 
}
.qb-text > p { 
    color: var(--text-muted); 
    margin-bottom: 36px; 
    font-size: 1.1rem; 
    line-height: 1.7; 
}
.qb-list { list-style: none; }
.qb-list li { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    padding: 16px 0; 
    font-size: 1.05rem; 
    color: var(--text-primary); 
    border-bottom: 1px solid rgba(46, 26, 71, 0.08); 
    transition: all 0.3s; 
}
.qb-list li:hover { 
    padding-left: 8px; 
    color: var(--logo-purple); 
}
.qb-list li .qb-check { 
    width: 36px; 
    height: 36px; 
    background: var(--logo-gold); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--logo-purple); 
    font-size: 0.9rem; 
    flex-shrink: 0; 
    font-weight: 700; 
}

/* ============================================
   CTA
   ============================================ */
.cta-section { 
    background: linear-gradient(135deg, var(--logo-purple), var(--logo-purple-dark)); 
    text-align: center; 
    color: var(--white); 
    position: relative; 
    overflow: hidden; 
    padding: 120px 0; 
}
.cta-content { 
    position: relative; 
    z-index: 2; 
    max-width: 700px; 
    margin: 0 auto; 
}
.cta-section h2 { 
    font-size: clamp(2.2rem, 4vw, 3.2rem); 
    color: var(--white); 
    margin-bottom: 24px; 
    font-weight: 800; 
}
.cta-section p { 
    font-size: 1.25rem; 
    color: rgba(255,255,255,0.8); 
    margin-bottom: 40px; 
    line-height: 1.7; 
}
.cta-btn { 
    background: var(--logo-gold); 
    color: var(--logo-purple); 
    padding: 20px 48px; 
    font-size: 1.15rem; 
    font-weight: 700; 
    border-radius: 8px; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
    transition: all 0.3s; 
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3); 
}
.cta-btn:hover { 
    background: var(--logo-gold-light); 
    transform: translateY(-3px); 
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4); 
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-section { 
    background: var(--logo-cream-light); 
    padding: 60px 0; 
    border-top: 1px solid rgba(46, 26, 71, 0.05); 
    border-bottom: 1px solid rgba(46, 26, 71, 0.05); 
}
.trust-grid { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 60px; 
    flex-wrap: wrap; 
}
.trust-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    font-weight: 500; 
}
.trust-item i { 
    color: var(--logo-gold); 
    font-size: 1.3rem; 
}

/* ============================================
   FOOTER
   ============================================ */
footer { 
    background: var(--logo-purple); 
    color: rgba(255,255,255,0.6); 
    padding: 60px 0 30px; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 40px; 
}
.footer-brand .logo-name { 
    font-size: 1.8rem; 
    margin-bottom: 16px; 
    font-family: 'Great Vibes', cursive; 
    color: var(--logo-gold); 
}
.footer-brand .logo-img { 
    width: 120px; 
    height: auto; 
    margin-bottom: 16px; 
    border-radius: 12px; 
    background: var(--logo-cream); 
    padding: 8px; 
    display: block; 
    border: 2px solid var(--logo-gold); 
}
.footer-brand p { 
    font-size: 0.9rem; 
    line-height: 1.7; 
    color: rgba(255,255,255,0.5); 
}
.footer-links h4 { 
    color: var(--logo-gold); 
    font-size: 1rem; 
    margin-bottom: 20px; 
    font-weight: 600; 
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { 
    color: rgba(255,255,255,0.6); 
    text-decoration: none; 
    font-size: 0.9rem; 
    transition: color 0.3s; 
}
.footer-links a:hover { color: var(--logo-gold); }
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 24px; 
    text-align: center; 
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.4); 
}
.footer-bottom a { 
    color: var(--logo-gold); 
    text-decoration: none; 
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.7s ease, transform 0.7s ease; 
}
.fade-in.visible { 
    opacity: 1; 
    transform: translateY(0); 
}
.fade-in-left { 
    opacity: 0; 
    transform: translateX(-40px); 
    transition: opacity 0.7s ease, transform 0.7s ease; 
}
.fade-in-left.visible { 
    opacity: 1; 
    transform: translateX(0); 
}
.fade-in-right { 
    opacity: 0; 
    transform: translateX(40px); 
    transition: opacity 0.7s ease, transform 0.7s ease; 
}
.fade-in-right.visible { 
    opacity: 1; 
    transform: translateX(0); 
}
.scale-in { 
    opacity: 0; 
    transform: scale(0.9); 
    transition: opacity 0.7s ease, transform 0.7s ease; 
}
.scale-in.visible { 
    opacity: 1; 
    transform: scale(1); 
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .logo img { height: 60px; }
    .logo-name { font-size: 1.6rem; }
    .hero { padding: 160px 0 80px; }
    .hero-grid, .problem-grid, .why-grid, .qb-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .hero-visual, .problem-image, .why-visual, .qb-visual { order: -1; }
    .hero-logo-card { padding: 20px; }
    .hero-logo-card img { max-width: 280px; }
    .hero-logo-gold-accent { width: 80px; height: 80px; }
    .hero-logo-green-accent { width: 60px; height: 60px; }
    .hero-stats { 
        right: 10px; 
        bottom: 10px; 
        padding: 14px 18px; 
        min-width: 130px; 
    }
    .hero-stats-number { font-size: 1.6rem; }
    .features-grid, .services-grid, .testimonials-grid { 
        grid-template-columns: 1fr; 
    }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .logo img { height: 50px; }
    .logo-name { font-size: 1.3rem; }
    .logo-img-container { padding: 5px; }
}


/* ============================================
   CONTACT PAGE LAYOUT FIXES
   ============================================ */
.contact-page-hero {
    padding-top: 190px;
}

.contact-card {
    background: var(--white);
    border-radius: 18px;
    padding: 42px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-left: 6px solid var(--logo-gold);
}

.contact-card h3 {
    color: var(--logo-purple);
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-detail-list {
    list-style: none;
    margin: 26px 0;
}

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(46, 26, 71, 0.08);
    color: var(--text-primary);
}

.contact-detail-list i {
    color: var(--logo-gold);
    font-size: 1.15rem;
    margin-top: 4px;
    min-width: 20px;
}

.contact-detail-list a {
    color: var(--logo-purple);
    font-weight: 700;
    text-decoration: none;
}

.contact-detail-list a:hover {
    color: var(--logo-gold-dark);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--logo-gold);
    color: var(--logo-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
}

.contact-note {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--logo-purple);
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 22px;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 24px;
    }
    .contact-page-hero {
        padding-top: 160px;
    }
}


/* ============================================
   FORM PAGE
   ============================================ */
.form-section {
    padding-top: 190px;
    background: var(--logo-cream-light);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 46px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(212, 175, 55, 0.25);
}

.rf-form {
    display: grid;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--logo-purple);
    font-weight: 700;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(46, 26, 71, 0.18);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--logo-cream-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    background: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-help {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.checkbox-group input {
    margin-top: 5px;
    width: auto;
}

.form-submit-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
}

.form-disclaimer {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 18px;
    border-top: 1px solid rgba(46, 26, 71, 0.10);
    padding-top: 18px;
}

@media (max-width: 768px) {
    .form-section {
        padding-top: 160px;
    }
    .form-wrapper {
        padding: 30px 22px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   REQUESTED CONTENT UPDATES
   ============================================ */
.sean-bio-section {
    background: var(--white);
}

.sean-bio-card {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 34px;
    align-items: start;
    background: var(--white);
    border-radius: 18px;
    padding: 42px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 26, 71, 0.10);
}

.sean-photo {
    width: 240px;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    aspect-ratio: 4 / 5;
    background: var(--logo-cream-light);
    justify-self: end;
}

.sean-bio-text h3 {
    color: var(--logo-purple);
    font-size: 2rem;
    margin-bottom: 8px;
}

.sean-bio-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.sean-title {
    color: var(--logo-gold-dark);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    font-size: 1rem;
}

.pricing-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-left: 4px solid var(--logo-gold);
    background: rgba(212, 175, 55, 0.10);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.timeframe-note {
    margin-top: 12px;
    padding: 14px 16px;
    border-left: 4px solid var(--logo-green);
    background: rgba(15, 107, 60, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(46, 26, 71, 0.10);
}

.faq-item h3 {
    color: var(--logo-purple);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.footer-service-area {
    margin-top: 22px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .sean-bio-card {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 24px;
    }

    .sean-photo {
        width: 100%;
        aspect-ratio: 4 / 3;
        justify-self: stretch;
        order: -1;
    }
}


/* ============================================
   FINAL SEAN BIO PHOTO OVERRIDE
   Keeps Sean photo small and on the right
   ============================================ */
.sean-profile-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 210px !important;
    gap: 28px !important;
    align-items: start !important;
    background: var(--white);
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 26, 71, 0.10);
}

.sean-profile-text {
    min-width: 0;
}

.sean-profile-text h3 {
    color: var(--logo-purple);
    font-size: 1.9rem;
    margin-bottom: 6px;
}

.sean-profile-title {
    color: var(--logo-gold-dark);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.sean-profile-text p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.sean-profile-photo {
    width: 210px !important;
    max-width: 210px !important;
    height: auto !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    aspect-ratio: 3 / 4 !important;
    box-shadow: var(--shadow-soft);
    justify-self: end !important;
    align-self: start !important;
}

@media (max-width: 768px) {
    .sean-profile-card {
        grid-template-columns: 1fr !important;
        padding: 26px !important;
    }

    .sean-profile-photo {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 4 / 3 !important;
        justify-self: stretch !important;
        order: -1;
    }
}

