/* Direct Funds HQ - Custom Styles */

/* CSS Variables for Brand Colors */
:root {
    --primary-blue: #003366;
    --accent-red: #E63946;
    --white: #FFFFFF;
    --light-gray: #F5F6FA;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-gray: #E0E0E0;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    font-size: 16px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Links */
a {
    color: var(--accent-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-primary i, .btn-secondary i {
    margin-right: 8px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

.logo a {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: opacity 0.3s ease;
    display: block;
}

.logo-img:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-red);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.phone-number {
    font-size: 1.1rem;
}

.call-now-btn {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.call-now-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Mobile Header Styles - Keep on one row */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        white-space: nowrap;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .main-nav {
        display: none; /* Hide navigation on mobile to save space */
    }
    
    .header-phone {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        flex-shrink: 0;
    }
    
    .phone-link {
        display: none; /* Hide phone link on mobile to save space */
    }
    
    .phone-number {
        display: none;
    }
    
    .call-now-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 0;
        gap: 8px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .call-now-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.floating-btn:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Mobile Floating CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        padding: 12px 16px;
        font-size: 14px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .floating-btn {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        border-radius: 10px;
    }
    
    .floating-btn span {
        display: inline;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(230, 57, 70, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }
}

/* Main Content */
main {
    margin-top: 80px;
}

@media (max-width: 768px) {
    main {
        margin-top: 80px; /* Back to normal since header is single row */
    }
}

@media (max-width: 480px) {
    main {
        margin-top: 80px; /* Same as tablet since header is single row */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: var(--white);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23003366" width="1200" height="600"/><circle fill="%23ffffff" opacity="0.1" cx="200" cy="200" r="100"/><circle fill="%23ffffff" opacity="0.05" cx="800" cy="400" r="150"/><circle fill="%23ffffff" opacity="0.08" cx="1000" cy="150" r="80"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefits-note {
    text-align: center;
    font-style: italic;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--white);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.steps-cta {
    text-align: center;
}

/* Trust Section */
.trust-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials blockquote {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-red);
    font-style: italic;
    position: relative;
}

.testimonials cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: normal;
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding);
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About Page Styles */
.page-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: var(--section-padding);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.mission-section, .differentiators, .promise-section, .why-started {
    padding: var(--section-padding);
}

.mission-section {
    background-color: var(--light-gray);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.differentiator-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.differentiator-item:hover {
    transform: translateY(-5px);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.diff-icon i {
    font-size: 2rem;
    color: var(--white);
}

.promise-section {
    background-color: var(--light-gray);
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.promise-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-blue);
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
}

.promise-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.promise-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.promise-point i {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.promise-point h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-cta {
    padding: var(--section-padding);
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-phone {
    margin: 1rem 0;
}

.cta-phone a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.cta-hours {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--white);
    opacity: 0.9;
}

.contact-info i {
    color: var(--accent-red);
    width: 20px;
}

.contact-info a {
    color: var(--white);
}

.footer-cta {
    text-align: center;
}

.footer-cta h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-phone-btn:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.6 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .benefits-grid, .steps-grid, .differentiator-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .promise-points {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hero section mobile improvements */
    .hero {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-pitch {
        padding: 1.5rem;
    }
    
    .pitch-highlight {
        font-size: 1.2rem;
    }
    
    .pitch-promise {
        font-size: 1rem;
    }
    
    /* Button improvements */
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-primary.large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-primary.large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Hero section for very small screens */
    .hero {
        min-height: 450px;
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-pitch {
        padding: 1rem;
    }
    
    .pitch-highlight {
        font-size: 1.1rem;
    }
    
    .pitch-promise {
        font-size: 0.95rem;
    }
    
    .benefit-item, .differentiator-item {
        padding: 1.5rem;
    }
    
    .testimonials blockquote {
        padding: 1.5rem;
    }
    
    /* Sales pitch elements for mobile */
    .sales-pitch-box, .sales-comparison, .social-proof-pitch {
        padding: 1.5rem;
    }
    
    .pitch-question, .pitch-answer {
        font-size: 1rem;
    }
    
    /* Comparison sections */
    .comparison-item {
        padding: 1.5rem;
    }
    
    .risk-content {
        gap: 2rem;
    }
    
    .risk-left, .risk-right {
        padding: 1.5rem;
    }
    
    /* Industry coverage mobile */
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .industry-item {
        padding: 1rem;
    }
    
    .industry-item i {
        font-size: 1.5rem;
    }
    
    .industry-item span {
        font-size: 0.8rem;
    }
    
    .industry-pitch {
        padding: 1.5rem;
    }
    
    .pitch-statement {
        font-size: 1rem;
    }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn-primary, .btn-secondary, .call-now-btn, .floating-btn {
        min-height: 44px; /* iOS recommended touch target size */
        min-width: 44px;
    }
    
    /* Better spacing for touch */
    .trust-items {
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve readability on mobile */
    p {
        line-height: 1.7;
    }
    
    .testimonials blockquote {
        line-height: 1.6;
    }
    
    /* Better button spacing */
    .cta-buttons {
        gap: 1rem;
    }
    
    /* Improve form elements if any */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-btn {
        animation: none;
    }
}

/* Urgency Section */
.urgency-section {
    padding: var(--section-padding);
    background-color: var(--accent-red);
    color: var(--white);
    text-align: center;
}

.urgency-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.urgency-cta {
    margin-top: 2rem;
}

/* Funding Options Section */
.funding-options {
    padding: var(--section-padding);
    background-color: var(--white);
}

.funding-options h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.funding-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-red);
}

.funding-card:hover {
    transform: translateY(-5px);
}

.funding-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.funding-icon i {
    font-size: 2rem;
    color: var(--white);
}

.funding-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.funding-benefits {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.funding-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.funding-benefits li::before {
    content: "✓";
    color: var(--accent-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.funding-cta {
    text-align: center;
}

.funding-note {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-gray);
}

/* Risk Reversal Section */
.risk-reversal {
    padding: var(--section-padding);
    background-color: var(--white);
}

.risk-reversal h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.risk-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.risk-left, .risk-right {
    padding: 2rem;
    border-radius: 10px;
}

.risk-left {
    background-color: #ffebee;
    border-left: 4px solid var(--accent-red);
}

.risk-right {
    background-color: #e8f5e8;
    border-left: 4px solid #4caf50;
}

.risk-left h3, .risk-right h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.risk-list, .benefit-list {
    list-style: none;
}

.risk-list li, .benefit-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.risk-list i {
    color: var(--accent-red);
}

.benefit-list i {
    color: #4caf50;
}

/* Sales Pitch Elements */
.hero-pitch {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.pitch-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    font-style: italic;
}

.pitch-promise {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.sales-pitch-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-red);
}

.pitch-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-style: italic;
}

.pitch-answer {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.sales-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.our-way {
    background-color: #e8f5e8;
    border-left: 4px solid #4caf50;
}

.bank-way {
    background-color: #ffebee;
    border-left: 4px solid var(--accent-red);
}

.comparison-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.comparison-item ul {
    list-style: none;
    margin: 0;
}

.comparison-item li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.cta-urgency {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.scarcity-message {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.scarcity-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.social-proof-pitch {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-blue);
}

.proof-statement {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.funding-note {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.risk-warning, .benefit-promise {
    margin-top: 1rem;
    font-weight: 600;
    font-style: italic;
    padding: 1rem;
    border-radius: 5px;
}

.risk-warning {
    background-color: #ffebee;
    color: var(--accent-red);
    border-left: 3px solid var(--accent-red);
}

.benefit-promise {
    background-color: #e8f5e8;
    color: #4caf50;
    border-left: 3px solid #4caf50;
}

.final-pitch {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.pitch-closer {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.final-warning {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    font-style: italic;
    line-height: 1.6;
}

/* Industry Coverage Section */
.industry-coverage {
    padding: var(--section-padding);
    background-color: var(--white);
}

.industry-coverage h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.industry-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-blue);
}

.industry-item:hover {
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.industry-item span {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    line-height: 1.3;
}

.industry-pitch {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--accent-red);
}

.industry-pitch h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pitch-statement {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.industry-guarantee {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 3px solid var(--primary-blue);
}

.guarantee-text {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

/* Centered CTA Button */
.centered-cta {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
}

/* Ensure CTA buttons container centers properly */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Center the primary button specifically */
.cta-buttons .btn-primary.large.centered-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Enhanced Final CTA */
.final-cta .cta-content {
    text-align: center;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.cta-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.cta-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.cta-guarantee {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-guarantee i {
    color: var(--white);
    font-size: 1.2rem;
}

/* About Page Enhancements */
.success-stories {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.success-pitch {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-blue);
}

.success-statement {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-red);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.story-header h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.2rem;
}

.story-amount {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-card p {
    margin-bottom: 1rem;
    font-style: italic;
}

.story-card cite {
    font-weight: 600;
    color: var(--primary-blue);
    font-style: normal;
    font-size: 0.9rem;
}

.team-credibility {
    padding: var(--section-padding);
    background-color: var(--white);
}

.team-credibility h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
}

.credential-item i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.credential-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.guarantee-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.guarantee-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-item i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .urgency-stats, .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item, .cta-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .risk-content {
        grid-template-columns: 1fr;
    }
    
    .stories-grid, .credentials, .guarantee-content {
        grid-template-columns: 1fr;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cta-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .funding-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-stats, .cta-stats {
        gap: 0.5rem;
    }
    
    .stat-item, .cta-stat {
        padding: 1rem;
    }
    
    .stat-number, .cta-number {
        font-size: 2rem;
    }
}

/* Error Page Styles */
.error-page {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    color: var(--primary-blue);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.error-subtitle {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 500;
}

.error-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.error-info {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
}

.error-info p {
    margin: 0;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Print Styles */
@media print {
    .header, .floating-cta, .footer {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .btn-primary, .btn-secondary {
        border: 1px solid black;
        background: none;
        color: black;
    }
}
