/* --------------------------------------------------
 * Kavron AI Landing Page Stylesheet
 * Premium, Enterprise-Grade, Minimalist Light Theme
 * Theme Accents: Sky Blue & Teal
 * -------------------------------------------------- */

/* Root Design Tokens */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.75);
    --border-card: rgba(15, 23, 42, 0.06);
    --border-card-hover: rgba(15, 23, 42, 0.12);
    
    --accent-blue: #0ea5e9;       /* Sky Blue */
    --accent-purple: #0d9488;     /* Teal */
    --accent-magenta: #06b6d4;    /* Cyan */
    --accent-green: #059669;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --gradient-primary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 50%, var(--accent-magenta) 100%);
    --gradient-primary-glow: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(13, 148, 136, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
    --gradient-accent: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Interactive Canvas Background */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Container Structure */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.accent-text {
    color: var(--accent-purple);
}

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

.w-full {
    width: 100%;
}

/* Glassmorphism General Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-card-hover);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04), 
                0 0 20px rgba(13, 148, 136, 0.02);
}

/* Glowing Border Effect for Service cards */
.hover-glow:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06), 
                0 0 30px rgba(14, 165, 233, 0.04);
    transform: translateY(-4px);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    gap: 8px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 17px;
    border-radius: 10px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-purple) 50%, var(--accent-blue) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35), 0 0 15px rgba(6, 182, 212, 0.15);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

.arrow-icon {
    transition: var(--transition-fast);
}

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

/* Header & Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 12px 0;
}

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

.navbar.scrolled .nav-container {
    padding: 10px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-purple);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Switch */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    padding: 100px 32px 32px 32px;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-card);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

.mobile-nav-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Active Mobile Button State animation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-glow-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 148, 136, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-purple);
    margin-bottom: 32px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    position: relative;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: heroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Trust Stats Ribbon */
.hero-stats {
    width: 100%;
    max-width: 840px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 16px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-card);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: rgba(15, 23, 42, 0.005);
    border-top: 1px solid rgba(15, 23, 42, 0.02);
    border-bottom: 1px solid rgba(15, 23, 42, 0.02);
    position: relative;
    z-index: 2;
    margin-top: -40px;
    margin-bottom: 40px;
}
.partners-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: center;
}
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}
.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    opacity: 0.65;
    transition: var(--transition-fast);
}
.partner-logo:hover {
    opacity: 1;
    color: var(--text-primary);
}
.partner-logo svg {
    opacity: 0.75;
}

/* Section General Header */
.section-header {
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Interactive Simulator Styling */
.simulator-section {
    padding: 100px 0;
    position: relative;
}

.simulator-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.simulator-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.02);
    border-bottom: 1px solid var(--border-card);
    overflow-x: auto;
    scrollbar-width: none;
}

.simulator-tabs::-webkit-scrollbar {
    display: none;
}

.sim-tab {
    flex: 1;
    min-width: 160px;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border-card);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sim-tab.active {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-purple);
}

.sim-tab:hover {
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.01);
}

.simulator-screen {
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.screen-header {
    background: rgba(15, 23, 42, 0.01);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-card);
}

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

.screen-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

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

.screen-title-tab {
    font-family: monospace;
    font-size: 12px;
    color: var(--text-muted);
}

.screen-badge {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
    color: var(--accent-green);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.screen-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Simulator Templates Details */
.sim-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    height: 100%;
}

@media (max-width: 820px) {
    .sim-grid {
        grid-template-columns: 1fr;
    }
}

.sim-pane-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-pane-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(15, 23, 42, 0.015);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 20px;
}

.sim-block-title {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.sim-content-box {
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-primary);
    font-size: 14px;
}

.sim-response-card {
    border-left: 3px solid var(--accent-purple);
    margin-top: 8px;
}

.sim-response-card.success-border {
    border-left-color: var(--accent-green);
}

.sim-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sim-badge.candidate-a { background: rgba(13, 148, 136, 0.06); color: var(--accent-purple); border: 1px solid rgba(13, 148, 136, 0.15); }
.sim-badge.candidate-b { background: rgba(14, 165, 233, 0.06); color: var(--accent-blue); border: 1px solid rgba(14, 165, 233, 0.15); }

/* Interactive evaluation controls inside simulator */
.sim-controls-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
}

.slider-val {
    color: var(--accent-purple);
    font-weight: 700;
}

.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-purple);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(13, 148, 136, 0.3);
    transition: var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Radio ratings button group */
.rating-buttons {
    display: flex;
    gap: 10px;
}

.rate-btn {
    flex: 1;
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid var(--border-card);
    padding: 10px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-fast);
    text-align: center;
}

.rate-btn.selected {
    background: rgba(13, 148, 136, 0.06);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    font-weight: 600;
}

/* Image labelling mock container */
.mock-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* SVG simulated scan path overlay */
.mock-bbox {
    position: absolute;
    border: 2px solid var(--accent-blue);
    background: rgba(14, 165, 233, 0.1);
    border-radius: 4px;
}

.mock-bbox-label {
    position: absolute;
    top: -20px;
    left: -2px;
    background: var(--accent-blue);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 3px 3px 0 0;
    white-space: nowrap;
}

/* Red teaming console output */
.terminal-output {
    font-family: monospace;
    font-size: 13px;
    color: #38bdf8;
    line-height: 1.5;
    background: #090d16;
    border-radius: 6px;
    padding: 12px;
    overflow-y: auto;
    height: 140px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Services Grid Layout */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.span-two-cols {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-two-cols {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .span-two-cols {
        grid-column: span 1;
    }
}

.service-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrapper {
    width: 54px;
    height: 54px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 80%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 148, 136, 0.15);
    margin-bottom: 24px;
    color: var(--accent-purple);
}

.service-icon {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✦';
    color: var(--accent-blue);
    font-size: 10px;
}

.service-subfeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 20px;
}

.service-subfeatures span {
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 500;
}

/* Why Kavron Section */
.why-section {
    padding: 100px 0;
    position: relative;
}

.why-glow-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    padding: 32px;
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.why-num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-purple);
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Industries Layout Styling */
.industries-section {
    padding: 100px 0;
}

.industry-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.industry-tab {
    padding: 10px 24px;
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid var(--border-card);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.industry-tab:hover {
    color: var(--text-primary);
    border-color: rgba(15, 23, 42, 0.15);
    background: rgba(15, 23, 42, 0.02);
}

.industry-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.industry-display {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 820px) {
    .industry-display {
        grid-template-columns: 1fr;
    }
}

.industry-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-desc h3 {
    font-size: 28px;
    font-weight: 600;
}

.industry-desc p {
    font-size: 16px;
    line-height: 1.7;
}

.industry-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.industry-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.industry-check {
    color: var(--accent-green);
    font-weight: bold;
}

.industry-visual {
    background: #f8fafc;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 32px;
}

.ind-visual-row {
    margin-bottom: 20px;
}

.ind-visual-row:last-child {
    margin-bottom: 0;
}

.ind-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: 4px;
    color: var(--accent-blue);
    font-family: monospace;
    font-size: 12px;
    margin-bottom: 8px;
}

.ind-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(15,23,42,0.03);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.ind-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* How It Works Timeline Styling */
.how-section {
    padding: 100px 0;
    overflow: hidden;
}

.how-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(15, 23, 42, 0.02) 0%, 
                var(--accent-purple) 30%, 
                var(--accent-blue) 70%, 
                rgba(15, 23, 42, 0.02) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    top: 24px;
    right: -16px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 2px solid var(--accent-purple);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    z-index: 5;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.15);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -16px;
    right: auto;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.15);
}

.timeline-content {
    padding: 32px;
}

.step-num-badge {
    font-family: monospace;
    font-size: 12px;
    color: var(--accent-purple);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-item:nth-child(even) .step-num-badge {
    color: var(--accent-blue);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
    }
    .timeline-dot {
        left: 4px !important;
        right: auto !important;
    }
}

/* Talent Network Styling */
.talent-section {
    padding: 100px 0;
    position: relative;
}

.talent-glow {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 991px) {
    .talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .talent-grid {
        grid-template-columns: 1fr;
    }
}

.talent-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.talent-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.talent-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-purple);
    background: rgba(13, 148, 136, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.talent-avatar {
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid var(--border-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
}

.talent-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.talent-card p {
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

.talent-skill-tags {
    font-family: monospace;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 16px;
    margin-top: 8px;
}

/* Final CTA Section Styling */
.cta-section {
    padding: 80px 0;
}

.cta-banner {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-content h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* Footer Section Styling */
.footer {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding: 80px 0 32px 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 820px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.footer-tagline {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.contact-info-item {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 32px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 680px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Lead Generation Modal Dialog Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-primary);
}

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

.modal-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Forms Input Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 8px rgba(13, 148, 136, 0.15);
}

.form-group option {
    background: #ffffff;
    color: var(--text-primary);
}

.form-footer {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-privacy-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* Button Loader spinner inside form */
.btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: button-spin 0.6s linear infinite;
    display: none;
}

@keyframes button-spin {
    to { transform: rotate(360deg); }
}

.btn-loading #btn-text {
    display: none;
}

.btn-loading #btn-spinner {
    display: inline-block;
}

/* Success state animations */
.hidden {
    display: none !important;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
}

.success-checkmark {
    width: 100%;
    height: 100%;
    stroke: var(--accent-green);
    stroke-width: 2;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--accent-green);
    animation: fill-check .4s ease-in-out .4s forwards, scale-check .3s ease-in-out .9s both;
    border-radius: 50%;
}

.success-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--accent-green);
    fill: none;
    animation: stroke-check 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--accent-green);
    animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-check {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill-check {
    100% {
        box-shadow: inset 0px 0px 0px 40px rgba(5, 150, 105, 0.08);
    }
}

.modal-success-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.modal-success-content p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 24px auto;
}

.success-summary {
    max-width: 440px;
    margin: 0 auto 28px auto;
    padding: 20px;
    text-align: left;
}

.success-summary p {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.success-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.success-steps li {
    font-size: 12px;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.success-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* Reveal Scroll Utility animations */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.revealed {
    opacity: 1;
    transform: translate(0) !important;
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.toast-success-icon {
    color: #10b981;
    font-weight: bold;
}

