/* ============================================
   DigitalOcean-Inspired Business Strategy Design
   Clean • Elegant • Valuable
   ============================================ */

/* Logo Size Fix */
#brand-img,
.navbar-brand img {
    max-height: 50px !important;
    max-width: 200px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.navbar-brand {
    max-width: 200px !important;
    flex-shrink: 0 !important;
}

/* Ensure navbar doesn't take up too much space */
.navbar {
    padding: 0.75rem 0 !important;
}

.navbar .container {
    align-items: center !important;
}

/* Fix navbar positioning over hero section */
.navbar {
    position: relative !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid var(--neutral-200) !important;
}

/* Ensure strategy hero section starts below navbar */
.strategy-hero {
    margin-top: 0 !important;
    padding-top: var(--spacing-2xl) !important;
}

:root {
    /* Primary Brand Colors */
    --primary-blue: #0066FF;
    --primary-blue-dark: #0052CC;
    --primary-blue-light: #E6F2FF;
    
    /* Supporting Colors */
    --success-green: #00A86B;
    --warning-orange: #FF8C00;
    --info-cyan: #00BCD4;
    --error-red: #E53E3E;
    
    /* Neutral Palette */
    --neutral-50: #F8FAFC;
    --neutral-100: #F1F5F9;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5E1;
    --neutral-400: #94A3B8;
    --neutral-500: #64748B;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1E293B;
    --neutral-900: #0F172A;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
    
    /* Spacing & Layout */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ============================================
   Strategy Hero Section
   ============================================ */

.strategy-hero {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-blue-light) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.strategy-hero .container {
    z-index: 2;
    position: relative;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-sm) var(--spacing-lg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.trust-badge .badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.trust-badge i {
    color: var(--success-green);
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--info-cyan) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--neutral-600);
    max-width: 90%;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.feature-item i {
    font-size: 1.25rem;
    width: 1.5rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.btn-outline:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
    color: var(--neutral-800);
    text-decoration: none;
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.1rem;
}

/* Social Proof */
.social-proof .proof-text {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin: 0;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.logo-item {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
}

/* ============================================
   Dashboard Preview
   ============================================ */

.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
}

.header-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27CA3F; }

.header-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
}

.preview-content {
    padding: var(--spacing-xl);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.metric-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
}

.metric-primary { background: linear-gradient(135deg, var(--primary-blue-light) 0%, rgba(0, 102, 255, 0.1) 100%); }
.metric-success { background: linear-gradient(135deg, rgba(0, 168, 107, 0.1) 0%, rgba(0, 168, 107, 0.05) 100%); }
.metric-info { background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.05) 100%); }
.metric-warning { background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%); }

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.metric-primary .metric-icon { background: var(--primary-blue); color: white; }
.metric-success .metric-icon { background: var(--success-green); color: white; }
.metric-info .metric-icon { background: var(--info-cyan); color: white; }
.metric-warning .metric-icon { background: var(--warning-orange); color: white; }

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-top: 2px;
}

/* Chart Preview */
.chart-preview {
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--neutral-200);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.chart-header h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0;
}

.chart-period {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.trend-chart {
    width: 100%;
    height: 120px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 60%;
    right: -5%;
    animation: float2 8s ease-in-out infinite;
}

.card-3 {
    bottom: 20%;
    right: -15%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-box {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--info-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-blue-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-md);
}

.feature-box p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.feature-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.2s ease;
}

.feature-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: none;
    transform: translateX(5px);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .strategy-hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dashboard-preview {
        margin-top: var(--spacing-2xl);
    }
    
    .preview-content {
        padding: var(--spacing-lg);
    }
    
    .company-logos {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .feature-highlights {
        gap: var(--spacing-sm);
    }
    
    .feature-item {
        font-size: 0.875rem;
    }
    
    .metrics-grid {
        gap: var(--spacing-md);
    }
    
    .metric-card {
        padding: var(--spacing-md);
    }
}

/* ============================================
   Business Login Page
   ============================================ */

.business-login-wrapper {
    min-height: 100vh;
    font-family: var(--font-primary);
}

/* Left Side - Branding */
.login-brand-side {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.login-brand-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.brand-content {
    padding: var(--spacing-3xl);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-icon {
    font-size: 2rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Value Proposition */
.brand-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.brand-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-2xl);
}

/* Benefits List */
.benefits-list {
    margin-bottom: var(--spacing-2xl);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.benefit-content p {
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

/* Social Proof */
.proof-stats {
    display: flex;
    gap: var(--spacing-2xl);
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Right Side - Form */
.login-form-side {
    background: var(--neutral-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

/* Mobile Logo */
.mobile-logo .logo-container {
    justify-content: center;
}

.mobile-logo .logo-icon {
    color: var(--primary-blue);
}

.mobile-logo .logo-text {
    color: var(--neutral-900);
}

/* Form Header */
.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.form-subtitle {
    color: var(--neutral-600);
    text-align: center;
    margin: 0;
}

/* Alerts */
.alert {
    border-radius: var(--radius-lg);
    border: none;
    padding: var(--spacing-lg);
}

.alert-success {
    background: rgba(0, 168, 107, 0.1);
    color: var(--success-green);
}

.alert-danger {
    background: rgba(229, 62, 62, 0.1);
    color: var(--error-red);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.alert-icon {
    font-size: 1.125rem;
}

/* Social Login */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    background: white;
}

.social-btn:hover {
    border-color: var(--neutral-300);
    background: var(--neutral-50);
    text-decoration: none;
    transform: translateY(-1px);
}

.social-btn-google {
    color: var(--neutral-700);
}

.social-btn-facebook {
    color: #1877F2;
}

.social-btn-linkedin {
    color: #0A66C2;
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neutral-200);
}

.divider-text {
    background: var(--neutral-50);
    color: var(--neutral-500);
    padding: 0 var(--spacing-lg);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* Form Fields */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.forgot-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: none;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: var(--spacing-lg);
    color: var(--neutral-400);
    z-index: 2;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 3rem;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white !important;
    color: var(--neutral-800) !important;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    background: white !important;
    color: var(--neutral-800) !important;
}

.form-control.is-invalid {
    border-color: var(--error-red);
    background: white !important;
    color: var(--neutral-800) !important;
}

/* Extra specific selectors to override any conflicting styles */
input.form-control,
input[type="email"].form-control,
input[type="password"].form-control {
    background: white !important;
    color: #1E293B !important;
}

input.form-control:focus,
input[type="email"].form-control:focus,
input[type="password"].form-control:focus {
    background: white !important;
    color: #1E293B !important;
}

.password-toggle {
    position: absolute;
    right: var(--spacing-lg);
    background: none;
    border: none;
    color: var(--neutral-400);
    cursor: pointer;
    padding: var(--spacing-sm);
    z-index: 2;
}

.password-toggle:hover {
    color: var(--neutral-600);
}

.invalid-feedback {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-sm);
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin: 0;
    cursor: pointer;
}

/* Submit Button */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Form Footer */
.signup-prompt {
    text-align: center;
    color: var(--neutral-600);
    margin: 0;
}

.signup-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.signup-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: none;
}

/* Security Note */
.security-note {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--neutral-200);
}

.security-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.security-icon {
    color: var(--success-green);
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-text small {
    color: var(--neutral-500);
    line-height: 1.4;
}

.security-link {
    color: var(--primary-blue);
    text-decoration: none;
}

.security-link:hover {
    text-decoration: underline;
}

/* Responsive Login */
@media (max-width: 992px) {
    .login-brand-side {
        display: none;
    }
    
    .login-form-side {
        background: white;
    }
    
    .brand-content {
        padding: var(--spacing-2xl);
    }
    
    .proof-stats {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .login-form-side {
        padding: var(--spacing-lg);
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .brand-title {
        font-size: 1.75rem;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: left;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
        text-align: left;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    /* Mobile logo adjustments */
    #brand-img,
    .navbar-brand img {
        max-height: 40px !important;
        max-width: 150px !important;
    }
    
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .strategy-hero {
        padding-top: var(--spacing-lg) !important;
    }
}