/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Financial Color Palette with Gradients */
    --primary-blue: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --secondary-green: #059669;
    --secondary-green-light: #10b981;
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #059669 50%, #3b82f6 100%);
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #1f2937;
    
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-normal);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* =============================================
   Floating Text Us CTA
   Fixed bottom-right, always visible while scrolling
   ============================================= */
.floating-text-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: var(--secondary-green);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-text-cta i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.floating-text-cta__label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-text-cta__main {
    font-weight: 700;
    font-size: 0.95rem;
}

.floating-text-cta__sub {
    font-weight: 400;
    font-size: 0.72rem;
    opacity: 0.88;
}

.floating-text-cta:hover {
    background: #1a7a3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* On desktop, tooltip reinforces the callback message */
@media (hover: hover) {
    .floating-text-cta::after {
        content: 'Opens your text app — we\0027ll call you back';
        position: absolute;
        bottom: calc(100% + 10px);
        right: 0;
        background: #1f2937;
        color: #fff;
        padding: 6px 14px;
        border-radius: 8px;
        font-size: 0.78rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .floating-text-cta:hover::after {
        opacity: 1;
    }
}

/* Shrink to icon-only on small screens to stay out of the way */
@media (max-width: 480px) {
    .floating-text-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px;
        border-radius: 50%;
    }

    .floating-text-cta__label {
        display: none;
    }

    .floating-text-cta i {
        font-size: 1.3rem;
    }
}

/* =============================================
   Text Us — Mobile intercept bottom sheet
   ============================================= */
.text-cta-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1099;
}

.text-cta-sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 2rem 1.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.text-cta-overlay.is-open,
.text-cta-sheet.is-open {
    display: block;
}

.text-cta-sheet.is-visible {
    transform: translateY(0);
}

.text-cta-sheet__icon {
    font-size: 2.2rem;
    color: var(--secondary-green);
    margin-bottom: 0.75rem;
}

.text-cta-sheet__title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.text-cta-sheet__body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text-cta-sheet__body strong {
    color: var(--text-primary);
}

.text-cta-sheet__confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 14px;
    background: var(--secondary-green);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: background 0.2s ease;
}

.text-cta-sheet__confirm:hover {
    background: #1a7a3a;
    color: #fff;
}

.text-cta-sheet__cancel {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
}

/* =============================================
   Calendly Slide-in Drawer
   ============================================= */
.calendly-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
}
.calendly-drawer-overlay.is-open { display: block; }

/* Default: right-side panel on desktop */
.calendly-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100vw;
    height: 100vh;
    z-index: 1100;
    background: #fff;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    flex-direction: column;
}
.calendly-drawer.is-open  { display: flex; }
.calendly-drawer.is-visible { transform: translateX(0); }

/* Mobile: bottom sheet */
@media (max-width: 768px) {
    .calendly-drawer {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 88vh;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
        transform: translateY(110%);
    }
    .calendly-drawer.is-visible { transform: translateY(0); }
}

.calendly-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: #f8faff;
}
.calendly-drawer__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.calendly-drawer__subtitle {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}
.calendly-drawer__close {
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
    flex-shrink: 0;
}
.calendly-drawer__close:hover {
    color: #1e3a8a;
    background: #e0f2fe;
}
.calendly-drawer__body {
    flex: 1;
    overflow-y: auto;
    min-height: 0; /* required so flex child can shrink */
}
/* Calendly mounts an iframe inside here — give it a fixed height to render into */
.calendly-drawer__body .calendly-inline-widget,
.calendly-drawer__body iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 660px;
    border: none;
}

/* =============================================
   Bridge Modal — hireacreditadvisor.com redirect
   ============================================= */
.bridge-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.bridge-modal-overlay.is-open {
    display: flex;
}
.bridge-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
}
.bridge-modal-overlay.is-open .bridge-modal {
    transform: scale(1);
    opacity: 1;
}
.bridge-modal__top {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.bridge-modal__icon {
    font-size: 2rem;
    line-height: 1;
}
.bridge-modal__heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.bridge-modal__subhead {
    font-size: 0.8rem;
    color: #93c5fd;
    margin: 0;
    font-weight: 500;
}
.bridge-modal__body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bridge-modal__copy {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}
.bridge-modal__copy strong {
    color: #1e3a8a;
}
.bridge-modal__trust {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}
.bridge-modal__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #166534;
    font-weight: 500;
}
.bridge-modal__trust-item i {
    color: #059669;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.bridge-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.bridge-modal__confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    background: #059669;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.bridge-modal__confirm:hover {
    background: #047857;
    transform: translateY(-1px);
    color: #fff;
}
.bridge-modal__cancel {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.15s ease;
}
.bridge-modal__cancel:hover {
    color: #475569;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    transition: var(--transition-normal);
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 130px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

/* CTA Buttons in Nav */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.nav-phone {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.nav-phone:hover {
    color: #059669;
}

/* Standard Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-normal);
    padding: 8px;
    background: transparent;
    border: none;
    outline: none;
    margin-left: auto;
    gap: 4px;
}

.hamburger:hover {
    transform: scale(1.05);
}

.hamburger:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

.hamburger-line {
    display: block;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
    transition: all var(--transition-normal) ease-in-out;
    transform-origin: center;
    margin: 0;
}

.hamburger-line:nth-child(1) {
    width: 28px;
}

.hamburger-line:nth-child(2) {
    width: 24px;
}

.hamburger-line:nth-child(3) {
    width: 20px;
}

/* Hamburger Active State - Transform to X */
.hamburger.active .hamburger-line {
    background: var(--primary-blue);
    width: 24px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    background: var(--gradient-primary);
    color: var(--text-white);
}

.mobile-menu-header h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.close-mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

.mobile-dropdown-content {
    list-style: none;
    background: var(--bg-light);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 400px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 0.75rem 2.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-dropdown-content a:hover {
    color: var(--primary-blue);
    background: var(--bg-white);
}

.mobile-cta {
    padding: 1.5rem;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-btn {
    text-align: center;
    width: 100%;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    padding: 0.5rem 0;
}

.mobile-phone-link:hover {
    color: #059669;
}

/* Main Content */
.main-content {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 1rem;
    align-items: start;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);

}

.hero-badge i {
    color: var(--accent-gold);
}

/* Enhanced Hero Hook */
.hero-hook {
    margin-bottom: 1.5rem;
}

.hook-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e3a8a;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
}

.hook-eyebrow {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;

}

.title-main {
    display: block;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Hero Value Proposition */
.hero-value-prop {
    margin-bottom: 2rem;
}

.value-statement {
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1rem;
}



/* Hero Benefits */
.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Power CTA Section */
.hero-power-cta {
    margin-top: 2rem;
}

/* Dedicated CTA Section - Perfectly Centered */
.dedicated-cta-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.dedicated-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desktop centering for dedicated CTA */
@media (min-width: 769px) {
    .dedicated-cta-section {
        padding: 4rem 0;
    }

    .dedicated-cta-container {
        padding: 0 2rem;
    }

    .power-cta-container {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    /* Center hero content on desktop */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: none;
        width: 100%;
    }

    .hero-hook,
    .hero-value-prop,
    .hero-benefits {
        max-width: 600px;
        width: 100%;
    }
}

/* Mobile layout for dedicated CTA */
@media (max-width: 768px) {
    .dedicated-cta-section {
        padding: 2rem 0;
    }

    .dedicated-cta-container {
        padding: 0 1rem;
    }
}

.power-cta-container {
    background: linear-gradient(135deg, #f8faff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-process {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.mega-cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

.mega-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Secondary CTA button — sits below the mega button */
.secondary-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.secondary-cta-button:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Dual-path OR divider */
.path-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.path-divider::before,
.path-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dbeafe;
}

/* Session path card — second CTA option */
.session-path-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(30,58,138,0.2);
    box-sizing: border-box;
}
.session-path-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(30,58,138,0.35);
    color: #fff;
}
.session-path-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}
.session-path-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.session-path-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #93c5fd;
}
.session-path-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.session-path-sub {
    font-size: 0.75rem;
    color: #bfdbfe;
}
.session-path-creds {
    font-size: 0.7rem;
    color: #34d399;
    font-weight: 600;
    margin-top: 2px;
}
.session-path-arrow {
    font-size: 1.25rem;
    color: #93c5fd;
    flex-shrink: 0;
}

/* Consultation section — two-option layout */
.consultation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}
.consult-option {
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.consult-option.session {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(30,58,138,0.25);
}
.consult-option.free-chat {
    background: #f8faff;
    border: 2px solid #dbeafe;
    color: var(--text-dark);
}
.consult-option-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
}
.session .consult-option-badge {
    background: rgba(5,150,105,0.9);
    color: #fff;
}
.free-chat .consult-option-badge {
    background: #dbeafe;
    color: #1e3a8a;
}
.consult-option-icon { font-size: 2rem; }
.consult-option-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}
.session .consult-option-title { color: #fff; }
.consult-option-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}
.session .consult-option-desc { color: #bfdbfe; }
.free-chat .consult-option-desc { color: #64748b; }
.consult-option-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.consult-option-bullets li {
    font-size: 0.825rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.session .consult-option-bullets li { color: #e0f2fe; }
.free-chat .consult-option-bullets li { color: #475569; }
.consult-option-bullets li::before {
    content: '✓';
    font-weight: 700;
    flex-shrink: 0;
}
.session .consult-option-bullets li::before { color: #34d399; }
.free-chat .consult-option-bullets li::before { color: #059669; }
.consult-option-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}
.session .consult-option-price { color: #fff; }
.consult-option-price-note {
    font-size: 0.75rem;
}
.session .consult-option-price-note { color: #93c5fd; }
.free-chat .consult-option-price-note { color: #94a3b8; }
.consult-option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}
.session .consult-option-btn {
    background: #059669;
    color: #fff;
}
.session .consult-option-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}
.free-chat .consult-option-btn {
    background: transparent;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
}
.free-chat .consult-option-btn:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .consultation-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
}

/* Cheating Debt Academy Feed */
.academy-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.academy-header {
    text-align: center;
    margin-bottom: 3rem;
}
.academy-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.academy-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}
.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.academy-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(30,58,138,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.academy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30,58,138,0.15);
}
.academy-card-meta {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.academy-card-title {
    margin-bottom: 0.75rem;
}
.academy-card-title a {
    color: var(--primary-blue);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
}
.academy-card-title a:hover { color: var(--primary-blue-light); }
.academy-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}
.academy-card-link {
    color: var(--primary-blue-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.academy-card-link:hover { color: var(--primary-blue); }
.academy-card-loading {
    color: var(--text-secondary);
    text-align: center;
    grid-column: 1 / -1;
    padding: 2rem;
}
.academy-cta {
    text-align: center;
}

/* Affiliate & results disclosure text */
.affiliate-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    text-align: center;
    max-width: 600px;
    margin: 0.75rem auto 1rem;
}

.results-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.25rem;
    font-style: italic;
}

/* Consultation / Calendly Section */
.consultation-section {
    padding: 4rem 0;
    background: var(--bg-white);
    border-top: 1px solid #e5e7eb;
}

.consultation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.consultation-header h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.consultation-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.consultation-widget {
    max-width: 900px;
    margin: 0 auto;
}

/* Simplified consultation layout */
.consultation-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.consultation-simple__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.consultation-simple__btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.consultation-simple__session-link {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.consultation-simple__session-link a {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.consultation-simple__session-link a:hover {
    color: #059669;
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 3rem 0;
    }

    .consultation-header h2 {
        font-size: 1.75rem;
    }

    .consultation-header p {
        font-size: 1rem;
    }

    .consultation-simple__btn {
        width: 100%;
        justify-content: center;
    }
}

.cta-main-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-action {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.025em;
}

.cta-price {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-arrow-large {
    font-size: 2rem;
    opacity: 0.9;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

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

.guarantee-item i {
    color: var(--success-green);
    font-size: 1rem;
}

/* Advisor credential badges — company authority signals below the offer badges */
.cta-credentials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(30, 58, 138, 0.12);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.01em;
}

.credential-item i {
    color: #059669;
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .cta-credentials {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
}

.social-proof {
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-top: 1px solid #e2e8f0;
}

.stats-content {
    text-align: center;
}

.stats-header {
    margin-bottom: 3rem;
}

.stats-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stats-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.stat-source {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.stat-source a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.stat-source a:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
    text-decoration: none;
}

.stat-source a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

.stats-cta {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.stats-cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: white;
}

.reviews-content {
    text-align: center;
}

.reviews-header {
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.overall-rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stars-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.stars {
    font-size: 1.5rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.review-stars {
    font-size: 1rem;
    color: #fbbf24;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

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

.review-source i {
    color: #4285f4;
    font-size: 1rem;
}

.reviews-cta {
    display: flex;
    justify-content: center;
}

.view-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.view-all-reviews:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.view-all-reviews .fab {
    font-size: 1.125rem;
}

.view-all-reviews .fas {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon i {
    color: white;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);

}

.contact-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.contact-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

.contact-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.contact-modal-header h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    padding-right: 3rem;
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.contact-modal-close:hover {
    background: #f3f4f6;
    color: var(--text-primary);
}

.contact-modal-body {
    padding: 1.5rem;
}

.contact-modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: var(--shadow-lg);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-info {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Process Modal Styles */
.process-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);

}

.process-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.process-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    position: relative;
    display: flex;
    flex-direction: column;
}

.process-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    flex-shrink: 0;
}

.process-modal-header h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    padding-right: 3rem;
}

.process-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.process-modal-close:hover {
    background: #f3f4f6;
    color: var(--text-primary);
}

.process-modal-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.process-steps {
    margin-bottom: 0;
}

.process-step-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.process-step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
    font-size: 0.95rem;
}

.modal-affiliate-disclosure {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.5;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.process-modal-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    flex-shrink: 0;
    background: white;
}

.process-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s;
    margin-bottom: 0.5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.process-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.process-cta-button:hover::before {
    left: 100%;
}

.process-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    color: white;
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.process-cta-button .cta-main-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.process-cta-button .fa-arrow-right {
    font-size: 0.9rem;
    opacity: 0.9;
    transition: transform 0.3s;
}

.process-cta-button:hover .fa-arrow-right {
    transform: translateX(4px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-top: 0.375rem;
}

.trust-item {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Contact Modal Styles */
@media (max-width: 768px) {
    .contact-modal {
        padding: 0.5rem;
    }

    .contact-modal-content {
        max-height: 95vh;
        border-radius: 16px;
    }

    .contact-modal-header {
        padding: 1rem 1rem 0.75rem;
    }

    .contact-modal-header h2 {
        font-size: 1.25rem;
    }

    .contact-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .contact-modal-body {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .contact-submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Mobile Process Modal Styles */
@media (max-width: 768px) {
    .process-modal {
        padding: 0.5rem;
    }

    .process-modal-content {
        margin: 0;
        border-radius: 16px;
        max-height: 90vh;
        min-height: 70vh;
    }

    .process-modal-header {
        padding: 1rem 1rem 0.75rem;
    }

    .process-modal-header h2 {
        font-size: 1.25rem;
        padding-right: 2.5rem;
    }

    .process-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .process-modal-body {
        padding: 1rem;
    }

    .process-step-item {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .process-modal-footer {
        padding: 0.625rem 1rem;
    }

    .process-cta-button {
        padding: 1rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .button-content {
        align-items: center;
        text-align: center;
    }

    .process-cta-button .cta-main-text {
        font-size: 1rem;
    }

    .process-cta-button .cta-sub-text {
        font-size: 0.85rem;
    }

    .button-arrow {
        font-size: 1.25rem;
    }

    .trust-badges {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    /* Mobile Statistics Section */
    .stats-section {
        padding: 3rem 0;
    }

    .stats-header h2 {
        font-size: 2rem;
    }

    .stats-header p {
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .academy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-source {
        font-size: 0.8rem;
    }

    .stats-cta {
        padding: 1.25rem 1.5rem;
        margin: 0 1rem;
    }

    .stats-cta-text {
        font-size: 1rem;
    }

    /* Mobile Reviews Section */
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-header h2 {
        font-size: 2rem;
    }

    .stars-display {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
    }

    .stars {
        font-size: 1.25rem;
    }

    .rating-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .review-card {
        padding: 1.5rem;
        min-height: 260px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .reviewer-info {
        width: 100%;
    }

    .review-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .view-all-reviews {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    /* Mobile FAQ Section */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.75rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-icon i {
        font-size: 0.75rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;

}

.hero-description strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;

}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-item i {
    color: var(--secondary-green);
    font-size: 1.25rem;
}

/* Hero CTA Section */
.hero-cta-section {
    margin-bottom: 2rem;

}

.hero-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-cta-primary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-teaser {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #e0f2fe 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.service-teaser:hover {
    border-color: var(--secondary-green);
    box-shadow: var(--shadow-md);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--secondary-green);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.service-link {
    color: var(--secondary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-normal);
}

.service-link:hover {
    color: var(--text-primary);
}

.service-link i {
    font-size: 0.75rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Learning Path Section */
.learning-path-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.path-category {
    margin-bottom: 3rem;
}

.category-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.category-title i {
    color: var(--primary-blue);
}

.learning-path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.path-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-white);
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
}

.path-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.path-card.featured {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8faff 100%);
}

.path-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.path-card-clickable {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-card-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none !important;
    color: inherit !important;
}

.path-card-clickable:active {
    transform: translateY(0);
}

.path-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.path-content {
    flex: 1;
    position: relative;
}

.path-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.path-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.path-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.path-badge {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.path-badge.free {
    background: var(--secondary-green);
    color: var(--text-white);
}

.path-badge.price {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: var(--text-white);
}

.path-arrow {
    color: var(--primary-blue);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.path-card:hover .path-arrow {
    transform: translateX(4px);
}

.section-footer {
    text-align: center;
}

.section-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    background: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.section-note i {
    color: var(--primary-blue);
}

.cta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
}

.cta-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.cta-card.primary {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8faff 100%);
}

.cta-card.primary:hover {
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
    position: relative;
}

.cta-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cta-badge {
    position: absolute;
    top: -0.25rem;
    right: 0;
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-arrow {
    color: var(--primary-blue);
    font-size: 1.125rem;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.cta-card:hover .cta-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.cta-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.cta-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-note i {
    color: var(--success-green);
}

/* Score Celebration Effect */
.score-celebration {
    animation: scoreCelebration 0.6s ease-out;
}

@keyframes scoreCelebration {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Proof Stats */
.hero-proof {

}

.proof-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Hero Visual Section */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;

    width: 100%;
    padding-top: 2rem;
}

.credit-score-display {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.score-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(30, 58, 138, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.score-header {
    margin-bottom: 1.5rem;
}

.score-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.score-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.score-number {
    margin-bottom: 2rem;
}

.score-value {
    display: block;
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.score-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-green);
    letter-spacing: 2px;
}

.score-range {
    margin-bottom: 1.5rem;
}

.range-bar {
    position: relative;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.range-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #ef4444, #ef4444dd);
    border-radius: 4px;
    transition: width 1s ease-out, background 0.5s ease;
}

.range-marker {
    position: absolute;
    top: -4px;
    left: 20%;
    width: 16px;
    height: 16px;
    background: #ef4444;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: left 1s ease-out, background 0.5s ease;
    transform: translateX(-50%);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-light);
}

.score-info {
    margin-top: 1.5rem;
    text-align: left;
}

.score-description {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-blue);
    font-size: 0.875rem;
    line-height: 1.4;
}

.score-description strong {
    color: var(--primary-blue);
    font-size: 1rem;
}

.score-opportunities {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-green);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Floating Benefits */
.floating-benefits {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.benefit-bubble {
    position: absolute;
    background: var(--bg-white);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.benefit-bubble i {
    color: var(--primary-blue);
}

.benefit-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.benefit-2 {
    top: 20%;
    right: -25%;
    animation-delay: 0.5s;
}

.benefit-3 {
    bottom: 30%;
    left: -25%;
    animation-delay: 1s;
}

.benefit-4 {
    bottom: 10%;
    right: -20%;
    animation-delay: 1.5s;
}

/* Educational Hub Preview Section */
.education-preview {
    background: var(--bg-light);
    padding: 5rem 0;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.education-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.education-header {
    text-align: center;
    margin-bottom: 4rem;
}

.education-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.education-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.education-module {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: var(--transition-normal);
    position: relative;
}

.education-module:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.education-module.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8faff 100%);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1.5rem;
}

.module-badge {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-badge.coming-soon {
    background: var(--text-secondary);
}

.education-module h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.module-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.preview-content {
    background: rgba(30, 58, 138, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.lesson-preview h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lesson-preview h4 i {
    color: var(--primary-blue);
}

.fico-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fico-factor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.factor-name {
    min-width: 120px;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.factor-bar {
    flex: 1;
    height: 8px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.factor-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease;
}

.factor-percentage {
    min-width: 30px;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

.preview-insight {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.preview-insight strong {
    color: var(--text-primary);
}

.module-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-topics li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.module-topics li i {
    color: var(--success-green);
    font-size: 0.875rem;
}

.education-cta {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: var(--shadow-sm);
}

.education-cta .cta-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.education-cta .cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
}

.cta-guarantee {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-guarantee i {
    color: var(--success-green);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Footer Styles */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-cta {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-content p {
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-content {
        order: 1;
        max-width: none;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        margin-top: 2rem;
    }

    .hook-eyebrow {
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .title-sub {
        font-size: 2rem;
    }

    .value-statement {
        font-size: 1.25rem;
        text-align: center;
    }

    .benefit-item {
        padding: 0.75rem;
    }

    .benefit-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .benefit-item span {
        font-size: 1rem;
    }

    .power-cta-container {
        padding: 1.5rem;
    }

    .cta-header h3 {
        font-size: 1.5rem;
    }

    .mega-cta-button {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }

    .cta-main-text {
        align-items: center;
        text-align: center;
    }

    .cta-action {
        font-size: 1.25rem;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .guarantee-item {
        font-size: 0.85rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-cta-section {
        padding: 1rem 0;
    }
    
    .hero-cta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta-primary,
    .service-teaser {
        padding: 1.25rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .learning-path-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .learning-path-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .path-card {
        padding: 1.5rem;
    }

    .cta-header h3 {
        font-size: 1.375rem;
    }

    .cta-card {
        padding: 1.25rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-content h4 {
        font-size: 1rem;
    }

    .cta-content p {
        font-size: 0.875rem;
    }

    .proof-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .score-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .score-value {
        font-size: 3rem;
    }
    
    .score-info {
        margin-top: 1rem;
    }
    
    .score-description,
    .score-opportunities {
        padding: 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .benefit-bubble {
        display: none;
    }

    .education-preview {
        padding: 3rem 0;
    }

    .education-header h2 {
        font-size: 2.25rem;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .education-module {
        padding: 1.5rem;
    }

    .preview-content {
        padding: 1.25rem;
    }

    .education-cta {
        padding: 2rem;
    }

    .education-cta .cta-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .score-value {
        font-size: 2.5rem;
    }
    
    .score-description,
    .score-opportunities {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .hero-cta-section {
        padding: 1rem 0;
    }
    
    .hero-cta-primary,
    .service-teaser {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-content h4 {
        font-size: 1rem;
    }
    
    .learning-path-section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .path-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .path-content h4 {
        font-size: 1.125rem;
    }
    
    .path-content p {
        font-size: 0.875rem;
    }
    
    .path-badge {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }

    .cta-header h3 {
        font-size: 1.25rem;
    }

    .cta-header p {
        font-size: 0.9rem;
    }

    .cta-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .cta-content p {
        font-size: 0.8rem;
    }

    .cta-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
        margin: 0 auto;
    }

    .cta-badge {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }

    .cta-arrow {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1rem;
        min-height: 100px;
    }
    
    .logo-img {
        width: 90px;
        height: 90px;
    }
    
    .main-content {
        margin-top: 110px;
        min-height: calc(100vh - 110px);
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hamburger {
        width: 30px;
        height: 30px;
        padding: 6px;
        gap: 3px;
    }
    
    .hamburger-line:nth-child(1) {
        width: 24px;
    }
    
    .hamburger-line:nth-child(2) {
        width: 20px;
    }
    
    .hamburger-line:nth-child(3) {
        width: 16px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .nav-container {
        min-height: 80px;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .main-content {
        margin-top: 85px;
        min-height: calc(100vh - 85px);
    }

    .education-header h2 {
        font-size: 2rem;
    }

    .education-subtitle {
        font-size: 1.125rem;
    }

    .education-module {
        padding: 1.25rem;
    }

    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .module-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .fico-factor {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .factor-name {
        min-width: auto;
    }

    .education-cta {
        padding: 1.5rem;
    }

    .education-cta .cta-content h3 {
        font-size: 1.5rem;
    }

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

/* Utility Classes */
.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;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading States and Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {

}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hamburger,
    .mobile-menu {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
}









/* Business Model Section */
.business-model-section {
    padding: 5rem 0;
    background: var(--bg-white);
    border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.business-model-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.business-model-header {
    text-align: center;
    margin-bottom: 4rem;
}

.business-model-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.business-model-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.business-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.business-model-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: var(--transition-normal);
}

.business-model-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.model-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 1.5rem;
}

.business-model-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.business-model-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.business-model-note {
    background: linear-gradient(135deg, #f8faff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid var(--primary-blue);
}

.note-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.note-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.note-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .business-model-section {
        padding: 3rem 0;
    }

    .business-model-header h2 {
        font-size: 2.25rem;
    }

    .business-model-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .business-model-card {
        padding: 1.5rem;
    }

    .business-model-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* Service Overview Section */
.service-overview-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.service-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.intro-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.main-service-card {
    max-width: 600px;
    margin: 0 auto;
}

.service-cta-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.service-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-card-content {
    flex: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.service-card-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.service-badge {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.service-card-arrow {
    color: var(--primary-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Updated Business Model Cards */
.business-model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.model-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: var(--transition-normal);
}

.model-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.model-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-white);
    font-size: 1.25rem;
}

.model-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.model-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

/* Step Card Enhancements */
.step-card {
    position: relative;
    padding: 2rem 1.5rem;
}

.step-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.step-features li:last-child {
    margin-bottom: 0;
}

.step-features i {
    color: var(--success-green);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.transparency-note {
    background: linear-gradient(135deg, #f8faff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--primary-blue);
}

.transparency-note .note-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.transparency-note .note-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.transparency-note .note-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Process Section within Business Model */
.process-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(30, 58, 138, 0.1);
}

.process-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.process-section .education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-section .education-cta {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

@media (max-width: 768px) {
    .service-overview-section {
        padding: 3rem 0;
    }

    .intro-content h2 {
        font-size: 2.25rem;
    }

    .service-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-card-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .business-model-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .step-badge {
        top: -8px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .transparency-note {
        flex-direction: column;
        text-align: center;
    }

    .process-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .process-title {
        font-size: 1.75rem;
    }

    .process-section .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-section .education-cta {
        padding: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Show modal when its hash anchor is targeted in the URL
   e.g. cheatingdebt.com/#privacy-policy or #terms-of-service */
.modal:has(:target) {
    display: block;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 2% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.modal-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
}

.modal-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-section ul {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-section li {
    margin-bottom: 0.5rem;
}

.modal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.modal-section a:hover {
    text-decoration: underline;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.5rem;
        max-height: calc(85vh - 100px);
    }

    .close {
        font-size: 1.5rem;
    }
}

/* Mobile-First Content Sections */

/* Value Proposition Section */
.value-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.value-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.value-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.value-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.value-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.highlight-item i {
    font-size: 1.25rem;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.process-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.process-flow {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Primary CTA */
.primary-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-text {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.cta-price {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.trust-point i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.trust-point strong {
    color: var(--text-primary);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.trust-point p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.trust-section .transparency-note {
    background: linear-gradient(135deg, #f8faff 0%, #e0f2fe 100%);
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.trust-section .transparency-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--text-white);
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.final-cta-button {
    display: inline-block;
    background: var(--text-white);
    color: var(--primary-blue);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    margin-bottom: 1.5rem;
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-guarantee i {
    font-size: 1.125rem;
}

.next-step {
    opacity: 0.8;
    font-size: 0.9rem;
}

.next-step a {
    color: var(--text-white);
    text-decoration: underline;
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 768px) {
    /* Value Section Mobile */
    .value-section {
        padding: 2rem 0;
    }

    .value-content h2 {
        font-size: 2rem;
    }

    .value-content p {
        font-size: 1.125rem;
    }

    .value-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Process Section Mobile */
    .process-section {
        padding: 3rem 0;
    }

    .process-section h2 {
        font-size: 1.875rem;
    }

    .process-step {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    .cta-text {
        font-size: 1.125rem;
    }

    /* Trust Section Mobile */
    .trust-section {
        padding: 2.5rem 0;
    }

    .trust-content h3 {
        font-size: 1.75rem;
    }

    .trust-point {
        padding: 0.75rem;
    }

    .trust-point i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .trust-point strong {
        font-size: 1rem;
    }

    /* Final CTA Mobile */
    .final-cta-section {
        padding: 3rem 0;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-content p {
        font-size: 1.125rem;
    }

    .final-cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 100%;
        max-width: 320px;
    }

    .cta-guarantee {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .next-step {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (min-width: 769px) {
    /* Desktop enhancements */
    .trust-points {
        flex-direction: row;
        gap: 1rem;
    }

    .trust-point {
        flex: 1;
        text-align: center;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }

    .trust-point i {
        margin-bottom: 1rem;
    }
}