/**
 * Stoneking Enterprises - Landing Page Styles
 * Mobile-first, high-converting design
 */

/* ========================================
   CSS Variables (Brand Colors)
   ======================================== */
:root {
    /* Primary Colors */
    --primary: #EA580C;
    --primary-dark: #C2410C;
    --primary-light: #FB923C;
    
    /* Neutrals */
    --black: #0F0F0F;
    --gray-900: #1A1A1A;
    --gray-800: #2D2D2D;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #A3A3A3;
    --gray-300: #D4D4D4;
    --gray-200: #E5E5E5;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    
    /* Semantic */
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', -apple-system, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
    
    /* 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.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.required {
    color: var(--error);
}

/* ========================================
   Top Banner - Urgency & Scarcity
   ======================================== */
.top-banner {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
    background-size: 200% 100%;
    animation: bannerGradient 3s ease infinite;
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: bannerShine 3s ease-in-out infinite;
}

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

@keyframes bannerShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 18px;
    animation: pulse-icon 1s ease-in-out infinite;
}

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

.banner-urgent {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 11px;
    animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.banner-text strong {
    color: #fef08a;
    font-weight: 800;
    font-size: 15px;
    text-shadow: 0 0 10px rgba(254, 240, 138, 0.5);
}

.banner-countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fef08a;
    color: #b91c1c;
    font-weight: 900;
    min-width: 24px;
    height: 24px;
    border-radius: 6px;
    padding: 0 6px;
    font-size: 14px;
    animation: countdownPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(254, 240, 138, 0.6);
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(254, 240, 138, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(254, 240, 138, 0.9); }
}

.banner-cta {
    background: white;
    color: #b91c1c;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    margin-left: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.top-banner:hover .banner-cta {
    background: #fef08a;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile banner adjustments */
@media (max-width: 768px) {
    .top-banner {
        padding: 10px 15px;
    }
    
    .banner-text {
        font-size: 11px;
        gap: 6px;
        line-height: 1.5;
    }
    
    .banner-text strong {
        font-size: 13px;
    }
    
    .banner-cta {
        display: none;
    }
    
    .banner-urgent {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .banner-countdown {
        min-width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* ========================================
   Header
   ======================================== */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 30px;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--gray-700);
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-phone:hover {
    background: var(--primary-dark);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
}

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

.nav-mobile a {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 500;
}

.nav-phone-mobile {
    margin-top: 10px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* ========================================
   Hero Section - Enhanced with Background Image
   ======================================== */
.hero {
    position: relative;
    background: #0a0a0a;
    padding: 60px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.3), transparent);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

/* Animated gradient accent */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(234, 88, 12, 0.15) 0%,
        transparent 50%
    );
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 40px;
    width: 100%;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.15) 0%, rgba(234, 88, 12, 0.05) 100%);
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(234, 88, 12, 0.2);
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 8vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.hero-description {
    font-size: 17px;
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    text-align: left;
    position: relative;
    padding-left: 16px;
}

.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-primary);
}

.stat-plus {
    color: var(--primary);
    font-size: 24px;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Trust Indicators Row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-2px);
}

.trust-indicator svg {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-indicator span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Hero Mobile CTA Button */
.hero-mobile-cta {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    margin-top: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
    transition: all 0.3s ease;
}

.hero-mobile-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.45);
}

@media (max-width: 767px) {
    .hero-mobile-cta {
        display: inline-flex;
    }
    
    .hero-trust-row {
        gap: 12px;
    }
    
    .trust-indicator {
        padding: 8px 12px;
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }
    
    .trust-indicator span {
        font-size: 11px;
    }
    
    .trust-indicator svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   Lead Form Card - Compact Step Form
   ======================================== */
.hero-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.form-card-compact {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.form-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.form-header-compact {
    text-align: center;
    margin-bottom: 24px;
}

.form-header-compact .form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Step Progress Indicator */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 10px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.step-item.active .step-circle {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.15);
}

.step-item.completed .step-circle {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.step-item.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

.step-item.completed .step-label {
    color: var(--success);
}

.step-line {
    width: 36px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 6px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
    border-radius: 1px;
}

.step-line.active {
    background: linear-gradient(90deg, var(--success), var(--primary));
}

/* Step Form Styles */
.step-form {
    position: relative;
    min-height: 180px;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes stepSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step.slide-in {
    animation: stepSlideIn 0.3s ease;
}

/* Service Selection Options - Compact Design */
.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    background: var(--gray-50);
    transition: all 0.25s ease;
    position: relative;
}

.service-option:hover .service-option-content {
    border-color: var(--primary-light);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-option input[type="radio"]:checked + .service-option-content {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.2);
    transform: translateY(-3px);
}

.service-option-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    margin-bottom: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-option input[type="radio"]:checked + .service-option-content .service-option-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3);
}

.service-option-text {
    width: 100%;
}

.service-option-title {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}

.service-option input[type="radio"]:checked + .service-option-content .service-option-title {
    color: var(--primary-dark);
}

.service-option-desc {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
}

.service-option-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.25s ease;
    background: white;
}

.service-option input[type="radio"]:checked + .service-option-content .service-option-check {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

/* Compact Form Groups */
.form-group-compact {
    margin-bottom: 16px;
}

.form-group-compact label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: -0.1px;
}

.form-group-compact input,
.form-group-compact textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-900);
    transition: all 0.2s ease;
    background: var(--gray-50);
}

.form-group-compact input::placeholder,
.form-group-compact textarea::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.form-group-compact input:focus,
.form-group-compact textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

.form-group-compact input.error,
.form-group-compact textarea.error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.03);
}

.form-group-compact input.valid,
.form-group-compact textarea.valid {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.03);
}

.form-group-compact textarea {
    resize: none;
    min-height: 80px;
}

/* Step Navigation Buttons */
.btn-step {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.btn-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.btn-step:disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.step-buttons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn-back {
    padding: 14px 18px;
    background: var(--white);
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.step-buttons .btn-step {
    flex: 1;
    margin-top: 0;
}

/* ========================================
   Enhanced OTP Verification Styles
   ======================================== */

/* Verify Header */
.verify-header {
    text-align: center;
    margin-bottom: 20px;
}

.verify-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: white;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.25);
}

.verify-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.verify-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Phone Input with Prefix */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: var(--gray-50);
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

.phone-prefix {
    padding: 14px 14px;
    background: transparent;
    border-right: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-600);
    white-space: nowrap;
    font-weight: 500;
}

.phone-input-wrapper input {
    flex: 1;
    border: none !important;
    box-shadow: none !important;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    background: transparent !important;
}

.phone-input-wrapper input:focus {
    outline: none;
}

/* ========================================
   OTP Entry State - Compact & Clean
   ======================================== */
.otp-entry-state {
    text-align: center;
}

.otp-header {
    margin-bottom: 20px;
}

.otp-phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.otp-phone-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.3px;
}

.btn-change-phone {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    background: rgba(234, 88, 12, 0.1);
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-change-phone:hover {
    background: rgba(234, 88, 12, 0.15);
}

.otp-instruction {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* OTP Digits - Clean Design */
.otp-digits-wrapper {
    margin-bottom: 16px;
}

.otp-digits {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.otp-digit {
    width: 46px;
    height: 54px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--gray-900);
    transition: all 0.2s ease;
    background: var(--gray-50);
}

.otp-digit:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
    transform: translateY(-2px);
}

.otp-digit.filled {
    border-color: var(--primary);
    background: var(--white);
}

.otp-digit.error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.05);
    animation: digitShake 0.3s ease;
}

@keyframes digitShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* OTP Actions */
.otp-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.otp-timer {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
}

.btn-resend-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.btn-resend-link:hover {
    text-decoration: underline;
}

/* Verify OTP Button */
.btn-verify-otp {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-verify-otp:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-verify-otp:disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    box-shadow: none;
}

/* Verified State */
.verified-state {
    text-align: center;
    padding: 24px 10px;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.verified-animation {
    margin-bottom: 16px;
}

.verified-animation svg {
    filter: drop-shadow(0 6px 16px rgba(16, 185, 129, 0.35));
}

.verified-animation .checkmark {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawCheck 0.4s ease forwards 0.2s;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.verified-state h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.verified-state p {
    font-size: 15px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Submit Button Final */
.btn-submit-final {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-submit-final .btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.btn-submit-final:active {
    transform: translateY(0);
}

/* OTP Send Button */
.btn-otp-send {
    background: var(--gray-800);
}

.btn-otp-send:hover:not(:disabled) {
    background: var(--black);
}

/* Submit Button Compact */
.btn-submit-compact {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
}

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

/* Success Compact */
.form-success-compact {
    text-align: center;
    padding: 20px 10px;
}

.success-icon-sm {
    margin-bottom: 12px;
}

.form-success-compact h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.form-success-compact p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.form-success-compact .lead-id {
    font-size: 12px;
    color: var(--gray-400);
}

.form-success-compact .lead-id span {
    color: var(--primary);
    font-weight: 600;
}

/* Disclaimer Compact */
.form-disclaimer-compact {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 16px;
    font-weight: 500;
}

/* Trust Badges Compact */
.trust-badges-compact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 380px;
    margin-top: 4px;
}

.trust-item {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.2px;
}

@media (min-width: 768px) {
    .trust-badges-compact {
        justify-content: center;
    }
}

/* Recent Activity Indicator */
.recent-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.activity-avatars {
    display: flex;
    align-items: center;
}

.activity-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    border: 2px solid rgba(0, 0, 0, 0.3);
    margin-left: -8px;
}

.activity-avatar:first-child {
    margin-left: 0;
}

.activity-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.activity-text strong {
    color: white;
    font-weight: 700;
}

/* ========================================
   Social Proof Popup
   ======================================== */
.social-proof-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    z-index: 1000;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-proof-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.social-proof-content {
    flex: 1;
}

.social-proof-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.social-proof-action {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 2px;
}

.social-proof-time {
    font-size: 11px;
    color: var(--gray-400);
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-500);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.social-proof-popup:hover .social-proof-close {
    opacity: 1;
}

.social-proof-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* ========================================
   Live Visitors Counter
   ======================================== */
.live-visitors {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--gray-900);
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.live-count {
    font-weight: 700;
    color: #10B981;
}

/* Mobile adjustments for social proof */
@media (max-width: 640px) {
    .social-proof-popup {
        left: 12px;
        right: 12px;
        bottom: 80px;
        max-width: none;
    }
    
    .live-visitors {
        right: 12px;
        bottom: 12px;
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .recent-activity {
        flex-direction: column;
        gap: 6px;
        padding: 12px 16px;
    }
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: var(--success);
}

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

/* Field Status Indicators */
.field-error {
    display: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--error);
    margin-top: 8px;
    padding-left: 2px;
}

.field-error.show {
    display: block;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

.field-saved {
    display: none;
    position: absolute;
    right: 12px;
    top: 42px;
    font-size: 12px;
    color: var(--success);
    font-weight: 500;
}

.field-saved.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Phone Input Group */
.phone-input-group,
.otp-input-group {
    display: flex;
    gap: 10px;
}

.phone-input-group input,
.otp-input-group input {
    flex: 1;
}

.btn-otp,
.btn-verify {
    padding: 14px 20px;
    background: var(--gray-800);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
    min-width: 110px;
}

.btn-otp:hover:not(:disabled),
.btn-verify:hover:not(:disabled) {
    background: var(--black);
}

.btn-otp:disabled,
.btn-verify:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

/* OTP Section */
.otp-section {
    background: var(--gray-100);
    padding: 20px;
    border-radius: 10px;
    margin-top: -10px;
}

.otp-timer {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
}

.btn-resend {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    padding: 0;
}

.btn-resend:hover {
    text-decoration: underline;
}

/* Verified Badge */
.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #D1FAE5;
    color: #047857;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

.btn-submit:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading States */
.btn-loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading .btn-text {
    visibility: hidden;
}

.loading .btn-loading {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Form Disclaimer */
.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.lead-id {
    font-size: 14px;
    color: var(--gray-500);
}

.lead-id span {
    font-weight: 600;
    color: var(--primary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.trust-badges .badge:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-2px);
}

.trust-badges .badge svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(234, 88, 12, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

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

.services-grid {
    display: grid;
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 20px;
    position: relative;
}

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

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding) 0;
}

.about-inner {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-text.highlight-text {
    font-weight: 600;
    color: var(--gray-800);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-location {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.registration {
    font-size: 12px;
    color: var(--gray-500);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
}

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

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-item p {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary-light);
    font-weight: 500;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--gray-400);
}

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

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        gap: 50px;
    }
    
    .hero-form-wrapper {
        align-items: flex-end;
    }
    
    .form-card-compact {
        max-width: 360px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: row;
        width: auto;
        max-width: none;
    }
}

/* ========================================
   Responsive - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        padding: 60px 0 80px;
        min-height: 100vh;
    }
    
    .hero-inner {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
    }
    
    .hero-title {
        font-size: 58px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 50px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .form-card-compact {
        padding: 32px 28px;
        max-width: 380px;
    }
    
    .form-header-compact .form-title {
        font-size: 22px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-title {
        font-size: 64px;
    }
}
