/* ================================
   HOME PAGE SPECIFIC STYLES
   ================================ */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(14, 14, 17, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    overflow: visible;
}

.navbar .container {
    overflow: visible;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1002;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--text-primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #a855f7);
    border-radius: 2px;
}

.nav-dropdown-toggle.active::after {
    display: none;
}

.nav-dropdown-toggle.has-active-child {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.nav-dropdown-toggle.has-active-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #a855f7);
    border-radius: 2px;
    display: block !important;
}

.nav-dropdown-toggle.has-active-child .dropdown-chevron {
    color: #3b82f6 !important;
    opacity: 1 !important;
}

.dropdown-chevron {
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.nav-dropdown:hover .dropdown-chevron {
    opacity: 1;
    transform: translateY(1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1001;
}

/* Hero Section - Optimized for Above-the-Fold */
.hero {
    position: relative;
    padding-top: calc(var(--navbar-height) + var(--spacing-xl));
    padding-bottom: var(--spacing-2xl);
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero .badge {
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: stretch;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Hero CTA - Primary emphasized */
.btn-hero {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

/* Ghost button for secondary action */
.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    max-width: 200px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    transform: translateY(0);
}

/* Hero Trust - IDE Badges */
.hero-trust {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.hero-trust .trust-label {
    text-align: center;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-sm);
}

.hero-ide-badges {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ide-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.ide-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
    position: relative;
}

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


.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-subtext {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}

/* Code Mockup - Enhanced Contrast */
.code-mockup {
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(15, 15, 22, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(59, 130, 246, 0.15), var(--shadow-glow-blue);
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mockup-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.375rem 0.75rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--blue);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.mockup-content {
    padding: var(--spacing-lg);
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.9375rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.3);
}

.code-line {
    display: flex;
    gap: var(--spacing-md);
}

.line-number {
    color: var(--text-tertiary);
    user-select: none;
    min-width: 20px;
}

.keyword { color: #e879f9; font-weight: 600; }
.function { color: #60a5fa; font-weight: 600; }
.property { color: #fbbf24; font-weight: 500; }
.string { color: #86efac; font-weight: 500; }

.ai-suggestion {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(59, 130, 246, 0.12);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.2);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--blue);
}

.ai-suggestion p {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.ai-suggestion code {
    padding: 0.125rem 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--blue);
}

.ai-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-approve,
.btn-dismiss {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    font-family: inherit;
}

.btn-approve {
    background: var(--accent-gradient);
    color: var(--text-primary);
}

.btn-approve:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.btn-dismiss {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.btn-dismiss:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Problem Section - Detailed */
.problem-section {
    background: #0E0E11;
    padding: calc(var(--spacing-3xl) * 1) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-section .section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto var(--spacing-2xl);
}

.problem-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.problem-section .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
}

.problem-card {
    padding: 2rem;
    background: rgba(26, 26, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all 0.25s ease-out;
    height: 100%;
    opacity: 0;
    animation: fadeInCard 0.6s ease-out forwards;
}

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

.problem-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.3);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.4;
}

.problem-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.problem-description:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.problem-description code {
    padding: 0.125rem 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.875em;
    color: var(--text-primary);
    font-family: 'Monaco', 'Menlo', monospace;
}

.problem-examples {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: 0;
    padding: 0;
}

.problem-examples li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.problem-examples li::before {
    content: '→';
    color: rgba(168, 85, 247, 0.6);
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 2px;
}

.problem-impact {
    max-width: 900px;
    margin: var(--spacing-2xl) auto 0;
    padding: var(--spacing-xl);
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
}

.impact-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.impact-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Solution Section - Card Based Layout */
.solution-section {
    background: var(--bg-primary);
    padding: calc(var(--spacing-3xl) * 1.2) 0;
}

.solution-section .section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto var(--spacing-2xl);
}

.solution-step-card {
    position: relative;
    text-align: center;
    padding: var(--spacing-2xl);
    background: rgba(26, 26, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.solution-step-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.25);
    background: rgba(26, 26, 31, 0.8);
}

.step-number-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    border: 3px solid var(--bg-primary);
}

.solution-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.solution-step-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.solution-step-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Network Background - Subtle */
.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.network-lines {
    width: 100%;
    height: 100%;
}

.network-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
}

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

.network-node {
    animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Early Social Proof */
.early-social-proof {
    padding: calc(var(--spacing-3xl) * 1.2) 0;
    background: rgba(26, 26, 31, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof-intro {
    text-align: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-lg);
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.company-logo {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.company-logo:hover {
    opacity: 1;
}

/* How It Works Section */
.how-it-works {
    background: rgba(26, 26, 31, 0.3);
    padding: calc(var(--spacing-3xl) * 1.5) 0;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

/* Features Section */
.features {
    background: var(--bg-primary);
}

/* Pricing Section */
.pricing-section {
    background: rgba(26, 26, 31, 0.3);
}

.pricing-note {
    margin-top: var(--spacing-md);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* Why Codesona Section */
.why-codesona {
    background: var(--bg-primary);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.comparison-item::before {
    content: '✗';
    flex-shrink: 0;
    font-weight: 700;
    color: #6b7280;
    margin-top: 2px;
}

.comparison-item.positive {
    color: var(--text-primary);
}

.comparison-item.positive::before {
    content: '✓';
    color: var(--blue);
}

/* Quick Features Section */
.quick-features-section {
    background: var(--bg-primary);
    padding: calc(var(--spacing-3xl) * 1.2) 0;
}

.feature-preview-card {
    padding: var(--spacing-2xl);
    background: rgba(26, 26, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    height: 100%;
}

.feature-preview-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.feature-preview-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-preview-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-preview-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--blue);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.feature-link:hover {
    gap: var(--spacing-sm);
    color: var(--purple);
}

/* Social Proof Section */
.social-proof-section {
    background: rgba(26, 26, 31, 0.3);
    padding: calc(var(--spacing-3xl) * 1.2) 0;
}

.testimonial-quote-card {
    padding: var(--spacing-2xl);
    background: rgba(26, 26, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    height: 100%;
}

.testimonial-quote-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.15);
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: rgba(59, 130, 246, 0.2);
    margin-bottom: var(--spacing-md);
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* Testimonials Section */
.testimonials {
    background: rgba(26, 26, 31, 0.3);
}

.testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* Footer */
.footer {
    background: rgba(14, 14, 17, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    color: var(--text-tertiary);
    font-size: 0.9375rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-newsletter-text {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.footer-newsletter {
    display: flex;
    gap: var(--spacing-xs);
}

.newsletter-input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: var(--text-tertiary);
}

.newsletter-button {
    padding: 0.625rem 1rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Video Modal */
.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
}

.video-placeholder svg {
    margin-bottom: var(--spacing-lg);
}

/* CTA Section */
.cta-section {
    background: rgba(26, 26, 31, 0.4);
    padding: calc(var(--spacing-3xl) * 1.5) 0;
    text-align: center;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: var(--spacing-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding-top: calc(var(--navbar-height) + var(--spacing-lg));
        padding-bottom: var(--spacing-xl);
    }
    
    .hero .badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-ghost {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .hero-ctas {
        gap: var(--spacing-md);
    }
    
    .ide-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .code-mockup {
        max-width: 100%;
    }
    
    .mockup-content {
        font-size: 0.875rem;
    }
    
    .nav-menu {
        gap: var(--spacing-lg);
    }
    
    .solution-step-card {
        padding: var(--spacing-xl);
    }
    
    .solution-step-card h3 {
        font-size: 1.25rem;
    }
    
    .solution-step-card p {
        font-size: 0.875rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--navbar-height) + var(--spacing-md));
        padding-bottom: var(--spacing-lg);
    }
    
    .hero .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
    }
    
    .hero-ctas {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        line-height: 1.3;
    }
    
    .btn-subtext {
        font-size: 0.6875rem;
        line-height: 1.2;
    }
    
    .btn-ghost {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-ghost svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-trust {
        margin-bottom: var(--spacing-md);
    }
    
    .trust-label {
        font-size: 0.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-ide-badges {
        flex-direction: row;
        gap: 0.375rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ide-badge {
        flex: 0 1 auto;
        min-width: auto;
        justify-content: center;
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }
    
    .ide-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm) 0;
        margin-bottom: var(--spacing-md);
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .stat-value {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .problem-icon {
        font-size: 2rem;
    }
    
    .problem-card h3 {
        font-size: 1.125rem;
    }
    
    .problem-description {
        font-size: 0.9375rem;
    }
    
    .problem-examples li {
        font-size: 0.8125rem;
    }
    
    .problem-impact {
        margin-top: var(--spacing-xl);
        padding: var(--spacing-lg);
    }
    
    .impact-text {
        font-size: 0.9375rem;
    }
    
    .problem-section .section-title {
        font-size: 1.75rem;
    }
    
    .problem-section .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .solution-step-card {
        padding: var(--spacing-lg);
    }
    
    .solution-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .step-number-badge {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
        top: -14px;
    }
    
    .code-mockup {
        font-size: 0.6875rem;
        margin-bottom: var(--spacing-md);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        transform: scale(0.95);
        transform-origin: center center;
    }
    
    .mockup-header {
        padding: var(--spacing-xs);
    }
    
    .mockup-title {
        font-size: 0.6875rem;
    }
    
    .mockup-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.625rem;
    }
    
    .mockup-dots span {
        width: 8px;
        height: 8px;
    }
    
    .mockup-content {
        padding: var(--spacing-xs);
        font-size: 0.75rem;
        overflow-x: auto;
    }
    
    .line-number {
        min-width: 16px;
    }
    
    .ai-suggestion {
        padding: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .ai-header {
        font-size: 0.8125rem;
    }
    
    .ai-header svg {
        width: 16px;
        height: 16px;
    }
    
    .ai-suggestion p {
        font-size: 0.8125rem;
    }
    
    .ai-actions {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .btn-approve,
    .btn-dismiss {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .company-logos {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .feature-preview-card {
        padding: var(--spacing-lg);
    }
    
    .feature-preview-icon {
        font-size: 2rem;
    }
    
    .feature-preview-card h3 {
        font-size: 1.125rem;
    }
    
    .testimonial-quote-card {
        padding: var(--spacing-lg);
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
    
    .cta-section {
        padding: calc(var(--spacing-3xl) * 1) 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.9375rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Additional small mobile breakpoint */
@media (max-width: 480px) {
    .hero {
        padding-top: calc(var(--navbar-height) + var(--spacing-sm));
        padding-bottom: var(--spacing-md);
    }
    
    .hero .badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-ctas {
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .btn-subtext {
        font-size: 0.625rem;
        line-height: 1.2;
        margin-top: 1px;
    }
    
    .btn-ghost {
        width: 100%;
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .hero-trust {
        margin-bottom: var(--spacing-sm);
    }
    
    .trust-label {
        font-size: 0.6875rem;
    }
    
    .ide-badge {
        flex: 0 1 auto;
        min-width: auto;
        padding: 0.3125rem 0.5rem;
        font-size: 0.6875rem;
    }
    
    .ide-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.375rem;
        padding: var(--spacing-xs) 0;
        margin-bottom: var(--spacing-sm);
    }
    
    .stat-item {
        flex: 1;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.5625rem;
    }
    
    .code-mockup {
        font-size: 0.625rem;
        transform: scale(0.9);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        transform-origin: center center;
    }
    
    .mockup-header {
        padding: 0.375rem;
    }
    
    .mockup-title {
        font-size: 0.625rem;
    }
    
    .mockup-badge {
        padding: 0.25rem 0.375rem;
        font-size: 0.5625rem;
    }
    
    .mockup-dots span {
        width: 7px;
        height: 7px;
        gap: 3px;
    }
    
    .mockup-content {
        padding: 0.375rem;
        font-size: 0.6875rem;
    }
    
    .ai-suggestion {
        padding: 0.5rem;
    }
    
    .ai-header {
        font-size: 0.75rem;
    }
    
    .ai-suggestion p {
        font-size: 0.75rem;
    }
    
    .btn-approve,
    .btn-dismiss {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .solution-step-card {
        padding: var(--spacing-md);
    }
    
    .solution-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .step-number-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: -12px;
    }
    
    .solution-step-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-preview-icon {
        font-size: 1.75rem;
    }
    
    .problem-card {
        padding: 1.25rem;
    }
    
    .problem-icon {
        font-size: 1.75rem;
    }
    
    .problem-card h3 {
        font-size: 1rem;
    }
    
    .problem-description {
        font-size: 0.875rem;
    }
    
    .problem-examples {
        gap: 0.375rem;
    }
    
    .problem-examples li {
        font-size: 0.75rem;
    }
    
    .problem-impact {
        padding: 1rem;
        margin-top: var(--spacing-lg);
    }
    
    .impact-text {
        font-size: 0.875rem;
    }
    
    .problem-section .section-title {
        font-size: 1.5rem;
    }
    
    .problem-section .section-subtitle {
        font-size: 0.875rem;
    }
}

/* === HERO SECTION FULL WIDTH FIX === */
.hero {
    width: 100%;
    background: inherit;
}

.hero > .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Remove restrictive widths */
.hero-content {
    max-width: none !important;
    width: 100%;
}

.hero-title,
.hero-subtitle {
    max-width: 900px !important;
    margin-left: auto;
    margin-right: auto;
}

/* Larger subtitle font */
.hero-subtitle {
    font-size: 20px !important;
    line-height: 1.7 !important;
}

.hero-ctas,
.hero-stats,
.hero-trust {
    max-width: none !important;
    width: 100%;
}

/* Increase gap between CTA buttons */
.hero-ctas {
    gap: 24px !important;
}

/* Allow hero text to fill available space */
.hero-content {
    flex: 1 1 600px;
    padding-right: 32px;
}

/* Keep code mockup full width like stats */
.hero .code-mockup {
    flex: 1 1 100%;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero > .container {
        flex-direction: column;
        text-align: center;
        padding-inline: 16px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero .code-mockup {
        max-width: 100%;
        margin-top: 40px;
    }
}
