/* ==========================================================================
   Tomahawk Landing Page - Styles
   Design System: Dark theme with purple accent (#8b5cf6)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Tomahawk Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Core Colors */
    --tomahawk-dark: #0a0a0a;
    --tomahawk-darker: #050505;
    --tomahawk-card: #111111;
    --tomahawk-card-hover: #161616;
    --tomahawk-border: #1f1f1f;
    --tomahawk-border-light: #2a2a2a;

    /* Accent Colors */
    --tomahawk-purple: #8b5cf6;
    --tomahawk-purple-light: #a78bfa;
    --tomahawk-purple-dark: #7c3aed;
    --tomahawk-purple-glow: rgba(139, 92, 246, 0.2);
    --tomahawk-purple-border: rgba(139, 92, 246, 0.3);

    /* Status Colors */
    --success-color: #4BB543;
    --error-color: #ef4444;
    --warning-color: #f59e0b;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Typography */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-display);
    background-color: #0a0a0c;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal);
}

.nav.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--tomahawk-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--tomahawk-purple-light);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--tomahawk-purple);
    border-radius: 1px;
}

.nav-cta {
    padding: 0.6rem 1.25rem !important;
    background: var(--tomahawk-purple);
    border-radius: var(--radius-sm);
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    transition: background-color var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta:hover {
    background: var(--tomahawk-purple-dark);
    transform: translateY(-1px);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--tomahawk-border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-menu a:hover {
    background: var(--tomahawk-card);
    color: var(--text-primary);
}

.mobile-menu a.active {
    color: var(--tomahawk-purple-light);
    background: rgba(139, 92, 246, 0.1);
    border-left: 3px solid var(--tomahawk-purple);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-mobile-toggle {
        display: flex;
    }
    .mobile-menu {
        display: flex;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--tomahawk-purple) 0%, var(--tomahawk-purple-dark) 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--tomahawk-border-light);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: var(--tomahawk-card);
    border-color: var(--tomahawk-purple-border);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}

/* Parallax Background */
.hero-parallax-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.parallax-grid {
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.parallax-glow {
    border-radius: 50%;
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite;
}

.parallax-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.parallax-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -4s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.parallax-shapes {
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
    border-radius: 50%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(30px) rotate(-5deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--tomahawk-purple-light);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--tomahawk-purple);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-logo-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--tomahawk-purple-light) 0%, var(--tomahawk-purple) 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.platform-tag {
    padding: 0.4rem 0.9rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.platform-tag:hover {
    border-color: var(--tomahawk-purple-border);
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--tomahawk-purple), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

/* Stats values used in dashboard - keeping these for the counter styling */
.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------------------
   Section Common Styles
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: 3rem;
}

.section-header-center {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tomahawk-purple);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features {
    position: relative;
    padding: var(--section-padding) 0;
    /* removed overflow: hidden - it breaks position: sticky */
}

.section-parallax-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.parallax-gradient {
    background: radial-gradient(ellipse at 30% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 2rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--tomahawk-purple-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

@media (max-width: 640px) {
    .feature-card-large {
        grid-row: span 1;
    }
}

.feature-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 200px;
}

.shield-animation {
    position: relative;
    width: 160px;
    height: 160px;
}

.shield-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--tomahawk-purple-border);
    border-radius: 50%;
    animation: shieldPulse 3s ease-in-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 0.5s; opacity: 0.7; transform: scale(0.85); }
.ring-3 { animation-delay: 1s; opacity: 0.4; transform: scale(0.7); }

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tomahawk-purple) 0%, var(--tomahawk-purple-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.shield-core svg {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.feature-icon {
    width: 52px;
    height: 52px;
    padding: 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-md);
    color: var(--tomahawk-purple-light);
    margin-bottom: 1.25rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p,
.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Integration Section
   -------------------------------------------------------------------------- */
.integration {
    padding: var(--section-padding) 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.integration-content {
    max-width: 500px;
}

.integration-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.integration-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    padding: 4px;
    background: rgba(75, 181, 67, 0.1);
    border: 1px solid rgba(75, 181, 67, 0.3);
    border-radius: 50%;
    color: var(--success-color);
    flex-shrink: 0;
}

.check-icon svg {
    width: 100%;
    height: 100%;
}

.integration-feature span {
    font-size: 1rem;
    font-weight: 500;
}

.engine-logos {
    display: flex;
    gap: 1.5rem;
}

.engine-logo {
    width: 60px;
    height: 60px;
    padding: 12px;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.engine-logo:hover {
    border-color: var(--tomahawk-purple-border);
    transform: scale(1.05);
}

.engine-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Code Window */
.code-window {
    background: #1a1a1a;
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #151515;
    border-bottom: 1px solid var(--tomahawk-border);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #febc2e; }
.code-dots span:nth-child(3) { background: #28c840; }

.code-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.code-body {
    padding: 1.5rem;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
}

.code-body code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.code-keyword { color: #569cd6; }
.code-class { color: #4ec9b0; }
.code-function { color: #dcdcaa; }
.code-string { color: #ce9178; }
.code-comment { color: #6a9955; font-style: italic; }

/* --------------------------------------------------------------------------
   Dashboard Section
   -------------------------------------------------------------------------- */
.dashboard {
    position: relative;
    padding: var(--section-padding) 0;
    /* removed overflow: hidden - it breaks position: sticky */
}

.dashboard-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dashboard-gradient {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
}

/* Dashboard integrated stats row */
.dashboard-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .dashboard-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .dashboard-stats-row {
        grid-template-columns: 1fr;
    }
}

.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.dashboard-stat:hover {
    border-color: var(--tomahawk-purple-border);
    transform: translateY(-2px);
}

.dashboard-stat-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.dashboard-stat-icon svg {
    width: 100%;
    height: 100%;
}

.dashboard-stat-icon.stat-icon-shield {
    background: rgba(75, 181, 67, 0.1);
    border: 1px solid rgba(75, 181, 67, 0.3);
    color: var(--success-color);
}

.dashboard-stat-icon.stat-icon-ban {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error-color);
}

.dashboard-stat-icon.stat-icon-clock {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--tomahawk-purple-border);
    color: var(--tomahawk-purple-light);
}

.dashboard-stat-icon.stat-icon-percent {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.dashboard-stat-info {
    flex: 1;
    min-width: 0;
}

.dashboard-stat-info .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-stat-info .stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.dashboard-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .dashboard-features-row {
        grid-template-columns: 1fr;
    }
}

.dashboard-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dashboard-feature:hover {
    border-color: var(--tomahawk-purple-border);
}

.dashboard-feature-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-sm);
    color: var(--tomahawk-purple-light);
    flex-shrink: 0;
}

.dashboard-feature-icon svg {
    width: 100%;
    height: 100%;
}

.dashboard-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dashboard-feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-mockup {
    background: #0d0d0d;
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #151515;
    border-bottom: 1px solid var(--tomahawk-border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tomahawk-border);
}

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 60px;
    background: #111111;
    border-right: 1px solid var(--tomahawk-border);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-nav-item {
    height: 36px;
    background: var(--tomahawk-border);
    border-radius: var(--radius-sm);
    opacity: 0.5;
}

.mockup-nav-item.active {
    background: var(--tomahawk-purple);
    opacity: 1;
}

.mockup-main {
    flex: 1;
    padding: 1.5rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mockup-stat-card {
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-sm);
}

.mockup-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mockup-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-chart {
    height: 100px;
    background: #1a1a1a;
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
}

.chart-line {
    width: 100%;
    height: 60%;
    background: linear-gradient(90deg, var(--tomahawk-purple) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: 2px;
    clip-path: polygon(0 100%, 5% 80%, 15% 90%, 25% 60%, 35% 70%, 50% 30%, 65% 50%, 80% 20%, 90% 40%, 100% 10%, 100% 100%);
}

.mockup-detections {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detection-bar {
    height: 8px;
    background: var(--tomahawk-border);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.detection-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--tomahawk-purple), var(--tomahawk-purple-light));
    border-radius: 4px;
}

/* Ban Control Popup */
.ban-control-popup {
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 280px;
    background: #1a1a1a;
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: popupFloat 3s ease-in-out infinite;
}

@keyframes popupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ban-popup-header {
    padding: 0.75rem 1rem;
    background: #252525;
    border-bottom: 1px solid var(--tomahawk-border);
}

.ban-step {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--error-color);
    margin-bottom: 0.25rem;
}

.ban-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.ban-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
}

.ban-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.ban-option-permanent {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ban-option-permanent:hover {
    background: rgba(239, 68, 68, 0.2);
}

.ban-option-permanent .ban-option-icon {
    color: var(--error-color);
}

.ban-option-timeout {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.ban-option-timeout:hover {
    background: rgba(245, 158, 11, 0.2);
}

.ban-option-timeout .ban-option-icon {
    color: var(--warning-color);
}

.ban-option-icon {
    width: 32px;
    height: 32px;
}

.ban-option-icon svg {
    width: 100%;
    height: 100%;
}

.ban-option span {
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ban-control-popup {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Clients Section
   -------------------------------------------------------------------------- */
.clients {
    padding: 0;
    position: relative;
    /* NO overflow: hidden - it breaks sticky positioning */
}

.clients .section-parallax-container {
    position: relative;
    z-index: 1;
    height: 300vh; /* Same as other sections for parallax scrolling */
}


/* Clients Grid Layout */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 500px) {
    .clients-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

.client-card {
    background: var(--tomahawk-card);
    border: none;
    overflow: hidden;
    transition: all var(--transition-normal);
    /* Diagonal angled shape */
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    position: relative;
}

/* Add border effect with pseudo-element since clip-path clips borders */
.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--tomahawk-purple-border) 0%, var(--tomahawk-border) 50%, var(--tomahawk-purple-border) 100%);
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    z-index: -1;
    padding: 1px;
}

.client-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--tomahawk-card);
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    z-index: -1;
}

.client-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.client-card:hover::before {
    background: linear-gradient(135deg, var(--tomahawk-purple) 0%, var(--tomahawk-purple-border) 50%, var(--tomahawk-purple) 100%);
}

.client-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.client-card:hover .client-image img {
    transform: scale(1.05);
}

.client-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.client-badge {
    padding: 0.3rem 0.6rem;
    background: var(--tomahawk-purple);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.client-info {
    padding: 1.25rem;
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Client card hover glow effect */
.client-card:hover {
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

/* "And many more" card */
.client-card-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.03) 100%);
    min-height: 200px;
}

.client-card-more::before {
    background: linear-gradient(135deg, var(--tomahawk-purple-border) 0%, transparent 50%, var(--tomahawk-purple-border) 100%);
    opacity: 0.6;
}

.client-card-more:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
}

.client-card-more:hover::before {
    opacity: 1;
}

.more-content {
    text-align: center;
    padding: 1.5rem;
}

.more-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--tomahawk-purple-light);
    margin-bottom: 0.5rem;
}

.more-subtext {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
    position: relative;
    padding: var(--section-padding) 0;
    /* removed overflow: hidden - it breaks position: sticky */
}

.pricing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pricing-gradient {
    background: radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--tomahawk-purple-border);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--tomahawk-purple-border);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, var(--tomahawk-card) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 0.9rem;
    background: var(--tomahawk-purple);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-value {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-discounts {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.discount-card {
    text-align: center;
    padding: 1.5rem 2.5rem;
    background: var(--tomahawk-card);
    border: 1px solid rgba(75, 181, 67, 0.3);
    border-radius: var(--radius-md);
}

.discount-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 0.25rem;
}

.discount-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
    padding: var(--section-padding) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    max-width: 500px;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--tomahawk-purple-border);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-sm);
    color: var(--tomahawk-purple-light);
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 100%;
    height: 100%;
}

.contact-method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-method-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* CTA Card */
.cta-card {
    padding: 3rem;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.15) 0%, var(--tomahawk-card) 100%);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 16px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-lg);
}

.cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    padding: 4rem 0 2rem;
    background: #050508;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Email notification toast */
.email-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tomahawk-purple);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    animation: slideUp 0.3s ease;
}

.email-notification strong {
    color: white;
}

.email-notification button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-notification button:hover {
    background: rgba(255,255,255,0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--tomahawk-border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-tagline {
    color: var(--tomahawk-purple) !important;
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Animation Utilities (AOS-like)
   -------------------------------------------------------------------------- */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* --------------------------------------------------------------------------
   Section Parallax - Scroll-Driven Zoom & Slide Right with Crossfade
   -------------------------------------------------------------------------- */

/* Container gives scroll distance for the effect */
.section-parallax-container {
    position: relative;
    height: 300vh; /* TALL container = more scroll time while "locked" */
}

/* Sticky wrapper that contains both header AND content */
.section-parallax-intro {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Header - zooms in, slides right */
.parallax-intro-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
    z-index: 2;
    pointer-events: none;
}

/* Section content - fades in as header exits */
.parallax-section-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: opacity;
    z-index: 1;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
}

.parallax-section-content.active {
    pointer-events: auto;
}

.parallax-section-content.active a,
.parallax-section-content.active button {
    pointer-events: auto;
}

/* Force all buttons in parallax sections to be clickable */
.section-parallax-container a,
.section-parallax-container button,
.section-parallax-container .btn {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

/* Container inside parallax content needs proper sizing */
.parallax-section-content > .container {
    width: 100%;
    max-width: var(--container-max);
    padding: 2rem 1.5rem;
}

.parallax-section-icon {
    width: 120px;
    height: 120px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 2px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-xl);
    color: var(--tomahawk-purple-light);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.4),
                0 0 120px rgba(139, 92, 246, 0.2);
}

.parallax-section-icon svg {
    width: 100%;
    height: 100%;
}

.parallax-section-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-align: center;
    text-shadow: 0 0 100px rgba(139, 92, 246, 0.5),
                 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Background glow for header */
.parallax-intro-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .parallax-section-icon {
        width: 80px;
        height: 80px;
        padding: 18px;
    }

    .parallax-section-title {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }

    .parallax-section-content > .container {
        padding: 1.5rem 1rem;
    }
}

/* --------------------------------------------------------------------------
   Pricing Highlights (No Price Grid)
   -------------------------------------------------------------------------- */
.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .pricing-highlights {
        grid-template-columns: 1fr;
    }
}

.pricing-highlight-card {
    padding: 2rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.pricing-highlight-card:hover {
    border-color: var(--tomahawk-purple-border);
    transform: translateY(-4px);
}

.pricing-highlight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    padding: 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-md);
    color: var(--tomahawk-purple-light);
}

.pricing-highlight-icon svg {
    width: 100%;
    height: 100%;
}

.pricing-highlight-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-highlight-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Starting Amount */
.pricing-starting {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-starting-card {
    display: inline-block;
    padding: 2.5rem 4rem;
    background: linear-gradient(145deg, var(--tomahawk-card) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 2px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.pricing-starting-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-starting-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tomahawk-purple-light);
    margin-bottom: 0.5rem;
}

.pricing-starting-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    position: relative;
}

.pricing-starting-amount .pricing-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing-starting-amount .pricing-counter {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--tomahawk-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-starting-amount .pricing-period {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-starting-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .pricing-starting-card {
        padding: 2rem;
    }

    .pricing-starting-amount .pricing-counter {
        font-size: 3.5rem;
    }

    .pricing-starting-amount .pricing-currency {
        font-size: 1.5rem;
    }
}

.pricing-cta {
    text-align: center;
}

.pricing-cta-card {
    display: inline-block;
    padding: 3rem 4rem;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.15) 0%, var(--tomahawk-card) 100%);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: var(--radius-xl);
    max-width: 500px;
}

.pricing-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-cta-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .pricing-cta-card {
        padding: 2rem;
    }
}

/* --------------------------------------------------------------------------
   Roadmap Section
   -------------------------------------------------------------------------- */
.roadmap {
    padding: var(--section-padding) 0;
}

.roadmap-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--tomahawk-purple) 0%, var(--tomahawk-border) 100%);
}

.roadmap-item {
    position: relative;
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.roadmap-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--tomahawk-card);
    border: 2px solid var(--tomahawk-border);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.roadmap-priority-1 .roadmap-number {
    background: linear-gradient(135deg, var(--tomahawk-purple) 0%, var(--tomahawk-purple-dark) 100%);
    border-color: var(--tomahawk-purple);
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.roadmap-priority-2 .roadmap-number {
    border-color: var(--tomahawk-purple-border);
    color: var(--tomahawk-purple-light);
}

.roadmap-content {
    flex: 1;
    padding: 0.5rem 0;
}

.roadmap-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tomahawk-purple-light);
    margin-bottom: 0.75rem;
}

.roadmap-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.roadmap-platform {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.roadmap-platform span {
    padding: 0.35rem 0.75rem;
    background: var(--tomahawk-card);
    border: 1px solid var(--tomahawk-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.roadmap-item:hover .roadmap-number {
    transform: scale(1.1);
}

.roadmap-item:hover .roadmap-content h3 {
    color: var(--tomahawk-purple-light);
}

@media (max-width: 640px) {
    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        gap: 1.25rem;
    }

    .roadmap-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* --------------------------------------------------------------------------
   Parallax Scroll Effects
   -------------------------------------------------------------------------- */
@supports (animation-timeline: scroll()) {
    .parallax-glow-1 {
        animation: parallaxGlow1 linear;
        animation-timeline: scroll();
        animation-range: 0 100vh;
    }

    .parallax-glow-2 {
        animation: parallaxGlow2 linear;
        animation-timeline: scroll();
        animation-range: 0 100vh;
    }

    @keyframes parallaxGlow1 {
        from { transform: translateY(0); }
        to { transform: translateY(100px); }
    }

    @keyframes parallaxGlow2 {
        from { transform: translateY(0); }
        to { transform: translateY(-80px); }
    }
}

/* --------------------------------------------------------------------------
   Integration Section - Special Scroll Animation
   Title is part of content, starts centered/large, shrinks to header position
   -------------------------------------------------------------------------- */
.integration-parallax {
    height: 280vh; /* TALL container = more scroll time while "locked" */
}

.integration-parallax .section-parallax-intro {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Allow clicks in integration section */
}

/* Force all integration buttons and links to be clickable */
.integration-parallax a,
.integration-parallax button,
.integration-parallax .btn {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

/* Content wrapper - contains title AND content in normal flow */
.integration-content-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    padding: 0 1.5rem;
    margin: 0 auto;
}

.integration-content-wrapper.active {
    pointer-events: auto;
}

.integration-content-wrapper.active a,
.integration-content-wrapper.active button {
    pointer-events: auto;
}

/* Title - starts hidden, animates in */
.integration-title-wrapper {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
}

.integration-animated-title {
    display: flex;
    flex-direction: column;
}

.integration-animated-title .title-line {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    display: block;
}

.integration-animated-title .title-line-2 {
    color: var(--tomahawk-purple-light);
}

.integration-content-wrapper .integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .integration-content-wrapper .integration-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.integration-content-wrapper .integration-content {
    max-width: 500px;
}

/* Eyebrow label */
.integration-content-wrapper .integration-eyebrow {
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
}

/* Description text */
.integration-content-wrapper .integration-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
}

/* Features - each one fades in separately */
.integration-content-wrapper .integration-feature {
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
}

.integration-content-wrapper .engine-logos {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

/* Code window slides in from right */
.integration-content-wrapper .integration-visual {
    opacity: 0;
    transform: translateX(150px);
    will-change: transform, opacity;
    margin-top: -120px; /* Pull up to align with title */
}

/* --------------------------------------------------------------------------
   Contact Section - Special Scroll Animation
   Title is part of content, animates like Integration
   -------------------------------------------------------------------------- */
.contact-parallax {
    height: 250vh; /* TALL container = more scroll time while "locked" */
}

.contact-parallax .section-parallax-intro {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Allow clicks in contact section */
}

/* Force all contact buttons and links to be clickable */
.contact-parallax a,
.contact-parallax button,
.contact-parallax .contact-method,
.contact-parallax .btn {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

/* Content wrapper - contains title AND content in normal flow */
.contact-content-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    padding: 0 1.5rem;
    margin: 0 auto;
}

.contact-content-wrapper.active {
    pointer-events: auto;
}

.contact-content-wrapper.active a,
.contact-content-wrapper.active button {
    pointer-events: auto;
}

/* Title - starts hidden, animates in */
.contact-title-wrapper {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
}

.contact-animated-title {
    display: flex;
    flex-direction: column;
}

.contact-animated-title .title-line {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    display: block;
}

.contact-content-wrapper .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-content-wrapper .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-content-wrapper .contact-info {
    max-width: 500px;
}

.contact-content-wrapper .contact-eyebrow {
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
}

.contact-content-wrapper .contact-text {
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
}

/* Contact methods fade in one by one */
.contact-content-wrapper .contact-method {
    opacity: 0;
    transform: translateX(-30px);
    will-change: transform, opacity;
    pointer-events: auto; /* Always clickable once visible */
}

/* CTA card slides in from right */
.contact-content-wrapper .contact-cta {
    opacity: 0;
    pointer-events: auto; /* Always clickable once visible */
    transform: translateX(150px);
    will-change: transform, opacity;
}

/* ==========================================================================
   Custom Scrollbar with Purple Theme and Pulse Animation
   ========================================================================== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0c;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--tomahawk-purple) 0%, var(--tomahawk-purple-dark) 100%);
    border-radius: 5px;
    position: relative;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--tomahawk-purple-light) 0%, var(--tomahawk-purple) 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--tomahawk-purple) #0a0a0c;
}


/* ==========================================================================
   Global Animated Background
   ========================================================================== */

.global-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1; /* Behind all content */
    overflow: hidden;
}

/* Pulsing color glows */
.global-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
    animation: globalGlowPulse 12s ease-in-out infinite;
}

.global-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.global-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    bottom: 20%;
    right: -5%;
    animation-delay: -4s;
}

.global-glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: -8s;
}

@keyframes globalGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

/* Floating shapes - visible when stationary */
.global-shape {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.global-bg.stationary .global-shape {
    opacity: 1;
}

.global-shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    top: 12%;
    right: 8%;
    animation: shapeFloat1 20s ease-in-out infinite;
    transform: rotate(15deg);
}

.global-shape-2 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    bottom: 25%;
    left: 5%;
    animation: shapeFloat2 18s ease-in-out infinite;
    border-color: rgba(59, 130, 246, 0.12);
}

.global-shape-3 {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    top: 45%;
    left: 12%;
    animation: shapeFloat3 22s ease-in-out infinite;
    transform: rotate(-10deg);
}

.global-shape-4 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 70%;
    right: 15%;
    animation: shapeFloat1 25s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.global-shape-5 {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    top: 30%;
    right: 25%;
    animation: shapeFloat2 19s ease-in-out infinite;
    animation-delay: -8s;
    transform: rotate(20deg);
}

.global-shape-6 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    bottom: 35%;
    left: 25%;
    animation: shapeFloat3 21s ease-in-out infinite reverse;
    animation-delay: -12s;
    border-color: rgba(139, 92, 246, 0.1);
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    25% { transform: translateY(-30px) rotate(20deg); }
    50% { transform: translateY(0) rotate(15deg); }
    75% { transform: translateY(25px) rotate(10deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-25px) translateX(15px); }
    66% { transform: translateY(20px) translateX(-10px); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-35px) rotate(-15deg); }
}

/* Motion lines - VERTICAL lines that move up when scrolling down */
.motion-lines {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
}

.global-bg.scrolling .motion-lines {
    opacity: 1;
}

.motion-line {
    position: absolute;
    bottom: 100%;
    width: 1px;
    height: 80px;
    background: linear-gradient(to top,
        transparent 0%,
        rgba(139, 92, 246, 0.4) 30%,
        rgba(139, 92, 246, 0.15) 100%
    );
    transform: translateY(0);
    transition: none;
}

/* Position lines across the width */
.motion-line-1 { left: 5%; height: 100px; }
.motion-line-2 { left: 12%; height: 60px; }
.motion-line-3 { left: 22%; height: 90px; }
.motion-line-4 { left: 35%; height: 70px; }
.motion-line-5 { left: 45%; height: 110px; }
.motion-line-6 { left: 55%; height: 65px; }
.motion-line-7 { left: 65%; height: 85px; }
.motion-line-8 { left: 75%; height: 75px; }
.motion-line-9 { left: 82%; height: 95px; }
.motion-line-10 { left: 88%; height: 55px; }
.motion-line-11 { left: 93%; height: 80px; }
.motion-line-12 { left: 97%; height: 70px; }

/* Alternate line colors */
.motion-line:nth-child(even) {
    background: linear-gradient(to top,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 30%,
        rgba(59, 130, 246, 0.1) 100%
    );
}

/* ==========================================================================
   Section-Specific Decorative Elements
   These animate with each section's parallax transitions
   ========================================================================== */

.section-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Decorative shapes - start hidden, animate in with content */
.section-shape {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.2);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-shape-1 {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    top: 15%;
    right: 8%;
    transform: rotate(15deg) translateY(30px);
}

.section-shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    bottom: 25%;
    left: 6%;
    transform: translateY(30px);
    border-color: rgba(59, 130, 246, 0.15);
}

.section-shape-3 {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    top: 55%;
    left: 12%;
    transform: rotate(-10deg) translateY(30px);
}

/* Purple glow lights - intensify when content is revealed */
.section-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    transform: scale(0.8);
}

.section-glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    bottom: 15%;
    left: -5%;
    transform: scale(0.8);
}

/* When section content is active - shapes and glows become visible */
.parallax-section-content.active ~ .section-decor .section-shape,
.section-parallax-container.content-visible .section-decor .section-shape {
    opacity: 1;
    transform: rotate(var(--rotate, 0deg)) translateY(0);
}

.parallax-section-content.active ~ .section-decor .section-glow,
.section-parallax-container.content-visible .section-decor .section-glow {
    opacity: 1;
    transform: scale(1);
}

/* Individual shape rotations */
.section-shape-1 { --rotate: 15deg; }
.section-shape-3 { --rotate: -10deg; }

/* Subtle floating animation when visible */
.section-parallax-container.content-visible .section-shape-1 {
    animation: sectionShapeFloat1 15s ease-in-out infinite;
}

.section-parallax-container.content-visible .section-shape-2 {
    animation: sectionShapeFloat2 18s ease-in-out infinite;
}

.section-parallax-container.content-visible .section-shape-3 {
    animation: sectionShapeFloat3 20s ease-in-out infinite;
}

@keyframes sectionShapeFloat1 {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(18deg) translateY(-15px); }
}

@keyframes sectionShapeFloat2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-12px) translateX(8px); }
}

@keyframes sectionShapeFloat3 {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(-13deg) translateY(-10px); }
}

/* Glow pulse when content visible */
.section-parallax-container.content-visible .section-glow-1 {
    animation: sectionGlowPulse 6s ease-in-out infinite;
}

.section-parallax-container.content-visible .section-glow-2 {
    animation: sectionGlowPulse 8s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes sectionGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--tomahawk-purple-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    color: var(--tomahawk-purple);
    transition: transform 0.3s ease;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

/* Animated line below indicator - only show when not at bottom */
.scroll-line-indicator {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--tomahawk-purple), transparent);
    animation: scrollLineIndicator 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

@keyframes scrollLineIndicator {
    0%, 100% {
        opacity: 1;
        height: 20px;
    }
    50% {
        opacity: 0.3;
        height: 10px;
    }
}

/* At bottom state - becomes a clickable "Back to Top" button */
.scroll-indicator.at-bottom .scroll-indicator-content {
    cursor: pointer;
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--tomahawk-purple);
    box-shadow: 0 4px 25px rgba(139, 92, 246, 0.35);
}

.scroll-indicator.at-bottom .scroll-indicator-content:hover {
    background: rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.45);
}

.scroll-indicator.at-bottom .scroll-text {
    color: var(--tomahawk-purple-light);
    font-weight: 600;
}

.scroll-indicator.at-bottom .scroll-arrow {
    transform: rotate(180deg);
}

/* Hide the animated line when at bottom */
.scroll-indicator.at-bottom .scroll-line-indicator {
    opacity: 0;
    height: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator-content {
        padding: 0.5rem 1rem;
    }

    .scroll-text {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   MOBILE-SPECIFIC FIXES
   These fixes are mobile-only and do not affect desktop layout
   ========================================================================== */

/* --------------------------------------------------------------------------
   Mobile: Hero Section Fixes
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Ensure hero content stays centered on mobile */
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center the logo container */
    .hero-logo-container {
        display: block;
        text-align: center;
        width: 100%;
    }

    /* Fix hero logo aspect ratio - prevent stretching */
    .hero-logo {
        height: auto;
        max-height: 60px;
        width: auto;
        max-width: 80%;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    /* Add bottom padding to hero to prevent scroll indicator overlap */
    .hero {
        padding-bottom: 120px;
    }

    /* Reduce hero actions gap and stack vertically if needed */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* Make hero buttons full width on mobile */
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Mobile: Parallax Section Content Alignment Fix
   On mobile/tablet, content gets cut off at top due to vertical centering
   Change to top alignment with padding to show all content
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* Standard parallax sections - align content to top with padding */
    .parallax-section-content {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 100px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Sticky intro - also align to top on mobile */
    .section-parallax-intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
    }

    /* Integration section - align content to top */
    .integration-parallax .section-parallax-intro {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 80px;
    }

    /* Contact section - align content to top */
    .contact-parallax .section-parallax-intro {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 80px;
    }

    /* Ensure containers fill available space properly */
    .parallax-section-content > .container {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    /* Ensure section headers are visible */
    .section-header {
        padding-top: 0;
    }
}

/* Tablet-specific adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .parallax-section-content {
        padding-top: 90px;
    }

    .integration-parallax .section-parallax-intro,
    .contact-parallax .section-parallax-intro {
        padding-top: 90px;
    }
}

/* Mobile-specific adjustments - more aggressive */
@media (max-width: 768px) {
    .parallax-section-content {
        padding-top: 80px;
    }

    .integration-parallax .section-parallax-intro,
    .contact-parallax .section-parallax-intro {
        padding-top: 70px;
        justify-content: flex-start;
    }

    /* Integration content wrapper - ensure proper alignment on mobile */
    .integration-content-wrapper {
        padding-top: 0;
        width: 100%;
    }

    /* Contact content wrapper - ensure proper alignment on mobile */
    .contact-content-wrapper {
        padding-top: 0;
        width: 100%;
    }

    /* Integration section grid - single column on mobile */
    .integration-content-wrapper .integration-grid {
        gap: 2rem;
    }

    /* Hide code window on mobile - too much space */
    .integration-content-wrapper .integration-visual {
        display: none;
    }

    /* Dashboard section - ensure stats are visible */
    .dashboard-stats-row {
        flex-wrap: wrap;
    }

    /* Clients section - proper grid layout on mobile */
    .clients-grid {
        gap: 1rem;
    }

    /* Pricing section - ensure all cards visible */
    .pricing-highlights {
        gap: 1rem;
    }

    /* Roadmap items - proper spacing */
    .roadmap-items {
        gap: 1.5rem;
    }

    /* Contact methods - proper spacing */
    .contact-methods {
        gap: 1rem;
    }

    /* Contact CTA card - more compact on mobile */
    .cta-card {
        padding: 1.25rem;
    }

    .cta-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
        margin-bottom: 0.5rem;
    }

    .cta-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .cta-card p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .cta-card .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Contact grid - single column on mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact section - reduce spacing to fit button */
    .contact-content-wrapper .contact-title-wrapper {
        margin-bottom: 1rem;
    }

    .contact-content-wrapper .contact-text {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .contact-methods {
        margin-bottom: 1rem;
    }

    .contact-method {
        padding: 0.75rem;
    }

    .contact-method-icon {
        width: 36px;
        height: 36px;
    }

    .contact-method-label {
        font-size: 0.7rem;
    }

    .contact-method-value {
        font-size: 0.85rem;
    }
}

/* Small mobile devices - extra tight */
@media (max-width: 480px) {
    .parallax-section-content {
        padding-top: 70px;
    }

    .integration-parallax .section-parallax-intro,
    .contact-parallax .section-parallax-intro {
        padding-top: 65px;
    }

    /* Even more compact spacing */
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Reduce feature grid gaps on small mobile */
    .features-grid {
        gap: 1rem;
    }

    /* Smaller dashboard stats on mobile */
    .dashboard-stats-row {
        gap: 0.75rem;
    }

    .dashboard-stat {
        padding: 0.75rem;
    }

    /* Smaller pricing cards on mobile */
    .pricing-starting-card {
        padding: 1.5rem 2rem;
    }
}
