:root {
    /* Professional Light Palette */
    --primary-blue: #1e40af; /* Deep blue for authority */
    --secondary-blue: #3b82f6;
    --surface-light: #ffffff;
    --surface-off: #f8fafc;
    --surface-border: #e2e8f0;
    
    /* Accents */
    --accent-indigo: #4338ca;
    --accent-orange: #ea580c;
    
    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-dim: #64748b;
    
    /* Global Settings */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --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 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background-color: var(--surface-light);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Clean Professional Background */
body::before {
    display: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Header & Navigation */
.top-bar {
    background: var(--primary-blue);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    background: var(--surface-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--surface-border);
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo span {
    color: var(--accent-orange);
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #172554;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-call {
    background: #f1f5f9;
    color: var(--primary-blue);
    border: 1px solid var(--surface-border);
}

.btn-call:hover {
    background: var(--primary-blue);
    color: white;
}

/* Cards & Sections */
.section { padding: 80px 0; }

.card {
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
    background: var(--surface-off);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
}

.hero-text h1 span {
    color: var(--primary-blue);
}

.badge {
    background: #e0e7ff;
    color: var(--primary-blue);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Form Styles */
.hero-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
}

.form-input {
    width: 100%;
    padding: 14px;
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-blue);
}

/* Stats Row */
.stats-row {
    background: white;
    border-bottom: 1px solid var(--surface-border);
    padding: 30px 0;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

/* Features Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.feature-card {
    text-align: center;
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.feature-img-box {
    margin: 20px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

/* New Customer Section */
.new-customer-section {
    position: relative;
    padding: 80px 0;
}

.welcome-box {
    background: #f1f5f9;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--surface-border);
}

.offer-badge-floating {
    background: var(--accent-orange);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Workshop Section */
.workshop-section {
    background: var(--surface-off);
}

/* Brands Styling */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
    opacity: 0.5;
}

.brand-item {
    font-weight: 900;
    font-size: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
    color: var(--accent-indigo);
    transform: scale(1.1);
}

/* Footer Section */
.footer {
    padding: 120px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

/* Sticky Mobile Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    display: none;
}

/* Responsiveness */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text p { margin: 20px auto 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }
    
    .section { padding: 60px 0; }
    .welcome-box { padding: 30px 20px; }
    .grid-3 { grid-template-columns: 1fr; gap: 20px; }
    
    .hero-benefits { grid-template-columns: 1fr !important; gap: 10px !important; margin: 24px 0 !important; }
    .hero-benefits > div { justify-content: center; }

    .stats-row .grid-3 { grid-template-columns: 1fr; gap: 20px; }
    .stat-item h3 { font-size: 2.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-col { grid-column: span 1 !important; padding-left: 0 !important; }
    
    .sticky-footer { display: block; }
    
    .header-content { flex-direction: column; gap: 15px; padding: 10px 0; }
    .nav-desktop { width: 100%; }
    .nav-desktop .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    h1 { font-size: 2rem; }
    .hero-form-wrapper { padding: 20px; }
    .form-card { padding: 30px 20px; }
    .top-bar-content { flex-direction: column; gap: 5px; text-align: center; }
}

/* Policy Content Overrides */
.form-card {
    background: white;
    border: 1px solid var(--surface-border);
    padding: 60px;
    border-radius: var(--radius-lg);
}