/* ============================================================================
   GENDOSAI LEAD GENERATION PAGE — DESIGN SYSTEM & STYLES
   Inherits brand identity from gendosai.com
   ============================================================================ */

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================================
   DESIGN TOKENS
   ============================================================================ */
:root {
    /* Colors — Dark Theme (matches main site) */
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #1e293b;
    --secondary-light: #475569;
    --accent-color: #06b6d4;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-dark: #020617;
    --bg-card: #1e293b;
    --border-color: #334155;
    --border-light: #475569;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-mesh: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                     radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                     radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.3);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
    --shadow-glow-lg: 0 0 40px rgba(59, 130, 246, 0.2);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Success / Error */
    --success-color: #10b981;
    --error-color: #ef4444;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.15;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
    font-family: var(--font-primary);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-smooth);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s var(--ease-smooth);
    background: transparent;
}

.nav.scrolled {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 var(--space-lg);
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    display: none;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

@media (min-width: 768px) {
    .nav-link {
        display: inline-flex;
    }
}

.nav-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 5rem;
}

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

/* Animated mesh gradient background */
.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    animation: meshFloat 12s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(15px, -15px) scale(1.02); opacity: 0.7; }
    50% { transform: translate(-10px, 20px) scale(1.05); opacity: 0.6; }
    75% { transform: translate(20px, 10px) scale(1.02); opacity: 0.8; }
}

/* Animated grid lines */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb--1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.12);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.1);
    bottom: 10%;
    left: -5%;
    animation-delay: -3s;
}

.hero-orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.08);
    top: 40%;
    left: 30%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-3xl);
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
    animation: fadeInUp 0.8s var(--ease-smooth) both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-badge-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.03em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: var(--space-md);
    letter-spacing: -0.025em;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.1s both;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 540px;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

.hero-stat {
    text-align: center;
    padding: var(--space-sm);
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease-smooth);
}

.hero-stat:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================================
   LEAD CAPTURE FORM (Hero)
   ============================================================================ */
.hero-form-wrapper {
    animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.lead-form-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.6);
    border-radius: 20px;
    padding: var(--space-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.lead-form-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.lead-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.lead-form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    position: relative;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), var(--shadow-glow);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-error {
    font-size: 0.8125rem;
    color: var(--error-color);
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .form-input,
.form-group.error .form-select {
    border-color: var(--error-color);
}

.form-group.error .form-error {
    display: block;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.0625rem;
    margin-top: 0.25rem;
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-trust-icon {
    width: 14px;
    height: 14px;
    color: var(--text-light);
}

.form-trust-text {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Form Success State */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-xl) var(--space-sm);
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s var(--ease-smooth);
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    animation: successPop 0.5s var(--ease-bounce);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success-icon svg {
    color: var(--success-color);
}

.form-success-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.form-success-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ============================================================================
   PAIN POINTS SECTION
   ============================================================================ */
.pain-points {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pain-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transition: left 0.4s var(--ease-smooth);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(59, 130, 246, 0.3);
}

.pain-card:hover::before {
    left: 0;
}

.pain-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    transition: all 0.3s var(--ease-smooth);
}

.pain-card:hover .pain-icon {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.05) rotate(3deg);
}

.pain-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.pain-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   SOLUTIONS SECTION
   ============================================================================ */
.solutions {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-card {
    background: rgba(15, 23, 42, 0.6);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.04), transparent);
    transition: left 0.6s;
}

.solution-card:hover::after {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
}

.solution-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
    margin-bottom: var(--space-md);
    transition: transform 0.3s var(--ease-smooth);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
}

.solution-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.solution-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    position: relative;
    padding-left: var(--space-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
    line-height: 1.5;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================================================ */
.social-proof {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: var(--space-xl);
    position: relative;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.testimonial-metric {
    text-align: center;
    padding: var(--space-sm);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-md);
    border-left: 3px solid var(--primary-color);
    font-style: italic;
    flex: 1;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ============================================================================
   PROCESS (HOW IT WORKS)
   ============================================================================ */
.process {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

/* Connecting line between steps (desktop only) */
@media (min-width: 768px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 44px;
        left: calc(16.67% + 24px);
        right: calc(16.67% + 24px);
        height: 2px;
        background: var(--gradient-primary);
        opacity: 0.3;
        z-index: 0;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), 0 0 35px rgba(59, 130, 246, 0.4);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

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

/* ============================================================================
   FINAL CTA SECTION
   ============================================================================ */
.final-cta {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

/* Background accents for CTA */
.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.final-cta-bg .hero-orb {
    filter: blur(100px);
    opacity: 0.5;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .final-cta-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.final-cta-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .final-cta-text {
        text-align: left;
        padding-top: var(--space-xl);
    }
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 2.75rem;
    }
}

.final-cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 520px;
}

@media (min-width: 1024px) {
    .final-cta-description {
        margin-left: 0;
    }
}

.final-cta-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.final-cta-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Calendly container */
.calendly-container {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
}

.calendly-wrapper {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
}

.calendly-wrapper iframe {
    border-radius: 20px;
    min-height: 680px;
    width: 100%;
    border: none;
    filter: invert(0.85) hue-rotate(180deg) brightness(1) contrast(1);
    background: var(--bg-card);
}

.calendly-fallback {
    text-align: center;
    padding: var(--space-md);
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid var(--border-color);
}

.calendly-fallback p {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .calendly-wrapper iframe {
        min-height: 580px;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: var(--bg-dark);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logo:hover img {
    opacity: 1;
}

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

.footer-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-text a:hover {
    opacity: 0.8;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* AOS-style scroll animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s var(--ease-smooth);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }

/* ============================================================================
   ACCESSIBILITY & PERFORMANCE
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --text-secondary: #ffffff;
        --border-color: #ffffff;
        --bg-primary: #000000;
        --bg-card: #000000;
    }
}

/* Focus styles */
.btn:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================================================
   NAV WORDMARK — leads.gendos
   ============================================================================ */
.nav-logo {
    gap: 0.625rem;
}

.nav-logo-icon {
    height: 30px;
    width: auto;
}

.nav-wordmark {
    font-family: var(--font-mono);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-wordmark-dot {
    color: var(--primary-color);
}

.footer-logo {
    text-decoration: none;
}

.footer-logo .nav-wordmark {
    font-size: 0.9375rem;
    opacity: 0.85;
}

/* ============================================================================
   HERO MORPH HEADLINE — lead.generation → leads.gen → leads.gendos
   ============================================================================ */
.morph-line {
    display: block;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.62em;
    letter-spacing: -0.03em;
    margin-bottom: 0.35em;
    min-height: 1.25em;
    white-space: nowrap;
}

.morph-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    transition: text-shadow 0.8s var(--ease-smooth);
}

.morph-text--settled {
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
}

.morph-cursor {
    display: inline-block;
    width: 0.55em;
    height: 1.05em;
    margin-left: 0.08em;
    background: var(--primary-color);
    vertical-align: text-bottom;
    animation: cursorBlink 0.9s step-end infinite;
    border-radius: 2px;
}

.morph-cursor--done {
    opacity: 0;
    transition: opacity 1s var(--ease-smooth);
}

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

.hero-title-static {
    display: block;
}

/* ============================================================================
   PIPELINE CONSOLE — hero visual
   ============================================================================ */
.console-card {
    background: rgba(2, 6, 23, 0.85);
    border: 1px solid rgba(51, 65, 85, 0.7);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(59, 130, 246, 0.1);
    font-family: var(--font-mono);
}

.console-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.console-dots {
    display: flex;
    gap: 0.4rem;
}

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

.console-dot--red { background: #ef4444; opacity: 0.8; }
.console-dot--yellow { background: #f59e0b; opacity: 0.8; }
.console-dot--green { background: #10b981; opacity: 0.8; }

.console-title {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.console-body {
    padding: 1.25rem;
    min-height: 280px;
    max-height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
}

.console-line {
    font-size: 0.8125rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.console-line--visible {
    opacity: 1;
    transform: translateY(0);
}

.console-line--cmd { color: var(--text-primary); font-weight: 500; }
.console-line--info { color: var(--text-light); }
.console-line--ok { color: var(--success-color); }
.console-line--meet {
    color: var(--primary-light);
    font-weight: 600;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 0.375rem 0.625rem;
}

.console-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid rgba(51, 65, 85, 0.6);
    background: rgba(30, 41, 59, 0.4);
}

.console-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.71875rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ============================================================================
   RESULTS SECTION
   ============================================================================ */
.results {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.result-card {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(10px);
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.result-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
    margin-bottom: var(--space-xs);
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================================================
   HERO BUTTONS ROW
   ============================================================================ */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.25s both;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* ============================================================================
   RESPONSIVE FINE-TUNING
   ============================================================================ */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .morph-line {
        font-size: 0.72em;
    }

    .console-body {
        min-height: 220px;
        max-height: 220px;
    }

    .result-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        text-align: left;
    }

    .testimonial-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta-title {
        font-size: 1.875rem;
    }
}
