:root {
    --primary-blue: #0f172a;
    /* Slate 900 */
    --accent-blue: #2563eb;
    /* Blue 600 */
    --accent-vibrant: #3b82f6;
    /* Blue 500 */
    --accent-orange: #f97316;
    /* Orange 500 */
    --complement-teal: #06b6d4;
    /* Cyan 500 */
    --success-green: #10b981;
    /* Emerald 500 */
    --text-dark: #1e293b;
    /* Slate 800 */
    --text-gray: #64748b;
    /* Slate 500 */
    --bg-light: #f1f5f9;
    /* Slate 100 */
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    /* Slate 200 */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Premium Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 0.825rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Modern Sticky Header with Glassmorphism */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span {
    background: linear-gradient(135deg, var(--accent-orange), #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Impactful Hero Section */
.hero {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    margin-bottom: 40px;
    max-width: 90%;
    color: #cbd5e1;
}

.hero-benefits {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 40px; 
    font-weight: 700; 
    color: white;
}

.independent-notice {
    border-left: 4px solid var(--accent-orange); 
    padding-left: 20px; 
    background: rgba(255, 255, 255, 0.1); 
    padding-top: 15px; 
    padding-bottom: 15px; 
    border-radius: 0 8px 8px 0;
}

.independent-notice p {
    font-size: 0.9rem; 
    color: #e2e8f0; 
    margin-bottom: 0; 
    line-height: 1.4;
}

.hero-benefits {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 40px; 
    font-weight: 700; 
    color: white;
}

.independent-notice {
    border-left: 4px solid var(--accent-orange); 
    padding-left: 20px; 
    background: rgba(255, 255, 255, 0.1); 
    padding-top: 15px; 
    padding-bottom: 15px; 
    border-radius: 0 8px 8px 0;
}

.independent-notice p {
    font-size: 0.9rem; 
    color: #e2e8f0; 
    margin-bottom: 0; 
    line-height: 1.4;
}

/* Professional Form Card */
.form-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.form-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
}

.form-input:focus {
    background: white;
    border-color: var(--accent-vibrant);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Buttons with Animations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #ea580c);
    color: white;
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.4);
}

.btn-call {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Features Grid */
.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-vibrant);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 32px;
    display: inline-block;
    filter: drop-shadow(0 10px 10px rgba(59, 130, 246, 0.1));
}

/* Stats Row - Glassmorphism variant */
.stats-row {
    background: var(--primary-blue);
    position: relative;
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.stats-row::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 8px;
    color: var(--accent-orange);
    background: linear-gradient(135deg, #fbbf24, var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: #94a3b8;
    font-weight: 500;
}

/* Brands Section Styling */
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.brand-item {
    font-weight: 900;
    font-size: 1.5rem;
    color: #cbd5e1;
    transition: var(--transition);
    cursor: default;
}

.brand-item:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

/* Footer Overhaul */
.footer {
    background: #020617;
    color: #f1f5f9;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 28px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links li {
    list-style: none;
    margin-bottom: 16px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Sticky Mobile Footer - Fixed for better UX */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    display: none;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

/* Image Styling */
.feature-img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #e2e8f0;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.hero-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
}

/* 📱 Mobile Responsiveness Overrides */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .badge-row {
        justify-content: center;
    }

    .form-card {
        transform: none;
        max-width: 550px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .sticky-footer {
        display: block;
    }

    body {
        padding-bottom: 90px;
    }

    .stats-row .grid-3 {
        gap: 48px;
    }

    .top-bar {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .badge-row {
        flex-wrap: wrap;
    }
}