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

:root {
    --primary: #ff6b00;
    --primary-dark: #e05e00;
    --primary-light: rgba(255, 107, 0, 0.1);
    --text: #f2f2f2;
    --text-muted: #a6a6a6;
    --background: #111;
    --card-bg: #111111;
    --card-hover: #1a1a1a;
    --border-color: rgba(255, 107, 0, 0.2);
    --light-bg: #fff;
    --text-dark: #2a2a2a;
    --text-body: #444444;
    --highlight-color: #FF6B35;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text);
    text-decoration: none;
}

.logo:visited {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:visited {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 1rem auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem; /* Add space for fixed nav */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.accent-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.7;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.cta-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.outline-button {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* Bio Section */
.bio-section {
    padding: 8rem 0 6rem;
    background-color: var(--light-bg);
}

.bio-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
}

.bio-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 3rem;
}

.bio-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.bio-description {
    color: var(--text-body);
    line-height: 1.8;
}

.expertise-grid {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.expertise-grid h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expertise-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.expertise-list li::before {
    content: '→';
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Remove the arrow from the HTML since we're adding it via CSS */
.expertise-list li {
    padding-left: 0.5rem;
}

.bio-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.profile-image {
    flex: 0.8;
    height: 500px;
    background-image: url('images/profile.gif');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Service Sections */
.ai-section, .marketing-section {
    padding: 8rem 0;
}

.ai-section {
    background-color: var(--background);
}

.marketing-section {
    background-color: var(--background);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ai-section .service-card {
    background-color: rgba(17, 17, 17, 0.7);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
    background-color: var(--card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--background);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

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

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-job {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-rating {
    margin-top: 0.5rem;
}

.star {
    color: var(--primary);
    font-size: 1.1rem;
}

.star.empty {
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    min-height: 360px;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.contact-card-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .icon-circle {
    transform: scale(1.1);
}

.sales-icon {
    background-color: #ffeee6;
    color: var(--primary);
}

.support-icon {
    background-color: #e6f3ff;
    color: #0066cc;
}

.contact-card h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-card p {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.contact-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.contact-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

/* Contact Process Overview */
.contact-process-overview {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.process-intro h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-intro p {
    color: var(--text-body);
    font-size: 1.1rem;
}

.process-steps-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-light);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    min-width: 140px;
}

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

.step-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.step-text strong {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.step-text span {
    color: var(--text-body);
    font-size: 0.8rem;
}

.step-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Form Benefits */
.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-body);
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Contact Trust Section */
.contact-trust-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #eee;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.trust-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-stat strong {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.trust-stat span {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.trust-message p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Mobile Process Overview */
    .contact-process-overview {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .process-steps-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .step-inline {
        width: 100%;
        justify-content: flex-start;
        min-width: auto;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }

    /* Mobile Trust Section */
    .contact-trust-section {
        padding: 1.5rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-stat strong {
        font-size: 1.3rem;
    }
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--background);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-nav h3 {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact h3 {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-legal h3 {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-nav ul,
    .footer-contact ul,
    .footer-legal ul {
        align-items: center;
    }

    .footer-legal,
    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .service-card,
    .testimonial-card,
    .contact-card {
        margin: 0;
        padding: 1.25rem;
    }
    
    .section-header {
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 0.75rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.75rem 1rem;
    }
}

/* Tablet and medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: clamp(3rem, 5vw, 4rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .global-stats {
        gap: 4rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .expertise-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background-color: var(--background);
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--card-hover);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding-right: 2rem;
    color: var(--text);
    line-height: 1.5;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.plus-icon, .minus-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.minus-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--card-bg);
}

.faq-answer p {
    margin: 0 0 1.25rem 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer .card-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.faq-cta {
    margin: 0.5rem 0 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Active state */
.faq-item.active {
    background-color: var(--card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--border-color);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .plus-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .minus-icon {
    opacity: 1;
    transform: rotate(0);
}

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

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        width: 80%;
        max-width: 300px;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 100;
        padding: 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        padding: 6rem 0 4rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
    }

    /* Bio Section Mobile */
    .bio-section {
        padding: 4rem 0;
    }
    
    .bio-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .profile-image {
        width: 100%;
        height: 250px;
        margin: 0 auto;
    }

    .bio-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .expertise-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .expertise-grid {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    /* Service Sections Mobile */
    .ai-section, .marketing-section {
        padding: 4rem 0;
    }

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

    .service-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Global Section Mobile */
    .global-section {
        padding: 4rem 0;
    }

    .global-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
    
    #interactive-map {
        height: 250px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .testimonial-header {
        text-align: center;
    }

    .testimonial-text {
        font-size: 1rem;
        text-align: center;
    }

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

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

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

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

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

    /* Contact Section Mobile */
    .contact-section {
        padding: 4rem 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        min-height: auto;
        margin: 0 0.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .contact-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-nav ul {
        align-items: center;
        gap: 1rem;
    }

    .footer-nav h3 {
        margin-bottom: 1rem;
    }

    .footer-legal {
        margin-top: 1rem;
        padding-top: 1.5rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.5;
        margin: 1rem auto;
        padding: 0 1rem;
    }

    /* Legal Pages Mobile */
    .legal-content {
        padding: 4rem 0;
    }

    .legal-header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }

    .legal-section {
        margin-bottom: 2rem;
        padding: 0;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-info {
        min-width: auto;
        width: 100%;
        padding: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .expertise-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-legal {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Global Reach Section */
.global-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.global-map-container {
    max-width: 1100px;
    margin: 2rem auto 4rem;
    text-align: center;
}

.global-map {
    position: relative;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

#interactive-map {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto;
    position: relative;
}

#interactive-map svg {
    width: 100%;
    height: 100%;
}

#interactive-map path {
    fill: #2a2a2a;
    stroke: #444;
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

#interactive-map path:hover {
    fill: #3a3a3a;
    stroke: #666;
    stroke-width: 1;
}

#interactive-map path.highlighted {
    fill: var(--primary);
    stroke: var(--primary-dark);
    stroke-width: 1;
}

#interactive-map path.highlighted:hover {
    fill: var(--primary-dark);
}

.map-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
}

.global-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.stat-number .highlight {
    font-size: 3rem;
    position: relative;
    top: -10px;
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.stat-item:hover .stat-number {
    animation: pulse-scale 1s ease-in-out;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .global-stats {
        flex-direction: column;
        gap: 3rem;
    }
    
    #interactive-map {
        height: 300px;
    }
}

/* Light background sections text color overrides */
.bio-section .bio-intro,
.bio-section .bio-description,
.global-section .section-description,
.marketing-section .section-description {
    color: var(--text-body);
}

.bio-section .expertise-list li,
.marketing-section .service-card p {
    color: var(--text-body);
}

.bio-section .section-header h2,
.global-section .section-header h2,
.marketing-section .section-header h2 {
    color: var(--text-dark);
}

.marketing-section .service-card h3 {
    color: var(--text-dark);
}

.stat-number {
    color: var(--text-dark);
}

.stat-label {
    color: var(--text-muted);
}

/* Typography improvements */
h1, h2, h3 {
    color: var(--text-dark);
}

p {
    color: var(--text-body);
}

/* Contact cards */
.contact-card h3 {
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-body);
}

/* Footer */
.footer-nav h3 {
    color: var(--text);
}

.footer-nav a {
    color: var(--text-muted);
}

.footer-legal p,
.footer-content p {
    color: var(--text-muted);
}

/* Dark background sections text overrides */
.ai-section .section-description,
.testimonials-section .section-description,
.faq-section .section-description {
    color: var(--text-muted);
}

.ai-section .service-card p,
.testimonials-section .testimonial-text,
.faq-section .faq-answer p {
    color: var(--text-muted);
}

.ai-section .service-card h3,
.testimonials-section .testimonial-name,
.faq-section .faq-question h3 {
    color: var(--text);
}

.ai-section .section-header h2,
.testimonials-section .section-header h2,
.faq-section .section-header h2 {
    color: var(--text);
}

/* Marketing section card overrides */
.marketing-section .service-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-section .service-card:hover {
    background-color: var(--card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--border-color);
}

.marketing-section .service-card h3 {
    color: var(--text);
}

.marketing-section .service-card p {
    color: var(--text-muted);
}

.marketing-section .card-link {
    color: var(--primary);
}

.marketing-section .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Remove the light background text overrides for marketing section */
.bio-section .bio-intro,
.bio-section .bio-description,
.global-section .section-description {
    color: var(--text-body);
}

.bio-section .expertise-list li {
    color: var(--text-body);
}

.bio-section .section-header h2,
.global-section .section-header h2 {
    color: var(--text-dark);
}

/* Update marketing section header color */
.marketing-section .section-header h2 {
    color: var(--text);
}

.marketing-section .section-description {
    color: var(--text-muted);
}

/* AI and Project Management sections */
.ai-section .section-header h2,
.project-management-section .section-header h2 {
    color: var(--text);
}

.ai-section .section-description,
.project-management-section .section-description {
    color: var(--text-muted);
}

.ai-section .service-card,
.project-management-section .service-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-section .service-card:hover,
.project-management-section .service-card:hover {
    background-color: var(--card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--border-color);
}

.ai-section .service-card h3,
.project-management-section .service-card h3 {
    color: var(--text);
}

.ai-section .service-card p,
.project-management-section .service-card p {
    color: var(--text-muted);
}

/* Update contact buttons to match theme */
.contact-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.contact-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

/* Legal Pages Styles */
.legal-content {
    padding: 8rem 0;
    min-height: calc(100vh - 300px);
}

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

.legal-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 1rem;
}

.legal-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    color: var(--text);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-info {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
    min-width: 300px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 6rem 0;
    }

    .legal-section {
        padding: 0 1rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}

/* Enhanced Sales Funnel Styles */

/* Form Landing Hero Section */
.form-landing-hero {
    background: var(--hero-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
}

.form-landing-hero .hero-overlay {
    display: none;
}

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

.form-landing-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Enhanced Hero Section */
.hero-problem {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-text {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.hero-value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 20px;
    color: var(--text);
    font-weight: 500;
}

.value-icon {
    font-size: 1.2rem;
}

.hero-urgency {
    margin-top: 2rem;
    text-align: center;
}

.urgency-text {
    background: linear-gradient(135deg, #ff4444, #ff6b00);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.95rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Lead Magnets Section */
.lead-magnets-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.lead-magnet-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lead-magnet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.lead-magnet-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.magnet-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.lead-magnet-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.lead-magnet-card p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.magnet-benefits {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.magnet-benefits li {
    color: var(--text-body);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.magnet-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.magnet-cta {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.magnet-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.magnet-cta.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Consultation Process Section */
.consultation-process {
    padding: 6rem 0;
    background: var(--background);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(255, 107, 0, 0.3));
    transform: translateX(-50%);
    z-index: 0;
}

.process-step {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--border-color);
}

.step-number {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    transform: translateY(-50%);
    z-index: 2;
}

.step-content {
    flex-grow: 1;
    padding-left: 3rem;
}

.step-content h3 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.feature {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.service-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.service-preview-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-preview-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-preview-card p {
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-benefits {
    list-style: none;
    text-align: left;
}

.service-benefits li {
    color: var(--text-body);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Case Studies Section */
.case-studies-section {
    padding: 6rem 0;
    background: var(--background);
}

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

.case-study-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--border-color);
}

.case-study-header {
    margin-bottom: 2rem;
}

.case-study-header h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.industry-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.result-metric {
    text-align: center;
}

.metric-number {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.case-study-quote {
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.case-study-quote p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.case-study-quote cite {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: normal;
}

/* Multiple CTA Section */
.multiple-cta-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.cta-option-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.cta-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-option-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
}

.cta-option-card.urgent {
    border-color: #ff4444;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.featured-badge, .urgent-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.urgent-badge {
    background: #ff4444;
}

.option-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-header h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.option-subtitle {
    color: var(--text-body);
    font-size: 0.9rem;
    margin: 0;
}

.option-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.option-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.option-benefits li {
    color: var(--text-body);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.option-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.option-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 500;
}

.time-icon {
    font-size: 1.1rem;
}

.option-cta {
    width: 100%;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-cta.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.option-cta.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.option-cta.urgent {
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.option-cta:hover {
    transform: translateY(-2px);
}

/* Trust and Urgency Section */
.cta-trust-urgency {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.urgency-timer {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.urgency-message {
    color: #ff4444;
    font-weight: 600;
    margin-bottom: 1rem;
}

.availability-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.availability-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff4444 0%, var(--primary) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.availability-text {
    color: var(--text-body);
    font-size: 0.9rem;
    margin: 0;
}

.trust-guarantees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.guarantee-icon {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Mobile Responsive for Sales Funnel */
@media (max-width: 768px) {
    .form-landing-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .form-landing-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-value-props {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .value-prop {
        justify-content: center;
    }
    
    .lead-magnets-grid,
    .case-studies-grid,
    .cta-options-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .process-steps {
        gap: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .process-steps::before {
        left: 20px;
        transform: none;
    }
    
    .step-number {
        left: 0;
        position: relative;
        top: auto;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .step-content {
        padding-left: 0;
    }
    
    .case-study-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cta-trust-urgency {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lead-magnet-card,
    .case-study-card,
    .cta-option-card,
    .process-step,
    .service-preview-card {
        margin: 0;
    }
    
    .step-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-landing-hero h1 {
        font-size: 2rem;
        margin: 1.5rem 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-problem {
        margin: 0 0.5rem 2rem;
        padding: 1rem;
    }
    
    .problem-text {
        font-size: 1rem;
    }
    
    .urgency-text {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .case-study-results {
        padding: 1rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    opacity: 0.1;
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

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

.cta-urgency-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-icon {
    font-size: 1.2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.primary-cta-large, .secondary-cta-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 300px;
    text-align: center;
}

.primary-cta-large {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary);
}

.primary-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: #ff8533;
    border-color: #ff8533;
}

.secondary-cta-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.secondary-cta-large:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-main-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.cta-sub-text {
    font-size: 0.95rem;
    opacity: 0.8;
    display: block;
}

.cta-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
}

.final-urgency-message {
    margin-bottom: 3rem;
}

.final-urgency-message p {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 1rem;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.1rem;
}

/* Mobile Responsive for Final CTA */
@media (max-width: 768px) {
    .cta-urgency-header h2 {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .final-cta-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .primary-cta-large, .secondary-cta-large {
        min-width: 280px;
        padding: 1.5rem 2rem;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-urgency-header h2 {
        font-size: 2rem;
    }
    
    .primary-cta-large, .secondary-cta-large {
        min-width: 250px;
        padding: 1.5rem 1.5rem;
    }
    
    .cta-main-text {
        font-size: 1.1rem;
    }
    
    .final-urgency-message p {
                 padding: 0.75rem 1.5rem;
         font-size: 0.9rem;
     }
}

/* Networking Page Styles */

/* Networking Hero Section */
.networking-hero {
    padding: 8rem 0 4rem;
    background: var(--hero-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.networking-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.profile-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.profile-info h1 {
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-info .title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-info .tagline {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.quick-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.quick-stats .stat-number {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.quick-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Quick Connect Section */
.quick-connect {
    padding: 6rem 0;
    background: var(--light-bg);
}

.connect-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.connect-btn.primary {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
}

.connect-btn.linkedin {
    border-color: #0077b5;
}

.connect-btn.linkedin:hover {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

.connect-btn.phone {
    border-color: #28a745;
}

.connect-btn.phone:hover {
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

.connect-btn.form {
    border-color: #6f42c1;
}

.connect-btn.form:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f5ff 100%);
}

.btn-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.btn-content {
    flex-grow: 1;
    text-align: left;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.btn-subtitle {
    font-size: 0.95rem;
    color: var(--text-body);
    opacity: 0.8;
}

/* What I Do Section */
.what-i-do {
    padding: 6rem 0;
    background: var(--background);
}

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

.specialty-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--border-color);
}

.specialty-card h3 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialty-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.specialty-benefits {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.benefit {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* Recent Success Section */
.recent-success {
    padding: 6rem 0;
    background: var(--light-bg);
}

.success-highlight {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.success-results .result-metric {
    text-align: center;
}

.success-results .metric-number {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.success-results .metric-label {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.success-quote {
    text-align: center;
}

.success-quote p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.success-quote cite {
    color: var(--text-body);
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 500;
}

/* Networking CTA Section */
.networking-cta {
    padding: 6rem 0;
    background: var(--background);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.cta-btn.primary:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.response-promise {
    background: rgba(255, 107, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    display: inline-block;
}

.response-promise p {
    color: var(--primary);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive for Networking Page */
@media (max-width: 768px) {
    .networking-hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .networking-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .avatar-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-info .title {
        font-size: 1.1rem;
    }
    
    .profile-info .tagline {
        font-size: 1rem;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .connect-options {
        grid-template-columns: 1fr;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .connect-btn {
        text-align: center;
    }
    
    .btn-content {
        text-align: center;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .success-highlight {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem;
    }
    
    .success-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .networking-card {
        padding: 1.5rem;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .quick-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .connect-btn {
        padding: 1.25rem;
    }
    
         .success-results .metric-number {
         font-size: 1.8rem;
     }
}

/* 404 Error Page Styles */

/* 404 Main Section */
.error-404 {
    padding: 8rem 0 4rem;
    background: var(--hero-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

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

.error-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.error-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

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

.error-message {
    margin-bottom: 3rem;
}

.error-message h1 {
    color: var(--text);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-subtitle {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.error-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.error-btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.error-btn.primary:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.error-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.error-btn.tertiary {
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.error-btn.tertiary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Helpful Links Section */
.helpful-links {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.link-card p {
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.link-cta {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-cta:hover {
    color: #ff8533;
    transform: translateX(5px);
}



/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
    .error-404 {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .error-visual {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
    
    .error-message h1 {
        font-size: 2.5rem;
    }
    
    .error-subtitle {
        font-size: 1.2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    

}

@media (max-width: 480px) {
    .error-404 {
        padding: 4rem 0 2rem;
    }
    
    .error-number {
        font-size: 4.5rem;
    }
    
    .error-message h1 {
        font-size: 2rem;
    }
    
    .error-subtitle {
        font-size: 1.1rem;
    }
    
    .link-card {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background) 0%, #1a1a1a 100%);
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    background: var(--card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.category-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover:before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    color: var(--text);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.category-stats .stat {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.category-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: auto;
}

/* Enhanced Service Cards */
.service-card.enhanced {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.enhanced:hover {
    background: var(--card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.service-card.enhanced .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    background: none;
    width: auto;
    height: auto;
}

.service-card.enhanced h3 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card.enhanced p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-benefits .benefit {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.service-pricing {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: var(--light-bg);
    color: var(--text-dark);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.case-study {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.case-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 15px;
}

.case-info h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.industry {
    color: var(--text-body);
    font-size: 1rem;
    font-weight: 500;
}

.case-challenge,
.case-solution,
.case-results {
    margin-bottom: 2rem;
}

.case-challenge h4,
.case-solution h4,
.case-results h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-challenge p,
.case-solution p,
.case-results p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.metric {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    color: white;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    color: white;
}

.case-quote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.case-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-quote cite {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

.case-studies-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    color: white;
}

.case-studies-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.case-studies-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.case-studies-cta .cta-button {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.case-studies-cta .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .services-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .category-card h3 {
        font-size: 1.5rem;
    }
    
    .category-card p {
        font-size: 1rem;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .case-study {
        padding: 2rem;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .case-studies-cta {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .case-studies-cta h3 {
        font-size: 1.5rem;
    }
    
    .case-studies-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .service-card.enhanced {
        padding: 1.5rem;
    }
    
    .service-card.enhanced .service-icon {
        font-size: 2rem;
    }
    
    .case-study {
        padding: 1.5rem;
    }
    
    .metric {
        padding: 1rem 0.5rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
} 