/* LEADGENPRO - MODERN LEAD GENERATION LANDING PAGE CSS */
/* AI-Powered Lead Generation Platform Styles - 2025 Design System */

/* TABLE OF CONTENTS */
/*
   1. CSS Reset & Base Styles
   2. Design System (Custom Properties)
   3. Layout & Container System
   4. Animated Background Elements
   5. Navigation & Header
   6. Button System
   7. Hero Section
   8. Trust Section
   9. Features Section
  10. Testimonials Section
  11. Contact Section
  12. Call-to-Action Section
  13. Footer Section
  14. Modal System
  15. Animations & Keyframes
  16. Responsive Design (Mobile-First)
  17. Accessibility Features
*/

/* 1. CSS RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0; /* Let sections align at their actual borders */
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-light);
    overflow-x: hidden;
}

/* 2. DESIGN SYSTEM (CUSTOM PROPERTIES) */
:root {
    /* Color Palette - 2025 Modern Gradients */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    
    /* Solid color palette */
    --color-primary: #667eea;
    --color-secondary: #764ba2;
    --color-accent: #4facfe;
    --color-success: #11998e;
    --color-warning: #f5576c;
    
    /* Background colors */
    --color-bg-primary: #0a0e1a;
    --color-bg-secondary: #1a1f2e;
    --color-bg-tertiary: #242938;
    
    /* Light theme backgrounds */
    --color-bg-light: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-bg-light-tertiary: #f1f5f9;
    
    /* Text colors */
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-light: #94a3b8;
    --color-text-white: #ffffff;
    --color-text-muted: #475569;
    
    /* Typography system */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Fluid typography scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 2rem + 1.25vw, 3rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
    --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
    
    /* Spacing system */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border radius system */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Shadow system */
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 50px rgba(102, 126, 234, 0.3);
    
    /* Animation system */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. LAYOUT & CONTAINER SYSTEM */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* 4. ANIMATED BACKGROUND ELEMENTS */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.gradient-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.gradient-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-gradient);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.gradient-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-gradient);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(20px, 20px) rotate(270deg); }
}

/* 5. NAVIGATION & HEADER */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-primary);
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--space-lg) * 0.9) var(--space-lg);
    width: 100%;
    margin: 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: transform var(--duration-normal) var(--ease-out);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.logo-text .pro {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: calc(var(--space-xl) * 3.5);
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--duration-normal) var(--ease-out);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: calc(var(--space-md) * 2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--duration-normal) var(--ease-out);
}

/* 6. BUTTON SYSTEM */
.btn-primary, .btn-secondary {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--color-bg-light-tertiary);
    color: var(--color-text-primary);
}

/* 7. HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: calc(var(--space-5xl) + 80px) var(--space-lg) var(--space-4xl);
    background: linear-gradient(135deg, #667eea12 0%, #764ba212 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-3xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    animation: slideInUp 0.8s var(--ease-out);
}

.badge-icon {
    font-size: var(--text-lg);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--color-text-primary);
    animation: slideInUp 0.8s var(--ease-out) 0.2s both;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text-white {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    animation: slideInUp 0.8s var(--ease-out) 0.6s both;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-xs);
}

.hero-form {
    max-width: 500px;
    margin: 0 auto;
    animation: slideInUp 0.8s var(--ease-out) 0.8s both;
}

.hero-secondary-cta {
    margin-top: var(--space-xl);
    text-align: center;
}

.btn-learn-more {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-learn-more:hover {
    background: var(--color-bg-light-tertiary);
    color: var(--color-text-primary);
    transform: translateY(-2px);
}

.btn-arrow-down {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-normal) var(--ease-out);
}

.btn-learn-more:hover .btn-arrow-down {
    transform: translateY(2px);
}

.hero-image {
    max-width: 900px;
    margin: var(--space-4xl) auto 0;
    position: relative;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    position: relative;
    z-index: 2;
}

.placeholder-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.placeholder-dimensions {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.placeholder-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 8. TRUST SECTION WITH DASHBOARD BACKGROUND */
.trust-section {
    position: relative;
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
    min-height: 50vh;
}

/* Hero Background Image */
.trust-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.trust-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(147, 51, 234, 0.25);
    mix-blend-mode: multiply;
    z-index: 2;
}

.dashboard-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) saturate(1.0) contrast(1.1);
}

/* Trust Content Layout */
.trust-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    gap: 3rem;
}

/* Title Section at Top Center */
.trust-title-section {
    text-align: center;
    max-width: 500px;
}

.trust-title-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.trust-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Company Logos Horizontal Layout */
.trust-logos-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    width: 100%;
    flex-wrap: wrap;
}

/* Responsive Design for Trust Section */
@media (max-width: 1024px) {
    .trust-content {
        gap: 3rem;
    }
    
    .trust-logos-horizontal {
        gap: 2rem;
        max-width: 800px;
    }
    
    .trust-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .trust-content {
        padding: 2rem 1rem;
        gap: 2.5rem;
    }
    
    .trust-title-box {
        padding: 2rem 1.5rem;
    }
    
    .trust-title {
        font-size: 2rem;
    }
    
    .trust-logos-horizontal {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .trust-logo-card {
        min-height: 120px;
        padding: 1rem;
        width: 100%;
        max-width: 250px;
    }
}

.trust-text {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.logo-placeholder {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--duration-normal) var(--ease-out);
}

.logo-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.logo-content {
    text-align: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.logo-size {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

/* 9. FEATURES SECTION */
.features {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: var(--space-3xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    margin-bottom: var(--space-xl);
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto;
}

.icon-placeholder svg {
    width: 100%;
    height: 100%;
}

.icon-description {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-xs);
    color: var(--color-text-light);
    text-align: center;
    white-space: nowrap;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

.feature-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.feature-metrics {
    display: flex;
    gap: var(--space-md);
}

.metric {
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-3xl);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* 10. TESTIMONIALS SECTION */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-light-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card.featured {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured:hover {
    transform: translateY(-4px) scale(1.02);
}

.rating {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.star {
    color: #fbbf24;
    font-size: var(--text-lg);
}

.testimonial-card blockquote {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    color: var(--color-text-primary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.author-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testimonial-card.featured .avatar-placeholder {
    width: 80px;
    height: 80px;
}

.avatar-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.avatar-initials {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
}

.avatar-size {
    font-size: var(--text-xs);
    opacity: 0.8;
    margin-top: 2px;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.author-title {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.company-growth {
    font-size: var(--text-sm);
    color: var(--color-success);
    font-weight: 600;
}

/* 11. CONTACT SECTION */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-light-tertiary);
}

.contact-content {
    display: block;
    width: 100%;
    padding: 0 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.contact-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);
    display: inline-block;
    transition: all var(--duration-normal) var(--ease-out);
    background: transparent;
    cursor: pointer;
    font-size: var(--text-base);
}

.contact-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.contact-image-section {
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.image-frame {
    position: relative;
    border: 2px dashed rgba(102, 126, 234, 0.45);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.06) 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(1200px 1200px at 50% 0%, rgba(102,126,234,0.12), transparent 50%);
    pointer-events: none;
}

.image-frame:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

.image-frame-inner {
    text-align: center;
    padding: var(--space-2xl);
}

.image-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.image-dimensions {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.image-note {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

/* 12. CALL-TO-ACTION SECTION */
.cta {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: white;
}

.cta-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-lg);
}

.feature-check {
    color: var(--color-success);
    font-weight: 700;
    font-size: var(--text-xl);
}

.cta-signup-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 13. FOOTER SECTION */
.footer {
    background: var(--color-bg-primary);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--duration-normal) var(--ease-out);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: var(--text-2xl);
}

.badge-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-base);
    color: white;
    margin-bottom: var(--space-xs);
}

.badge-subtitle {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.copyright-text {
    margin: 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--duration-normal) var(--ease-out);
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.legal-links span {
    color: rgba(255, 255, 255, 0.5);
}

/* 14. MODAL SYSTEM */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-2xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    animation: modalSlideIn 0.3s var(--ease-out);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: var(--space-2xl) var(--space-2xl) var(--space-lg);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.modal-body {
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
}

.modal-body p {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.modal-footer {
    padding: var(--space-lg) var(--space-2xl) var(--space-2xl);
    text-align: center;
}

/* 15. ANIMATIONS & KEYFRAMES */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* 16. RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-xl);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none; /* Hamburger menu removed */
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: var(--space-4xl) var(--space-lg) var(--space-3xl);
        min-height: auto;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    /* Content Adjustments */
    .trust-logos {
        gap: var(--space-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .feature-card {
        padding: var(--space-xl);
    }
    
    .testimonials-grid {
        gap: var(--space-lg);
    }
    
    .testimonial-card {
        padding: var(--space-xl);
    }
    
    .cta {
        padding: var(--space-3xl) 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-image-section {
        padding: var(--space-2xl);
    }
    
    .image-frame {
        min-height: 240px;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .security-badges {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .badge {
        padding: var(--space-md) var(--space-lg);
    }
    
    .legal-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .legal-links span {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Container Adjustments */
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav-container {
        padding: var(--space-lg) var(--space-sm);
        max-width: none;
        margin: 0;
    }
    
    .nav-links {
        position: static;
        transform: none;
        left: auto;
    }
    
    /* Hero Adjustments */
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-xs) var(--space-md);
    }
    
    .hero-stats {
        gap: var(--space-md);
    }
    
    .stat-number {
        font-size: var(--text-2xl);
    }
    
    /* Trust Logos */
    .trust-logos {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    /* Hero Image */
    .hero-image {
        margin-top: var(--space-2xl);
    }
    
    .hero-image-placeholder {
        padding: var(--space-xl) var(--space-md);
    }
    
    .placeholder-title {
        font-size: var(--text-xl);
    }
    
    .placeholder-dimensions {
        font-size: var(--text-lg);
    }
    
    .placeholder-description {
        font-size: var(--text-base);
    }
}

/* 17. ACCESSIBILITY & SPECIAL MEDIA QUERIES */
@media (prefers-contrast: high) {
    :root {
        --color-text-secondary: #1e293b;
        --color-text-light: #374151;
    }
    
    .btn-secondary {
        border: 2px solid var(--color-text-primary);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-gradient {
        animation: none;
    }
    
    .image-glow {
        animation: none;
    }
}

*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

@media print {
    .navbar,
    .cta,
    .footer,
    .modal,
    .bg-elements {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .features,
    .testimonials {
        break-inside: avoid;
    }
}

/* Form validation styles */
.form-group.error input {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group.error .form-error {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ======================================================================
   TRUST LOGOS SECTION - Professional Company Showcase
   ====================================================================== */

.trust-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logo-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    min-width: 240px;
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.trust-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.trust-logo-card:hover::before {
    left: 100%;
}

.trust-logo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.trust-logo-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.trust-logo-card:hover::after {
    opacity: 1;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.trust-logo-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.trust-logo-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-logo-card:hover .trust-logo-image::before {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trust-logo-image img {
    width: 100%;
    height: 100%;
    max-width: 220px;
    max-height: 140px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.5s ease;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.trust-logo-card:hover .trust-logo-image {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.trust-logo-card:hover .trust-logo-image img {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.trust-company-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-company-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-company-tagline {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    font-style: italic;
    transition: all 0.3s ease;
}

.trust-logo-card:hover .trust-company-info {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-logo-card:hover .trust-company-name {
    color: #0f172a;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-logo-card:hover .trust-company-tagline {
    color: #475569;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trust-logos {
        max-width: 1000px;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-logo-card {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .trust-logo-card {
        padding: 1.5rem 1rem;
        min-height: 260px;
        border-radius: 16px;
    }
    
    .trust-logo-image {
        min-height: 120px;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .trust-logo-image img {
        max-width: 180px;
        max-height: 100px;
        border-radius: 8px;
    }
    
    .trust-company-name {
        font-size: 1.1rem;
    }
    
    .trust-company-tagline {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .trust-logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-logo-card {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .trust-logo-image {
        min-height: 140px;
    }
}

/* ========================================
   ENHANCED FORM STYLES
   ======================================== */

/* Enhanced signup form styles */
.hero-form { 
    max-width: 600px; 
    margin: 0 auto; 
    animation: slideInUp 0.8s ease-out 0.8s both; 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(20px); 
    border-radius: 24px; 
    padding: 2rem; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
}

.form-header { 
    text-align: center; 
    margin-bottom: 2rem; 
}

.form-title { 
    font-family: 'Poppins', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #1e293b; 
    margin-bottom: 0.5rem; 
}

.form-subtitle { 
    color: #64748b; 
    font-size: 1rem; 
}

.signup-form { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
}

.form-group { 
    position: relative; 
    display: flex; 
    flex-direction: column; 
}

.form-group.full-width { 
    grid-column: 1 / -1; 
}

.form-label { 
    font-weight: 500; 
    color: #374151; 
    margin-bottom: 0.5rem; 
    font-size: 0.875rem; 
}

.form-input { 
    width: 100%; 
    padding: 1rem 1.25rem; 
    border: 2px solid #e5e7eb; 
    border-radius: 12px; 
    font-size: 1rem; 
    background: #ffffff; 
    color: #1f2937; 
    transition: all 0.3s ease; 
    outline: none; 
    font-family: inherit; 
}

.form-input:focus { 
    border-color: #667eea; 
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1); 
    transform: translateY(-1px); 
}

.form-input::placeholder { 
    color: #9ca3af; 
}

.form-textarea { 
    min-height: 100px; 
    resize: vertical; 
    font-family: inherit; 
    line-height: 1.5; 
}

.form-submit { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    border: none; 
    padding: 1.25rem 2rem; 
    border-radius: 12px; 
    font-weight: 600; 
    font-size: 1.125rem; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.5rem; 
    margin-top: 1rem; 
    position: relative; 
    overflow: hidden; 
}

.form-submit:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
}

.form-submit:active { 
    transform: translateY(0); 
}

.form-submit:disabled { 
    opacity: 0.7; 
    cursor: not-allowed; 
    transform: none; 
}

.submit-icon { 
    width: 20px; 
    height: 20px; 
    transition: transform 0.3s ease; 
}

.form-submit:hover .submit-icon { 
    transform: translateX(4px); 
}

.form-trust { 
    text-align: center; 
    margin-top: 1.5rem; 
    font-size: 0.875rem; 
    color: #6b7280; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.5rem; 
}

.trust-badges { 
    display: flex; 
    justify-content: center; 
    gap: 1.5rem; 
    margin-top: 1rem; 
    flex-wrap: wrap; 
}

.trust-badge { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: #10b981; 
    font-size: 0.875rem; 
    font-weight: 500; 
}

.form-error { 
    color: #ef4444; 
    font-size: 0.875rem; 
    margin-top: 0.5rem; 
    display: none; 
}

.form-group.error .form-error { 
    display: block; 
}

.loading-spinner { 
    width: 20px; 
    height: 20px; 
    border: 2px solid rgba(255, 255, 255, 0.3); 
    border-top: 2px solid white; 
    border-radius: 50%; 
    animation: spin 1s linear infinite; 
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}

.cta-signup-form { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(20px); 
    padding: 2.5rem; 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4); 
}

.cta-form-header { 
    text-align: center; 
    margin-bottom: 2rem; 
}

.cta-form-title { 
    font-family: 'Poppins', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #1e293b; 
    margin-bottom: 0.5rem; 
}

.cta-form-subtitle { 
    color: #64748b; 
    font-size: 1rem; 
}

/* ========================================
   RESPONSIVE FORM STYLES
   ======================================== */

@media (max-width: 768px) {
    .hero-form { 
        padding: 1.5rem; 
        margin: 0 1rem; 
    }
    
    .form-row { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
    }
    
    .cta-signup-form { 
        padding: 2rem 1.5rem; 
    }
    
    .trust-badges { 
        flex-direction: column; 
        gap: 0.75rem; 
    }
}

@media (max-width: 480px) {
    .hero-form { 
        padding: 1.25rem; 
    }
    
    .form-title { 
        font-size: 1.25rem; 
    }
    
    .form-submit { 
        padding: 1rem 1.5rem; 
        font-size: 1rem; 
    }
}

/* ========================================
   INLINE STYLE REPLACEMENTS
   ======================================== */

/* Hidden honeypot form fields */
.honeypot-field {
    display: none !important;
}

/* SVG gradient stop colors */
.gradient-stop-primary {
    stop-color: #667eea;
}

.gradient-stop-secondary {
    stop-color: #764ba2;
}

.gradient-stop-pink-1 {
    stop-color: #f093fb;
}

.gradient-stop-pink-2 {
    stop-color: #f5576c;
}

.gradient-stop-blue-1 {
    stop-color: #4facfe;
}

.gradient-stop-blue-2 {
    stop-color: #00f2fe;
}

/* Footer link styling */
.footer-designer-link {
    color: inherit;
    text-decoration: underline;
}

/* Legal page links */
.legal-page-link {
    text-decoration: underline;
}

/* 404 page info box */
.error-info-box {
    margin-top: 40px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.error-info-text {
    margin: 0;
    font-weight: 500;
    color: #374151;
}

/* ========================================
   PRIVACY POLICY & LEGAL PAGES
   ======================================== */

/* CSS Custom Properties for Legal Pages */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --color-primary: #667eea;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-bg-light: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Legal Pages use the same navbar styles as main site */

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.logo-text .pro {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.back-home {
    padding: 0.5rem 1rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: transform 0.2s ease;
}

.back-home:hover {
    transform: translateY(-2px);
}

/* Container & Layout for Legal Pages */
.legal-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 1.5rem 3rem;
}

/* Header Section for Legal Pages */
.legal-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.intro {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections for Legal Pages */
.legal-page-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.section {
    margin-bottom: 3rem;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.section p {
    margin-bottom: 1rem;
}

.section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section li {
    margin-bottom: 0.5rem;
}

/* Highlight Boxes */
.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    margin: 1.5rem 0;
}

.important-notice {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid #f5576c;
    margin: 1.5rem 0;
}

/* Contact Information */
.contact-info {
    background: var(--color-bg-light-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 2rem;
}

.contact-email {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Legal Page Footer */
.legal-page-footer {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-secondary);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.legal-page-links {
    font-size: 1rem;
}

.legal-page-copyright {
    margin: 0;
    font-size: 1rem;
}

.legal-page-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-page-footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Legal Pages */
@media (max-width: 768px) {
    .legal-page-container {
        padding: 8rem 1rem 2rem;
    }
    
    .legal-page-content {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: var(--space-lg) var(--space-sm);
        max-width: none;
        margin: 0;
    }
    
    .logo-text {
        font-size: var(--text-xl);
    }
    
    .back-home {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   HERO DASHBOARD IMAGE SECTION
   ======================================== */

.hero-image {
    margin-top: 3rem;
    position: relative;
    max-width: 1400px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-image {
    width: 100%;
    height: 60vh;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .dashboard-image {
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(102, 126, 234, 0.4) 0deg,
        rgba(118, 75, 162, 0.4) 90deg,
        rgba(240, 147, 251, 0.4) 180deg,
        rgba(245, 87, 108, 0.4) 270deg,
        rgba(102, 126, 234, 0.4) 360deg
    );
    border-radius: 50px;
    filter: blur(30px);
    opacity: 0.6;
    z-index: -1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive styles for hero dashboard */
@media (max-width: 768px) {
    .hero-image {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .hero-image-container {
        border-radius: 16px;
    }
    
    .dashboard-image {
        border-radius: 16px;
    }
    
    .image-glow {
        top: -30px;
        left: -30px;
        right: -30px;
        bottom: -30px;
        border-radius: 30px;
        filter: blur(20px);
    }
}

@media (max-width: 480px) {
    .hero-image {
        margin-top: 1.5rem;
    }
    
    .hero-image-container {
        border-radius: 12px;
    }
    
    .dashboard-image {
        border-radius: 12px;
    }
}

/* ========================================
   FEATURE ICONS SECTION
   ======================================== */

/* Feature icon container styling */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.feature-icon-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-icon-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(102, 126, 234, 0.3) 0deg,
        rgba(118, 75, 162, 0.3) 90deg,
        rgba(240, 147, 251, 0.3) 180deg,
        rgba(245, 87, 108, 0.3) 270deg,
        rgba(102, 126, 234, 0.3) 360deg
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-icon-image:hover::before {
    opacity: 0.6;
}

.icon-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-icon-image:hover .icon-img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Feature card hover effects */
.feature-card:hover .feature-icon-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Add glow animation for feature icons */
@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(118, 75, 162, 0.4);
    }
}

.feature-card:hover .feature-icon-image {
    animation: iconGlow 2s ease-in-out infinite;
}

/* Responsive feature icon styles */
@media (max-width: 768px) {
    .feature-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon-image {
        border-radius: 16px;
    }
    
    .icon-img {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .feature-icon-image {
        border-radius: 12px;
    }
    
    .icon-img {
        width: 95px;
        height: 95px;
    }
}

/* ========================================
   CONTACT SECTION HORIZONTAL LAYOUT
   ======================================== */

/* Contact section container */
.contact {
    padding: var(--space-5xl) 0;
    background: #ffffff;
}


/* Horizontal contact cards layout */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.contact-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.contact-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive layout for contact cards */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-link {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact .section-header {
        margin-bottom: 2rem;
    }
    
    .contact-info-cards {
        gap: 1.25rem;
    }
    
    .contact-card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }
    
    .contact-icon {
        font-size: 2.25rem;
    }
    
    .contact-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}