/* =========================================
   8989.ai - Bold Cinematic Brutalist Styles
   Inspired by Foundbase aesthetic
   ========================================= */

   :root {
    /* Color System */
    --black: #0a0a0a;
    --black-secondary: #111111;
    --black-tertiary: #1a1a1a;
    --white: #ffffff;
    --gray-light: #888888;
    --gray-mid: #666666;
    --gray-dark: #333333;
    
    /* Accent Colors*/
    --accent-primary: #00C853;
    --accent-secondary: #00B368;
    --accent-gradient: linear-gradient(135deg, #00A86B 0%, #00a855 100%);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, system-ui, sans-serif;
    
    /* Spacing */
    --container-max: 1400px;
    --section-padding: 120px;
    
    /* Animation */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =========================================
   RESET & BASE
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

a:hover {
    color: var(--accent-secondary);
}

/* =========================================
   LOADING SCREEN
   ========================================= */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.8s var(--ease-smooth) 2s forwards;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    animation: pulse 2s var(--ease-smooth) infinite;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--accent-gradient);
    width: 0;
    animation: loadProgress 2s var(--ease-smooth) forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* =========================================
   UTILITIES
   ========================================= */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.desktop-only {
    display: inline;
}

/* Gradient Text */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* =========================================
   ANIMATIONS
   ========================================= */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s var(--ease-smooth) 0.3s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--ease-smooth) 0.5s forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.7s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.9s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   BUTTONS
   ========================================= */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s var(--ease-smooth);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s var(--ease-smooth) infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00ff88 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 40px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 30px;
}

.hero-headline {
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.hero-subheadline {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    color: var(--gray-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.trust-stat {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: scrollPulse 2s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        height: 60px;
    }
    50% {
        opacity: 0.3;
        height: 40px;
    }
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--gray-light);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-dark);
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tool Cards with Links */
.tool-card {
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
    padding: 100px 0;
    position: relative;
}

/* =========================================
   SECTION HEADERS
   ========================================= */

.section-header {
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.section-eyebrow.centered {
    text-align: center;
}

.section-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-top: 20px;
}

/* =========================================
   PROCESS SECTION
   ========================================= */

.process-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.process-step {
    position: relative;
    padding-left: 40px;
}

.step-number-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

.step-content {
    padding-left: 40px;
}

.step-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* =========================================
   PRICING SECTION
   ========================================= */

.pricing-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.orb-3 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #00ff88 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid var(--glass-border);
}

.popular-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.05;
    border-radius: 20px;
    filter: blur(40px);
    z-index: -1;
}

.plan-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.plan-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--gray-light);
}

.plan-badge.popular {
    background: var(--accent-gradient);
    color: var(--black);
    border: none;
}

.plan-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-light);
}

.amount {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.period, .period-plus {
    font-size: 18px;
    color: var(--gray-light);
    font-weight: 500;
}

.plan-tagline {
    font-size: 14px;
    color: var(--gray-light);
}

.plan-features {
    margin-bottom: 40px;
}

.feature-category {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-light);
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--accent-primary);
    margin-top: 2px;
}

.plan-cta {
    width: 100%;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.plan-cta.featured-cta {
    background: var(--accent-gradient);
    color: var(--black);
    border: none;
}

.plan-cta.featured-cta:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

/* =========================================
   PROOF SECTION
   ========================================= */

.proof-section {
    padding: var(--section-padding) 0;
}

.proof-content {
    padding: 60px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 200px 1px 1fr;
    gap: 60px;
    align-items: center;
}

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

.stat-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.proof-quote {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 30px;
    font-style: italic;
}

.proof-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: var(--gray-light);
}

/* =========================================
   TOOLS SECTION
   ========================================= */

.tools-section {
    padding: var(--section-padding) 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tool-item {
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    color: var(--gray-light);
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* =========================================
   FINAL CTA
   ========================================= */

.final-cta {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.orb-4 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00ff88 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-5 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-headline {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.final-cta-subheadline {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

.final-cta-button {
    padding: 24px 48px;
    font-size: 18px;
    margin-bottom: 30px;
}

.final-cta-guarantee {
    font-size: 14px;
    color: var(--gray-mid);
    font-style: italic;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--black-secondary);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-text {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray-mid);
}

/* =========================================
   MODAL
   ========================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    animation: fadeIn 0.3s var(--ease-smooth);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.modal-content {
    position: relative;
    padding: 60px;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s var(--ease-smooth);
}

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

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
}

.modal-close svg {
    stroke: var(--white);
}

.modal-header {
    margin-bottom: 40px;
}

.modal-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--gray-light);
}

/* =========================================
   FORM
   ========================================= */

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--white);
    font-family: var(--font-primary);
    transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    font-size: 14px;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

.submit-button {
    width: 100%;
    padding: 20px 40px;
    background: var(--accent-gradient);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-mid);
    margin-top: 10px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .proof-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .proof-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 40px 30px;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Integrations Section */
.integrations-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.integrations-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.integrations-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.integration-category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.tools-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    min-height: 120px;
    width: 100%;
    max-width: 140px;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.tool-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s var(--ease-smooth);
}

.tool-card:hover .tool-logo {
    opacity: 1;
}

.tool-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-light);
    text-align: center;
    line-height: 1.2;
}

.tool-card:hover .tool-name {
    color: var(--white);
}

/* Integrations responsive adjustments */
@media (max-width: 768px) {
    .integrations-grid {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .tools-row {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .tool-card {
        padding: 1rem 0.75rem;
        min-height: 100px;
        max-width: 120px;
    }
    
    .tool-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .tool-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tools-row {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .tool-card {
        padding: 0.75rem 0.5rem;
        min-height: 90px;
        max-width: 100px;
    }
    
    .tool-logo {
        width: 36px;
        height: 36px;
    }
    
    .tool-name {
        font-size: 0.75rem;
    }
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 80px;
    background: var(--black);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.policy-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 500;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content section {
    margin-bottom: 3rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.policy-content strong {
    color: var(--white);
    font-weight: 600;
}

/* Footer Policies */
.footer-policies {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-policies a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s var(--ease-smooth);
}

.footer-policies a:hover {
    color: var(--accent-primary);
}

/* Policy page responsive */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-content {
        padding: 0 1rem;
    }
    
    .policy-content h2 {
        font-size: 1.25rem;
    }
    
    .footer-policies {
        gap: 1rem;
    }
    
    .footer-policies a {
        font-size: 12px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-left: 1px solid var(--gray-dark);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-dark);
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--gray-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
}

.mobile-menu-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    color: var(--gray-light);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
    font-weight: 500;
    font-size: 1rem;
}

.mobile-menu-link:hover {
    color: var(--white);
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(4px);
}

.mobile-menu-link svg {
    opacity: 0.6;
    transition: opacity 0.3s var(--ease-smooth);
}

.mobile-menu-link:hover svg {
    opacity: 1;
}

.mobile-menu-cta {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-dark);
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links.desktop-only,
    .nav-cta.desktop-only {
        display: none;
    }
    
    .mobile-menu-content {
        width: 100%;
        border-left: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
    }
    
    .mobile-menu-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .mobile-menu-nav {
        padding: 1.5rem 1rem;
    }
    
    .mobile-menu-cta {
        padding: 1rem;
    }
    
    .mobile-menu-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}