/* LoadWrap TMS - Professional Landing Page */
/* Via-Inspired Clean Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Primary Colors - Via Blue */
    --primary: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #E6F2FF;
    --primary-hover: #0052A3;

    /* Secondary */
    --secondary: #1A1A2E;
    --secondary-light: #2D2D44;

    /* Accent */
    --accent: #FF6B35;
    --accent-light: #FFF0EB;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Success/Status */
    --success: #059669;
    --success-light: #D1FAE5;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg,
        rgba(245,247,250,0.98) 0%,
        rgba(220,225,232,0.97) 40%,
        rgba(200,208,218,0.96) 70%,
        rgba(215,222,230,0.97) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.nav.scrolled {
    background: linear-gradient(180deg,
        rgba(240,242,246,0.98) 0%,
        rgba(215,220,228,0.97) 50%,
        rgba(205,212,222,0.97) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.5);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.nav-logo-text span {
    color: var(--primary);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions .btn-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.nav-actions .btn-text:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-actions .btn-primary {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 12px 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-text {
    background: transparent;
    color: var(--gray-700);
    padding: 12px 16px;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--primary-light);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--secondary-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-700);
    cursor: pointer;
}

/* ============================================
   HERO BANNER - Gradient + Pattern
   ============================================ */
.hero-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    margin-top: 76px;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Subtle dot pattern overlay */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Fine dot pattern */
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0),
        /* Sparse larger dots */
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size:
        20px 20px,
        40px 40px;
    background-position:
        0 0,
        10px 10px;
    animation: patternMove 30s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

/* Subtle glow effects */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 40% 30% at 30% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(8, 145, 178, 0.4) 100%);
    z-index: 2;
}

.hero-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-banner-title {
    font-size: 96px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.hero-banner-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-banner-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-banner .btn-white {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
}

.hero-banner .btn-outline-white {
    padding: 18px 40px;
    font-size: 17px;
    border-width: 2px;
}

/* Hero trust section */
.hero-trust-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.hero-trust-text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* ============================================
   IMPACT SECTION - Dark version
   ============================================ */
.impact-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.impact-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.impact-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .impact-container {
        padding: 0 20px;
    }
}

.impact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 64px;
}

.impact-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
}

.impact-desc {
    max-width: 440px;
    padding-top: 8px;
}

.impact-desc p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Testimonials Track */
.testimonials-track {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-card {
    flex: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-card.featured {
    flex: 1.3;
    background: linear-gradient(145deg, rgba(79, 70, 140, 0.4) 0%, rgba(45, 55, 100, 0.3) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.testimonial-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-image {
    width: 200px;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stat Card */
.testimonial-stat-card {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.3) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.big-stat {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Impact Stats Bar */
.impact-stats-bar {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.impact-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.impact-stat-text {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.impact-stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.impact-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}


/* ============================================
   FEATURES SECTION - LIGHT (White Background)
   ============================================ */
.features-section-light {
    padding: 100px 0;
    background: var(--white);
}

.features-section-light .features-label {
    color: var(--primary);
}

.features-section-light .features-header-left h2 {
    color: var(--gray-900);
}

.features-section-light .features-header-right p {
    color: var(--gray-700);
    font-size: 19px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}

.features-section-light .feature-tile {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.features-section-light .feature-tile:hover {
    border-color: var(--gray-300);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.features-section-light .feature-tile.highlight {
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fcd34d;
}

.features-section-light .feature-number {
    color: var(--gray-300);
}

.features-section-light .feature-tile.highlight .feature-number {
    color: #f59e0b;
}

.features-section-light .feature-tile h4 {
    color: var(--gray-900);
}

.features-section-light .feature-tile p {
    color: var(--gray-600);
}

/* ============================================
   FEATURES SECTION - COMPREHENSIVE (Dark Theme)
   ============================================ */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

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

/* Split Header */
.features-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 64px;
}

.features-header-left {
    flex: 1;
}

.features-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.features-header-left h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
}

.features-header-right {
    max-width: 400px;
    padding-top: 40px;
}

.features-header-right p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Features Showcase Layout */
.features-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

/* Hero Feature Card */
.feature-hero {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
}

.feature-hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 6px;
}

.feature-hero-content {
    position: relative;
    z-index: 2;
}

.feature-hero-number {
    display: block;
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.feature-hero h3 {
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.feature-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Bid Demo Card */
.feature-hero-demo {
    margin-top: auto;
}

.bid-demo-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.bid-demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.bid-load {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.bid-rate {
    font-size: 18px;
    font-weight: 800;
    color: #34d399;
}

.bid-demo-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.bid-demo-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.bid-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Features Grid */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.feature-tile:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.feature-tile.highlight {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

.feature-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.feature-tile.highlight .feature-number {
    color: #f59e0b;
}

.feature-tile h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-tile p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Section Header (for other sections) */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Modern Section Eyebrow - No icons, clean typography */
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #06B6D4);
    border-radius: 2px;
}

.section-eyebrow::before {
    left: 0;
}

.section-eyebrow::after {
    right: 0;
}

.section-eyebrow.light {
    color: rgba(255, 255, 255, 0.9);
}

.section-eyebrow.light::before,
.section-eyebrow.light::after {
    background: linear-gradient(90deg, #60a5fa, #06B6D4);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   USER TYPES SECTION
   ============================================ */
.users-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.users-section .section-title {
    color: var(--gray-900);
}

.users-section .section-subtitle {
    color: var(--gray-600);
}

/* Modern User Cards - Via-inspired */
.users-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.user-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.user-card-modern:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.2), 0 15px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.user-card-modern.accent {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border: none;
}

.user-card-modern.accent:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.user-card-modern .card-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.user-card-modern.accent .card-label {
    color: #60a5fa;
}

.user-card-modern h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 16px;
}

.user-card-modern.accent h3 {
    color: var(--white);
}

.user-card-modern > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.user-card-modern.accent > p {
    color: rgba(255, 255, 255, 0.7);
}

.card-features-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.card-features-minimal span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 10px 12px;
    background: var(--gray-100);
    border-radius: 100px;
    text-align: center;
    white-space: nowrap;
}

.user-card-modern.accent .card-features-minimal span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.card-cta {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.card-cta:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.user-card-modern.accent .card-cta {
    color: #60a5fa;
}

.user-card-modern.accent .card-cta:hover {
    color: var(--white);
}

/* Legacy user-card styles kept for compatibility */
.users-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.user-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.user-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.user-card.carrier .user-card-badge {
    background: linear-gradient(90deg, #10B981, #06B6D4);
}

.user-card.broker .user-card-badge {
    background: linear-gradient(90deg, var(--primary), #8B5CF6);
}

.user-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 28px;
}

.user-card.carrier .user-card-icon {
    background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
    color: #059669;
}

.user-card.broker .user-card-icon {
    background: linear-gradient(135deg, var(--primary-light), #EDE9FE);
    color: var(--primary);
}

/* Modern Icon Container with SVG */
.user-card-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.user-card-icon-modern.carrier-icon {
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.user-card-icon-modern.broker-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.user-card-icon-modern svg {
    width: 28px;
    height: 28px;
}

/* Modern Check Dot for lists */
.check-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.user-card.carrier .check-dot {
    background: linear-gradient(135deg, #10B981, #06B6D4);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.user-card.broker .check-dot {
    background: linear-gradient(135deg, var(--primary), #8B5CF6);
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.user-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.user-card-desc {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.user-card-features {
    list-style: none;
    margin-bottom: 32px;
}

.user-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
    color: var(--gray-700);
}

.user-card-features li:last-child {
    border-bottom: none;
}

.user-card-features li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.user-card.carrier .user-card-features li i {
    background: #D1FAE5;
    color: #059669;
}

.user-card.broker .user-card-features li i {
    background: var(--primary-light);
    color: var(--primary);
}

.user-card-features li strong {
    color: var(--gray-900);
}

.user-card.carrier .btn-primary {
    background: linear-gradient(135deg, #10B981, #06B6D4);
}

.user-card.carrier .btn-primary:hover {
    opacity: 0.9;
}

/* ============================================
   HOW IT WORKS - Modern Timeline
   ============================================ */
.steps-section-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.steps-header {
    margin-bottom: 80px;
}

.steps-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #60a5fa;
    margin-bottom: 20px;
}

.steps-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 600px;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 80px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.step-item {
    padding: 0 24px;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.step-item:nth-child(1) { transition-delay: 0s; }
.step-item:nth-child(2) { transition-delay: 0.15s; }
.step-item:nth-child(3) { transition-delay: 0.3s; }
.step-item:nth-child(4) { transition-delay: 0.45s; }

.step-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 24px;
    font-family: inherit;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.steps-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-start {
    display: inline-block;
    padding: 16px 32px;
    background: var(--white);
    color: var(--gray-900);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-start:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Legacy step styles for compatibility */
.steps-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   MODERN FOOTER
   ============================================ */
.footer-modern {
    position: relative;
    padding: 0;
    background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 50%, #1e293b 100%);
    color: var(--white);
    overflow: hidden;
}

.footer-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #06B6D4, #8B5CF6, var(--primary));
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.footer-modern .footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px;
}

/* Footer Top - Brand + Newsletter */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
}

.footer-brand-modern {
    max-width: 300px;
}

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

.footer-logo-modern .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #06B6D4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo-modern .logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Newsletter */
.footer-newsletter {
    max-width: 400px;
}

.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 14px 24px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Footer Grid */
.footer-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Social Icons Modern */
.footer-social-modern {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-social-modern a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.2s ease;
}

.footer-social-modern a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.footer-contact a i {
    width: 16px;
    color: var(--primary);
}

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

/* Footer Bottom */
.footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-modern .footer-copyright {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-modern .footer-legal {
    display: flex;
    gap: 24px;
}

.footer-bottom-modern .footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-bottom-modern .footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }

    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }

    .hero-banner-title {
        font-size: 64px;
        letter-spacing: -2px;
    }

    .hero-banner-subtitle {
        font-size: 20px;
    }

    /* Impact Section Tablet */
    .impact-section {
        padding: 80px 0 60px;
    }

    .impact-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
    }

    .impact-title h2 {
        font-size: 38px;
    }

    .impact-desc {
        max-width: 100%;
    }

    .testimonials-track {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        flex-direction: row;
    }

    .testimonial-card.featured {
        flex: 1;
    }

    .testimonial-stat-card {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        padding: 24px 32px;
    }

    .big-stat {
        font-size: 48px;
        margin-bottom: 0;
    }

    .stat-desc {
        text-align: left;
    }

    .impact-stats-bar {
        flex-wrap: wrap;
        gap: 32px;
        padding: 32px;
        justify-content: center;
    }

    .impact-stat {
        min-width: 40%;
    }

    .impact-stat-value,
    .impact-stat-text {
        font-size: 36px;
    }

    /* Features Section Light Tablet */
    .features-section-light {
        padding: 80px 0;
    }

    /* Features Section Tablet */
    .features-header-split {
        flex-direction: column;
        gap: 24px;
    }

    .features-header-right {
        max-width: 100%;
        padding-top: 0;
    }

    .features-header-left h2 {
        font-size: 36px;
    }

    .features-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-hero {
        padding: 32px;
    }

    .feature-hero h3 {
        font-size: 22px;
    }

    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .users-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Modern footer tablet */
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
        min-height: 450px;
    }

    .hero-banner-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .hero-banner-subtitle {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .hero-banner-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-banner .btn-white,
    .hero-banner .btn-outline-white {
        padding: 16px 32px;
        width: 100%;
        text-align: center;
    }

    .hero-trust-section {
        margin-top: 32px;
    }

    .hero-trust-text {
        font-size: 15px;
        padding: 0 20px;
    }

    /* Impact Section Mobile */
    .impact-section {
        padding: 60px 0 48px;
    }

    .impact-container {
        padding: 0 20px;
    }

    .impact-title h2 {
        font-size: 32px;
    }

    .impact-desc p {
        font-size: 15px;
    }

    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-image {
        width: 100%;
        height: 180px;
    }

    .testimonial-content {
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonial-stat-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .big-stat {
        font-size: 52px;
        margin-bottom: 8px;
    }

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

    .impact-stats-bar {
        gap: 24px;
        padding: 24px 20px;
    }

    .impact-stat-value,
    .impact-stat-text {
        font-size: 28px;
    }

    .impact-stat-suffix {
        font-size: 18px;
    }

    .impact-stat-label {
        font-size: 12px;
    }

    /* Features Section Light Mobile */
    .features-section-light {
        padding: 60px 0;
    }

    /* Features Section Mobile */
    .features-header-left h2 {
        font-size: 28px;
    }

    .features-header-right p {
        font-size: 15px;
    }

    .feature-hero {
        padding: 24px;
    }

    .feature-hero h3 {
        font-size: 20px;
    }

    .feature-hero p {
        font-size: 14px;
    }

    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .feature-tile {
        padding: 20px;
    }

    .steps-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 32px; }

    .user-card { padding: 32px; }

    /* Modern user cards mobile */
    .users-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .user-card-modern {
        padding: 32px 28px;
    }

    .user-card-modern h3 {
        font-size: 22px;
    }

    .card-features-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .card-features-minimal span {
        font-size: 11px;
        padding: 8px 10px;
    }

    /* Modern steps mobile */
    .steps-section-modern {
        padding: 80px 0;
    }

    .steps-header h2 {
        font-size: 28px;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .steps-timeline::before {
        display: none;
    }

    .step-num {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .steps-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cta-title { font-size: 28px; }
    .cta-actions { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

    /* Modern footer mobile */
    .footer-modern .footer-container {
        padding: 60px 24px 32px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding-bottom: 40px;
        margin-bottom: 32px;
    }

    .footer-social-modern {
        margin-bottom: 20px;
    }

    .footer-bottom-modern {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-modern .footer-copyright {
        flex-direction: column;
        gap: 4px;
    }

    .footer-separator {
        display: none;
    }

    .footer-bottom-modern .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS (Additional)
   ============================================ */

/* Mobile styles */
@media (max-width: 1024px) {
    /* Prevent horizontal scroll */
    .hero-banner,
    .features-section-light,
    .impact-section,
    .users-section,
    .steps-section-modern,
    .footer-modern {
        overflow-x: hidden;
    }

    /* Hide nav-actions completely on mobile */
    .nav-actions {
        display: none !important;
    }

    .nav-inner {
        padding: 0 20px;
        height: 64px;
    }

    .nav-logo-text {
        font-size: 22px;
    }

    .mobile-toggle {
        display: block;
    }

    /* Mobile menu when opened */
    .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 64px) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        background: linear-gradient(180deg, #f5f7fa 0%, #dce1e8 40%, #c8d0da 70%, #d7dee6 100%) !important;
        padding: 20px !important;
        gap: 8px !important;
        overflow-y: auto !important;
        z-index: 9999 !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active .nav-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 18px !important;
        font-weight: 600;
        padding: 16px 20px;
        border-radius: 12px;
        text-align: left;
        color: #1f2937 !important;
        background: #f3f4f6;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link:active {
        background: var(--primary-light);
        color: var(--primary);
    }

    /* Show Register/Login in mobile menu */
    .nav-menu-actions {
        display: none;
    }

    .nav-menu.active .nav-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--gray-200);
    }

    .btn-block {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
    }
}

/* Hide mobile menu actions on desktop */
@media (min-width: 1025px) {
    .nav-menu-actions {
        display: none !important;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    /* Hero adjustments */
    .hero-banner {
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 100px;
        padding-bottom: 60px;
        margin-top: 64px;
    }

    .hero-banner-content {
        padding: 0 20px;
    }

    .hero-banner-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .hero-banner-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .hero-banner-actions {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .hero-banner .btn-white,
    .hero-banner .btn-outline-white {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .hero-trust-text {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Features section mobile */
    .features-container {
        padding: 0 16px;
    }

    .features-header-left h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .features-header-right p {
        font-size: 14px;
        padding-left: 16px;
    }

    .feature-hero-number {
        font-size: 48px;
    }

    .feature-hero h3 {
        font-size: 18px;
    }

    .feature-number {
        font-size: 24px;
    }

    .feature-tile h4 {
        font-size: 14px;
    }

    .feature-tile p {
        font-size: 13px;
    }

    /* Impact section mobile */
    .impact-title h2 {
        font-size: 26px;
    }

    .impact-stats-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .impact-stat {
        min-width: auto;
    }

    .impact-stat-value,
    .impact-stat-text {
        font-size: 24px;
    }

    .impact-stat-suffix {
        font-size: 16px;
    }

    .impact-stat-label {
        font-size: 11px;
    }

    /* User cards mobile */
    .users-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .users-grid-modern {
        margin-top: 40px;
    }

    .user-card-modern {
        padding: 28px 20px;
    }

    .user-card-modern h3 {
        font-size: 20px;
    }

    .user-card-modern > p {
        font-size: 14px;
    }

    .card-features-minimal {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .card-features-minimal span {
        font-size: 10px;
        padding: 6px 8px;
    }

    /* Steps section mobile */
    .steps-section-modern {
        padding: 60px 0;
    }

    .steps-header {
        margin-bottom: 48px;
    }

    .steps-header h2 {
        font-size: 24px;
    }

    .steps-timeline {
        gap: 32px;
        margin-bottom: 48px;
    }

    .step-item {
        padding: 0 16px;
    }

    .step-num {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

    .btn-start {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    /* Footer mobile */
    .footer-modern .footer-container {
        padding: 48px 20px 28px;
    }

    .footer-logo-modern .logo-text {
        font-size: 22px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-newsletter h4 {
        font-size: 16px;
    }

    .footer-column h4 {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact a {
        font-size: 12px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-banner-title {
        font-size: 30px;
    }

    .hero-banner-subtitle {
        font-size: 14px;
    }

    .card-features-minimal {
        grid-template-columns: 1fr;
    }

    .card-features-minimal span {
        font-size: 12px;
        padding: 10px 14px;
    }

    .impact-stats-bar {
        grid-template-columns: 1fr;
    }

    /* Keep footer 2 columns even on small screens */
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .footer-column h4 {
        font-size: 11px;
    }

    .footer-links a {
        font-size: 12px;
    }
}
