/* =================================================================
   ENHANCED STYLES FOR UMURIMO GLOBAL
   Professional UI Improvements - Mobile-First Approach
   ================================================================= */

/* =================================================================
   GLOBAL IMPROVEMENTS
   ================================================================= */

/* Typography Scale */
:root {
    /* Typography sizes */
    --font-size-h1: clamp(2rem, 5vw, 3.5rem);
    --font-size-h2: clamp(1.5rem, 4vw, 2.25rem);
    --font-size-h3: clamp(1.125rem, 3vw, 1.5rem);
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;

    /* Spacing */
    --section-padding-mobile: 40px;
    --section-padding-desktop: 80px;
    --container-max-width: 1200px;
    --form-max-width: 700px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Container Utility */
.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--section-padding-mobile) 1rem;
}

@media (min-width: 768px) {
    .section-container {
        padding: var(--section-padding-desktop) 2rem;
    }
}

/* Typography Scale Application */
h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* =================================================================
   BUTTON SYSTEM
   ================================================================= */

/* Primary Button */
.btn-primary,
.cta-button.primary,
.submit-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--primary-white, #fff);
    background: var(--primary-accent, #0A1F5E);
    border: 2px solid var(--primary-accent, #0A1F5E);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.cta-button.primary:hover,
.submit-btn:hover {
    background: var(--primary-dark, #2D2D34);
    border-color: var(--primary-dark, #2D2D34);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary,
.cta-button.secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--primary-accent, #0A1F5E);
    background: var(--primary-white, #fff);
    border: 2px solid var(--primary-accent, #0A1F5E);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover,
.cta-button.secondary:hover {
    background: var(--lavender-100, #f3f9fd);
    box-shadow: var(--shadow-sm);
}

/* Outline Button */
.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: var(--primary-accent, #0A1F5E);
    background: transparent;
    border: 2px solid var(--lavender-300, #D0C4E3);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-outline:hover {
    background: var(--lavender-100, #f3f9fd);
    border-color: var(--primary-medium, #9B8FB5);
}

/* =================================================================
   HOMEPAGE HERO SECTION
   ================================================================= */

.hero-box {
    padding: var(--section-padding-mobile) 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-box {
        padding: var(--section-padding-desktop) 2rem;
    }
}

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

.main-heading {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark, #2D2D34);
}

.description {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-600, #495057);
}

/* =================================================================
   SOLUTIONS ROUTER (HOMEPAGE)
   ================================================================= */

.solutions-router {
    padding: var(--section-padding-mobile) 1rem;
    background: var(--neutral-50, #F8F9FA);
}

@media (min-width: 768px) {
    .solutions-router {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.solutions-router h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-dark, #2D2D34);
}

.router-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 640px) {
    .router-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .router-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}

.router-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.router-button:hover {
    border-color: var(--primary-medium, #9B8FB5);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.router-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 12px;
    color: var(--primary-accent, #0A1F5E);
}

.router-icon .svg-icon {
    width: 32px;
    height: 32px;
}

.router-button h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark, #2D2D34);
}

.router-button p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
    margin: 0;
}

/* =================================================================
   SERVICES PAGE
   ================================================================= */

.services-page {
    padding: var(--section-padding-mobile) 1rem;
}

@media (min-width: 768px) {
    .services-page {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.services-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-header h1 {
    margin-bottom: 1rem;
}

.services-header .highlight {
    color: var(--primary-accent, #0A1F5E);
}

/* Path Selector (Choose Your Path) */
.path-selector {
    max-width: var(--container-max-width);
    margin: 0 auto 4rem;
    padding: 2rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 12px;
}

.path-selector h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.path-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .path-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.path-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-300, #D0C4E3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-dark, #2D2D34);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .path-button {
        flex: 0 0 auto;
    }
}

.path-button:hover {
    background: var(--primary-accent, #0A1F5E);
    border-color: var(--primary-accent, #0A1F5E);
    color: var(--primary-white, #fff);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.path-button .svg-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Service Pillars */
.service-pillar {
    max-width: var(--container-max-width);
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
    background: var(--primary-white, #fff);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.service-pillar:nth-child(even) {
    background: var(--neutral-50, #F8F9FA);
}

.pillar-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--lavender-200, #E6DFF0);
}

.pillar-header h2 {
    color: var(--primary-accent, #0A1F5E);
    margin-bottom: 0.75rem;
}

.pillar-header p {
    font-size: 1.125rem;
    color: var(--neutral-600, #495057);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem 1.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-pillar:nth-child(even) .service-card {
    background: var(--primary-white, #fff);
}

.service-card:hover {
    border-color: var(--primary-medium, #9B8FB5);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 10px;
    color: var(--primary-accent, #0A1F5E);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark, #2D2D34);
}

.service-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-medium, #9B8FB5);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
    margin-bottom: 1.25rem;
}

.learn-more-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-accent, #0A1F5E);
    background: transparent;
    border: 1px solid var(--lavender-300, #D0C4E3);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-base);
}

.learn-more-btn:hover {
    background: var(--primary-accent, #0A1F5E);
    color: var(--primary-white, #fff);
    border-color: var(--primary-accent, #0A1F5E);
}

/* =================================================================
   TEAM SECTION
   ================================================================= */

.team-section {
    padding: var(--section-padding-mobile) 1rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .team-section {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark, #2D2D34);
}

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

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-photo-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 50%;
    color: var(--primary-medium, #9B8FB5);
}

.team-photo-placeholder .svg-icon {
    width: 60px;
    height: 60px;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark, #2D2D34);
}

.team-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-medium, #9B8FB5);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
}

/* =================================================================
   HOW IT WORKS SECTION
   ================================================================= */

.how-it-works {
    padding: var(--section-padding-mobile) 1rem;
    background: var(--neutral-50, #F8F9FA);
}

@media (min-width: 768px) {
    .how-it-works {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark, #2D2D34);
}

/* Steps Grid - Mobile: Vertical Timeline */
.steps-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

/* Vertical connector line for mobile */
@media (max-width: 1023px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 60px;
        bottom: 60px;
        width: 3px;
        background: var(--lavender-300, #D0C4E3);
    }
}

/* Desktop: Horizontal Stepper */
@media (min-width: 1024px) {
    .steps-grid {
        flex-direction: row;
        gap: 1.5rem;
        position: relative;
    }

    /* Horizontal connector line for desktop */
    .steps-grid::before {
        content: '';
        position: absolute;
        left: 10%;
        right: 10%;
        top: 32px;
        height: 3px;
        background: var(--lavender-300, #D0C4E3);
        z-index: 0;
    }
}

.step-card {
    position: relative;
    padding: 2rem 1.5rem 2rem 4.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

@media (min-width: 1024px) {
    .step-card {
        flex: 1;
        padding: 3rem 1.5rem 2rem;
        text-align: center;
    }
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-accent, #0A1F5E);
    color: var(--primary-white, #fff);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 0 0 5px var(--primary-white, #fff);
    z-index: 1;
}

@media (min-width: 1024px) {
    .step-number {
        left: 50%;
        top: -8px;
        transform: translateX(-50%);
    }
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    color: var(--primary-dark, #2D2D34);
}

@media (min-width: 1024px) {
    .step-card h3 {
        margin-top: 1.5rem;
    }
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
}

.how-it-works-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-accent, #0A1F5E);
    text-decoration: none;
    transition: var(--transition-fast);
}

.cta-link:hover {
    color: var(--primary-dark, #2D2D34);
    text-decoration: underline;
}

/* =================================================================
   HOW IT WORKS PAGE - PROCESS STEPS RESPONSIVE
   ================================================================= */

.process-step {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--lavender-200, #E6DFF0);
}

.step-number-large {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-accent, #0A1F5E);
    color: var(--primary-white, #fff);
    border-radius: 12px;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-header h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.step-timeline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-medium, #9B8FB5);
}

.step-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: var(--primary-accent, #0A1F5E);
}

/* Tablet responsive adjustments */
@media (max-width: 1023px) and (min-width: 769px) {
    .process-step {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .step-header {
        gap: 1.25rem;
    }

    .step-number-large {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .step-header h2 {
        font-size: 1.375rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .process-step {
        margin: 0 auto 2rem;
        padding: 1.5rem;
        border-radius: 8px;
    }

    .step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .step-number-large {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .step-header div:not(.step-number-large) {
        width: 100%;
    }

    .step-header h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .step-timeline {
        font-size: 0.8rem;
    }

    .step-content {
        text-align: left;
    }

    .step-content h3 {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .step-content ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .process-step {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .step-header {
        gap: 0.75rem;
    }

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

    .step-header h2 {
        font-size: 1.125rem;
    }
}

.step-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.step-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--neutral-600, #495057);
}

/* Common Questions */
.common-questions {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
}

.common-questions h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.question-card {
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    background: var(--lavender-100, #f3f9fd);
    border-left: 4px solid var(--primary-accent, #0A1F5E);
    border-radius: 8px;
}

.question-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark, #2D2D34);
}

.question-card p {
    line-height: 1.6;
    color: var(--neutral-600, #495057);
}

/* CTA Section */
.cta-section {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 16px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--neutral-600, #495057);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* =================================================================
   GET STARTED FORM
   ================================================================= */

.content-page form {
    max-width: var(--form-max-width);
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
    .content-page form {
        padding: 1.5rem;
    }
}

.content-page h1 {
    max-width: var(--form-max-width);
    margin: 0 auto 1rem;
    text-align: center;
}

.content-page > p {
    max-width: var(--form-max-width);
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.125rem;
    color: var(--neutral-600, #495057);
}

.content-page form h2 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--lavender-200, #E6DFF0);
    color: var(--primary-dark, #2D2D34);
}

.content-page form h2:first-child {
    margin-top: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark, #2D2D34);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--primary-dark, #2D2D34);
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-300, #D0C4E3);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent, #0A1F5E);
    box-shadow: 0 0 0 3px rgba(10, 31, 94, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400, #ADB5BD);
}

/* Social Proof Block */

/* =================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================= */

/* Mobile: < 640px - Default styles above */
/* Tablet: 640px - 1023px */
/* Desktop: >= 1024px */

@media (min-width: 640px) {
    :root {
        --font-size-base: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --font-size-base: 1.125rem;
    }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* =================================================================
   ACCESSIBILITY IMPROVEMENTS
   ================================================================= */

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-accent, #0A1F5E);
    outline-offset: 2px;
}

/* Improve link accessibility */
a:focus-visible {
    outline: 3px solid var(--primary-accent, #0A1F5E);
    outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-accent, #0A1F5E);
    color: var(--primary-white, #fff);
    border-radius: 8px;
}

/* =================================================================
   PHASE 2 ADDITIONS
   ================================================================= */

/* =================================================================
   CAREERS PAGE
   ================================================================= */

.careers-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-padding-mobile) 1rem;
}

@media (min-width: 768px) {
    .careers-page {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.careers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.careers-header h1 {
    margin-bottom: 1rem;
}

.careers-header .highlight {
    color: var(--primary-accent, #0A1F5E);
}

/* Culture Section */
.culture-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 16px;
}

.culture-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark, #2D2D34);
}

.culture-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--neutral-600, #495057);
    margin-bottom: 1.5rem;
}

.culture-content p:last-child {
    margin-bottom: 0;
}

/* Job Openings Section */
.openings-section {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.openings-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--neutral-600, #495057);
    margin-bottom: 2.5rem;
}

.jobs-grid {
    display: grid;
    gap: 2rem;
}

/* Job Cards */
.job-card {
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
}

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

.job-header h3 {
    font-size: 1.5rem;
    color: var(--primary-dark, #2D2D34);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-type,
.job-location {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    background: var(--lavender-100, #f3f9fd);
    color: var(--primary-accent, #0A1F5E);
    border-radius: 20px;
    font-weight: 600;
}

.job-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-100, #f3f9fd);
    border: 1px solid var(--lavender-300, #D0C4E3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.job-toggle:hover {
    background: var(--primary-accent, #0A1F5E);
    border-color: var(--primary-accent, #0A1F5E);
    color: var(--primary-white, #fff);
}

.job-toggle svg {
    transition: transform 0.3s ease;
}

.job-summary {
    margin-bottom: 1rem;
}

.job-summary p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
}

.job-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lavender-200, #E6DFF0);
}

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

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h4 {
    font-size: 1.125rem;
    color: var(--primary-dark, #2D2D34);
    margin-bottom: 0.75rem;
}

.job-section ul {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.job-section li {
    font-size: 0.95rem;
    color: var(--neutral-600, #495057);
    margin-bottom: 0.5rem;
}

.job-apply-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lavender-200, #E6DFF0);
    text-align: center;
}

.apply-btn {
    min-width: 200px;
}

/* Apply Section */
.apply-section {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    background: var(--neutral-50, #F8F9FA);
    border-radius: 16px;
}

.apply-container {
    text-align: center;
}

.apply-container h2 {
    margin-bottom: 1rem;
}

.apply-container > p {
    font-size: 1.125rem;
    color: var(--neutral-600, #495057);
    margin-bottom: 3rem;
}

.apply-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .apply-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

.apply-method {
    padding: 2rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    text-align: center;
}

.apply-method .svg-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-accent, #0A1F5E);
    margin: 0 auto 1.5rem;
}

.apply-method h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark, #2D2D34);
}

.apply-method p {
    font-size: 0.95rem;
    color: var(--neutral-600, #495057);
    margin-bottom: 0.75rem;
}

.email-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-accent, #0A1F5E);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.email-link:hover {
    background: var(--lavender-100, #f3f9fd);
}

.small-text {
    font-size: 0.875rem;
    color: var(--neutral-500, #6C757D);
    margin-top: 0.5rem;
}

.checklist {
    text-align: left;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-accent, #0A1F5E);
    font-weight: 700;
    font-size: 1.125rem;
}

.apply-cta {
    margin-top: 3rem;
}

.apply-cta .btn-primary {
    min-width: 250px;
    margin-bottom: 1rem;
}

.privacy-note {
    font-size: 0.875rem;
    color: var(--neutral-500, #6C757D);
    margin-top: 1.5rem;
}

.privacy-note a {
    color: var(--primary-accent, #0A1F5E);
    text-decoration: underline;
}

/* =================================================================
   TESTIMONIALS SECTION
   ================================================================= */
.testimonials-section {
    padding: var(--section-padding-mobile) 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark, #2D2D34);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    padding: 2.5rem 2rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.quote-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 50%;
    color: var(--primary-accent, #0A1F5E);
    margin-bottom: 1.5rem;
}

.quote-icon .svg-icon {
    width: 24px;
    height: 24px;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--neutral-700, #343A40);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 2px solid var(--lavender-200, #E6DFF0);
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark, #2D2D34);
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.9rem;
    color: var(--primary-medium, #9B8FB5);
}

/* Client Industries */
.client-industries {
    padding: var(--section-padding-mobile) 1rem;
    background: var(--neutral-50, #F8F9FA);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .client-industries {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.client-industries h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark, #2D2D34);
}

.client-industries .section-description {
    text-align: center;
    margin-bottom: 2.5rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.industry-badge:hover {
    border-color: var(--primary-medium, #9B8FB5);
    box-shadow: var(--shadow-sm);
}

.industry-badge .svg-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-accent, #0A1F5E);
}

.industry-badge span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark, #2D2D34);
}

/* =================================================================
   FORM TRUST BLOCK
   ================================================================= */


/* =================================================================
   RESOURCES PAGE
   ================================================================= */

.resources-page {
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--section-padding-mobile) 1rem;
}

@media (min-width: 768px) {
    .resources-page {
        padding: var(--section-padding-desktop) 2rem;
    }
}

.resources-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.resources-header h1 {
    margin-bottom: 1rem;
}

.resources-header .highlight {
    color: var(--primary-accent, #0A1F5E);
}

/* Resource Section */
.resource-section {
    margin-bottom: 5rem;
}

.resource-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark, #2D2D34);
}

/* Company Profile Featured */
.company-profile-section {
    max-width: 900px;
    margin: 0 auto 5rem;
}

.resource-featured {
    display: grid;
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 16px;
}

@media (min-width: 768px) {
    .resource-featured {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

.resource-content {
    display: flex;
    gap: 2rem;
}

@media (max-width: 640px) {
    .resource-content {
        flex-direction: column;
    }
}

.resource-icon-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-white, #fff);
    border-radius: 16px;
    color: var(--primary-accent, #0A1F5E);
}

.resource-icon-large .svg-icon {
    width: 48px;
    height: 48px;
}

.resource-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark, #2D2D34);
}

.resource-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
    margin-bottom: 1rem;
}

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

.resource-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--neutral-600, #495057);
}

.resource-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-accent, #0A1F5E);
    font-weight: 700;
    font-size: 1.25rem;
}

.resource-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn .svg-icon {
    width: 20px;
    height: 20px;
}

.resource-size {
    font-size: 0.875rem;
    color: var(--neutral-500, #6C757D);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.resource-card {
    padding: 2rem 1.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-medium, #9B8FB5);
}

.resource-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 12px;
    color: var(--primary-accent, #0A1F5E);
    margin-bottom: 1.5rem;
}

.resource-icon .svg-icon {
    width: 32px;
    height: 32px;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark, #2D2D34);
}

.resource-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.resource-includes {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.resource-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-600, #495057);
}

.resource-includes li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-medium, #9B8FB5);
}

.download-btn-small {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
}

/* Guides List */
.guides-list {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.guide-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-base);
}

.guide-link:hover {
    border-color: var(--primary-medium, #9B8FB5);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.guide-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 50%;
    color: var(--primary-accent, #0A1F5E);
}

.guide-icon .svg-icon {
    width: 24px;
    height: 24px;
}

.guide-content {
    flex-grow: 1;
}

.guide-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark, #2D2D34);
}

.guide-content p {
    font-size: 0.9rem;
    color: var(--neutral-600, #495057);
    margin: 0;
}

.guide-arrow {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary-medium, #9B8FB5);
    transition: var(--transition-base);
}

.guide-link:hover .guide-arrow {
    transform: translateX(4px);
}

/* Resource CTA */
.resource-cta {
    text-align: center;
    max-width: 600px;
    margin: 5rem auto 0;
    padding: 3rem 2rem;
    background: var(--lavender-100, #f3f9fd);
    border-radius: 16px;
}

.resource-cta h2 {
    margin-bottom: 1rem;
}

.resource-cta p {
    font-size: 1.125rem;
    color: var(--neutral-600, #495057);
    margin-bottom: 2rem;
}

/* =================================================================
   SERVICES PAGE ADDITIONS
   ================================================================= */

.pillar-note {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--lavender-100, #f3f9fd);
    border-left: 4px solid var(--primary-medium, #9B8FB5);
    border-radius: 8px;
}

.pillar-note .svg-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-accent, #0A1F5E);
    margin-top: 2px;
}

.pillar-note span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-700, #343A40);
}

/* =================================================================
   ORGANIZATIONAL CHART
   ================================================================= */

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}

.org-level.level-1 {
    margin-bottom: 1rem;
}

.org-box {
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 160px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.org-box:hover {
    border-color: var(--primary-medium, #9B8FB5);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.org-box.md-role {
    background: var(--lavender-100, #f3f9fd);
    border-color: var(--primary-accent, #0A1F5E);
    border-width: 2px;
    min-width: 200px;
}

.role-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark, #2D2D34);
    line-height: 1.4;
}

.org-box.md-role .role-title {
    font-size: 1.125rem;
    color: var(--primary-accent, #0A1F5E);
    font-weight: 700;
}

/* Connecting lines */
.org-connector {
    width: 3px;
    height: 2rem;
    background: var(--lavender-300, #D0C4E3);
    position: relative;
    margin: 0 auto;
}

.org-connector::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-width: 90vw;
    height: 3px;
    background: var(--lavender-300, #D0C4E3);
}

.org-connector::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -200px;
    right: -200px;
    max-width: 45vw;
    width: 100%;
    height: 3px;
    background: var(--lavender-300, #D0C4E3);
}

.org-level.level-2::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lavender-300, #D0C4E3);
    width: 100%;
    max-width: calc(100% + 4rem);
}

/* Vertical connectors for level 2 boxes */
.org-level.level-2 .org-box::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 3px;
    height: 2rem;
    background: var(--lavender-300, #D0C4E3);
    transform: translateX(-50%);
}

.org-level.level-2 {
    margin-top: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .org-level {
        gap: 1rem;
    }

    .org-box {
        padding: 1.25rem 1.5rem;
        min-width: 140px;
        font-size: 0.9rem;
    }

    .role-title {
        font-size: 0.95rem;
    }

    .org-box.md-role .role-title {
        font-size: 1rem;
    }

    .org-connector::before {
        width: 250px;
    }

    .org-connector::after {
        width: 100%;
        left: -150px;
    }

    .org-level.level-2::before {
        max-width: 100%;
    }
}

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

.footer-links a {
    color: var(--neutral-600, #495057);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-accent, #0A1F5E);
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: var(--neutral-500, #6C757D);
}

/* =================================================================
   PHASE 3 ADDITIONS - CONVERSION OPTIMIZATION
   ================================================================= */

/* =================================================================
   REUSABLE CTA BANNER COMPONENT
   ================================================================= */

.cta-banner {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--lavender-100, #f3f9fd) 0%, var(--lavender-200, #E6DFF0) 100%);
    border-radius: 16px;
    border: 2px solid var(--lavender-300, #D0C4E3);
    box-shadow: var(--shadow-md);
}

.cta-banner h2 {
    font-size: 1.75rem;
    color: var(--primary-dark, #2D2D34);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--neutral-600, #495057);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    min-width: 200px;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.cta-banner .btn-secondary {
    min-width: 200px;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .cta-banner .btn-primary,
    .cta-banner .btn-secondary {
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

/* =================================================================
   NAVIGATION DROPDOWN ARCHITECTURE
   ================================================================= */

/* Dropdown Container */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

/* Desktop hover behavior */
@media (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Keep dropdown open when hovering over dropdown content itself */
    .nav-dropdown:hover .nav-dropdown-content:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Create invisible bridge to prevent dropdown from closing */
    .nav-dropdown:hover::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 0.25rem;
        background: transparent;
        z-index: 999;
    }
}

/* Click-activated dropdowns for mobile and fallback */
.nav-dropdown.active .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-dark, #2D2D34);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-dropdown-content a:hover {
    background: var(--lavender-100, #f3f9fd);
    color: var(--primary-accent, #0A1F5E);
}

.nav-dropdown > a {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* .nav-dropdown > a::after {
    content: "▼";
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    color: var(--primary-accent, #0A1F5E);
    font-weight: 600;
    opacity: 1;
} */

/* .nav-dropdown:hover > a::after,
.nav-dropdown.active > a::after {
    transform: rotate(180deg);
    opacity: 1;
} */

/* Enhanced navigation hover effects */
.nav-links a:hover {
    color: var(--accent-navy, #0A1F5E);
}

.nav-dropdown > a:hover {
    color: var(--accent-navy, #0A1F5E);
}

/* =================================================================
   SIMPLIFIED RESPONSIVE NAVIGATION - DESKTOP FIRST
   ================================================================= */

/* DESKTOP: 769px+ - Clean Hover Behavior (ORIGINAL PRESERVED) */
@media (min-width: 769px) {
    /* Original desktop hover behavior - MUST NOT BE OVERRIDDEN */
    .nav-dropdown:hover .nav-dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Keep dropdown open when hovering over dropdown content itself */
    .nav-dropdown:hover .nav-dropdown-content:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Create invisible bridge to prevent dropdown from closing */
    .nav-dropdown:hover::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 0.25rem;
        background: transparent;
        z-index: 999;
    }

    /* Hide hamburger menu on desktop */
    .mobile-menu-toggle {
        display: none;
    }

    /* Ensure nav-links are always visible on desktop */
    .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        background: none !important;
        flex-direction: row !important;
        gap: 2rem !important;
        padding: 0 !important;
        box-shadow: none !important;
        align-items: center !important;
    }

    .nav-links li {
        width: auto !important;
        border-bottom: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-links li > a:not(.nav-cta) {
        padding: 0.5rem 0 !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        text-align: left !important;
        background: none !important;
        min-height: auto !important;
    }

    /* Ensure CTA button works on desktop */
    .nav-cta {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
        border-radius: 6px !important;
        background: var(--primary-accent, #0A1F5E) !important;
        color: var(--primary-white, #fff) !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        margin: 0 !important;
        width: auto !important;
    }

    .nav-cta:hover {
        background: var(--lavender-700, #5F5380) !important;
    }
}

/* MOBILE: ≤768px - Simple Hamburger Menu */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        z-index: 1000;
        padding: 0.8rem 4%;
        background: var(--primary-white, #fff);
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
    }

    /* Mobile nav-links structure */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-white, #fff);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        z-index: 999;
        border-top: 1px solid var(--neutral-200, #DEE2E6);
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile nav items */
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--neutral-100, #E9ECEF);
        margin: 0;
        padding: 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    /* Regular nav links styling */
    .nav-links li > a:not(.nav-cta) {
        display: block;
        width: 100%;
        padding: 1.2rem 1.5rem;
        text-align: left;
        color: var(--primary-dark, #2D2D34);
        text-decoration: none;
        border: none;
        background: none;
        font-size: 1rem;
        font-weight: 500;
        min-height: 44px;
        box-sizing: border-box;
    }

    .nav-links li > a:not(.nav-cta):hover {
        background: var(--lavender-100, #f3f9fd);
        color: var(--primary-accent, #0A1F5E);
    }

    /* Mobile dropdown structure */
    .nav-dropdown > a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        color: var(--primary-dark, #2D2D34);
        text-decoration: none;
        border: none;
        background: none;
        cursor: pointer;
        position: relative;
    }

    /* CSS dropdown arrows removed - using HTML text-based arrows instead */
    /* .nav-dropdown > a::after {
        content: "▼";
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        color: var(--primary-accent, #0A1F5E);
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    } */

    .nav-dropdown > a:hover {
        background: var(--lavender-100, #f3f9fd);
        color: var(--primary-accent, #0A1F5E);
    }

    /* Mobile dropdown content - FIX VISIBILITY ISSUES */
    .nav-dropdown-content {
        display: none !important;
        position: static !important;
        background: var(--neutral-50, #F8F9FA) !important;
        border: none !important;
        border-left: 3px solid var(--primary-accent, #0A1F5E) !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
        overflow: visible !important;
        pointer-events: auto !important;
        width: 100% !important;
        z-index: 1001 !important;
    }

    .nav-dropdown.active .nav-dropdown-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: mobileDropdownSlide 0.3s ease-out !important;
    }

    /* Mobile dropdown items - indented */
    .nav-dropdown-content a {
        display: block !important;
        padding: 0.75rem 1.5rem 0.75rem 2.5rem !important;
        color: var(--primary-dark, #2D2D34) !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        background: var(--neutral-50, #F8F9FA) !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: 44px !important;
        line-height: 1.4 !important;
    }

    .nav-dropdown-content a:last-child {
        border-bottom: none !important;
    }

    .nav-dropdown-content a:hover {
        background: var(--lavender-200, #E6DFF0) !important;
        color: var(--primary-accent, #0A1F5E) !important;
    }

    /* Mobile CTA button */
    .nav-links li > a.nav-cta {
        display: block !important;
        width: calc(100% - 3rem) !important;
        margin: 1rem 1.5rem !important;
        padding: 1rem 1.5rem !important;
        text-align: center !important;
        background: var(--primary-accent, #0A1F5E) !important;
        color: var(--primary-white, #fff) !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        min-height: 44px !important;
        box-sizing: border-box !important;
    }

    .nav-links li > a.nav-cta:hover {
        background: var(--lavender-700, #5F5380) !important;
        color: var(--primary-white, #fff) !important;
    }

}



@keyframes mobileDropdownSlide {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 300px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@keyframes slideDownMobile {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 300px;
        opacity: 1;
    }
}

/* Sticky Header */
.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--primary-white, #fff);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Ensure dropdowns don't get clipped */
.navbar {
    overflow: visible;
}

.nav-links {
    overflow: visible;
}

/* Additional responsive fixes */
@media (max-width: 480px) {
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 90px;
    }

    .navbar {
        padding: 0.8rem 3%;
    }

    .nav-dropdown-content a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Tablet responsive adjustments */
@media (min-width: 769px) and (max-width: 1023px) {
    /* Hide mobile dropdown arrows on tablet */
    .nav-dropdown > a::after {
        display: none !important;
    }

    .nav-cta {
        padding: 0.6rem 1.3rem;
        font-size: 0.9rem;
    }

    .nav-dropdown-content {
        min-width: 180px;
    }

    /* Dropdown arrows removed - no longer needed
    .nav-dropdown > a::after {
        content: "▼";
        font-size: 0.75rem;
        margin-left: 0.5rem;
        display: inline-block;
        color: var(--primary-accent, #0A1F5E);
        transition: transform 0.3s ease;
        opacity: 1;
    } */

    /* Dropdown arrows removed - no longer needed
    .nav-dropdown:hover > a::after,
    .nav-dropdown.active > a::after {
        transform: rotate(180deg);
    } */

    .navbar {
        padding: 1rem 4%;
    }
}

/* Desktop enhancements */
@media (min-width: 1024px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 2rem;
    }

    .nav-dropdown-content {
        min-width: 220px;
    }

    /* Enhanced hover effects for desktop */
    .nav-links > li > a {
        position: relative;
        transition: color 0.2s ease;
    }

    .nav-links > li > a:not(.nav-cta):hover {
        color: var(--accent-navy, #0A1F5E);
    }

    .nav-links > li > a:not(.nav-cta)::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-navy, #0A1F5E);
        transition: width 0.3s ease;
    }

    /* .nav-links > li > a:not(.nav-cta):hover::after,
    .nav-links > li.nav-dropdown:hover > a::after {
        width: 100%;
    } */

    /* Override for dropdown arrows */
    /* .nav-dropdown > a::after {
        content: "▼";
        font-size: 0.7rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
        display: inline-block;
        position: static;
        bottom: auto;
        left: auto;
        width: auto;
        height: auto;
        background: none;
        color: var(--primary-accent, #0A1F5E);
        opacity: 1;
    } */

    /* Dropdown arrows removed - no longer needed
    .nav-dropdown > a[href="services.html"]::after,
    .nav-dropdown > a[href="contact.html"]::after {
        display: none !important;
    } */
}

/* Ensure proper spacing and alignment */
.nav-links {
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

/* Smooth transitions for all interactive elements */
.nav-dropdown,
.nav-dropdown-content,
.nav-dropdown > a,
.nav-dropdown-content a,
.nav-cta {
    transition: all 0.2s ease;
}

/* Focus states for accessibility */
.nav-dropdown > a:focus,
.nav-dropdown-content a:focus,
.nav-cta:focus {
    outline: 2px solid var(--accent-navy, #0A1F5E);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-dropdown-content {
        border-width: 3px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .nav-dropdown-content a:hover {
        background: #000;
        color: #fff;
    }
}

/* =================================================================
   PRICING SIGNALS COMPONENTS
   ================================================================= */

.pricing-hint {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-top: 0.75rem;
    background: var(--lavender-100, #f3f9fd);
    border-left: 3px solid var(--primary-accent, #0A1F5E);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-accent, #0A1F5E);
}

.pricing-micro-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--primary-accent, #0A1F5E);
    border-radius: 6px;
    color: var(--primary-accent, #0A1F5E);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.pricing-micro-cta:hover {
    background: var(--primary-accent, #0A1F5E);
    color: var(--primary-white, #fff);
}

/* Additional Services Pricing Section */
.additional-pricing-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--neutral-50, #F8F9FA);
    border-radius: 16px;
}

.additional-pricing-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-dark, #2D2D34);
}

.additional-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .additional-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.additional-pricing-card {
    padding: 2rem;
    background: var(--primary-white, #fff);
    border: 2px solid var(--lavender-200, #E6DFF0);
    border-radius: 12px;
    transition: var(--transition-base);
}

.additional-pricing-card:hover {
    border-color: var(--primary-medium, #9B8FB5);
    box-shadow: var(--shadow-md);
}

.additional-pricing-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark, #2D2D34);
    margin-bottom: 0.75rem;
}

.additional-pricing-card .price-indicator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-accent, #0A1F5E);
    margin-bottom: 1rem;
}

.additional-pricing-card .price-note {
    font-size: 0.875rem;
    color: var(--neutral-500, #6C757D);
    margin-bottom: 1.5rem;
}

.additional-pricing-card ul {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.additional-pricing-card li {
    font-size: 0.95rem;
    color: var(--neutral-600, #495057);
}

.additional-pricing-card .btn-outline {
    width: 100%;
}

