:root {
    --bg-primary: #000000;
    --bg-secondary: #050508;
    --bg-tertiary: #0a0a0f;
    --bg-card: rgba(15, 15, 20, 0.8);
    --bg-card-solid: #0f0f14;
    --bg-card-hover: rgba(20, 20, 28, 0.9);
    
    --border-subtle: rgba(255,255,255,0.04);
    --border-default: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.12);
    
    --text-primary: #f0f0f5;
    --text-secondary: #9090a0;
    --text-tertiary: #606070;
    
    /* Matrix-inspired colors - BLUE theme */
    --matrix-blue: #3b82f6;
    --matrix-blue-light: #60a5fa;
    --matrix-cyan: #06b6d4;
    --matrix-purple: #8b5cf6;
    
    /* UI Colors */
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --blue-glow: rgba(59, 130, 246, 0.4);
    
    --cyan: #06b6d4;
    --cyan-light: #22d3ee;
    --cyan-glow: rgba(6, 182, 212, 0.4);
    
    --green: #10b981;
    --green-light: #34d399;
    --green-glow: rgba(16, 185, 129, 0.4);
    
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    
    --orange: #f97316;
    --red: #ef4444;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ==================== MATRIX RAIN BACKGROUND ==================== */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gradient overlay to fade the matrix */
.matrix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, transparent 0%, var(--bg-primary) 70%),
        radial-gradient(ellipse at 0% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

/* Subtle scan line effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    opacity: 0.3;
}

/* Ambient glow orbs */
.glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float-orb 25s ease-in-out infinite;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.1);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.08);
    top: 40%;
    right: -150px;
    animation-delay: -8s;
}

.glow-orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.06);
    bottom: -100px;
    left: 30%;
    animation-delay: -16s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Content wrapper */
.content {
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.nav-logo-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.nav-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

/* Mobile Menu Button */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-mobile-menu.active {
    display: flex;
}

.nav-mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 32px;
    transition: color 0.3s ease;
}

.nav-mobile-menu a:hover {
    color: var(--blue-light);
}

.nav-mobile-menu .nav-cta {
    margin-top: 16px;
    font-size: 1.125rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue-light);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.5);
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-default);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border-default);
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-link {
    display: block;
    padding: 16px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

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

.mobile-cta {
    display: block;
    margin-top: 8px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.nav-cta-desktop {
    display: block;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 24px 100px;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--blue-light);
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-light);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(59, 130, 246, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: reveal-up 0.8s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.3s; }

@keyframes reveal-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--purple-light) 50%, var(--cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(59, 130, 246, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-up 0.8s ease 0.5s forwards;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-up 0.8s ease 0.7s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: var(--text-primary);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--blue);
    color: var(--blue-light);
}

.btn-tertiary {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue-light);
    border: 1px solid rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
}

.btn-tertiary:hover {
    background: rgba(59, 130, 246, 0.22);
    border-color: var(--blue);
    color: var(--text-primary);
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-up 0.8s ease 0.9s forwards;
}

.avatars {
    display: flex;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-primary);
    transition: all 0.3s ease;
}

.avatar:nth-child(1) { margin-left: 0; background: linear-gradient(135deg, var(--blue), var(--cyan)); z-index: 5; }
.avatar:nth-child(2) { background: linear-gradient(135deg, var(--purple), var(--blue)); z-index: 4; }
.avatar:nth-child(3) { background: linear-gradient(135deg, var(--cyan), var(--purple)); z-index: 3; }
.avatar:nth-child(4) { background: linear-gradient(135deg, var(--blue), var(--purple)); z-index: 2; }
.avatar:nth-child(5) { background: linear-gradient(135deg, var(--purple), var(--cyan)); z-index: 1; }

.avatar:hover {
    transform: translateY(-6px) scale(1.1);
    z-index: 10;
}

.social-proof-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.social-proof-text strong {
    color: var(--blue-light);
    font-weight: 600;
}

/* Hero Image */
.hero-image {
    margin-top: 80px;
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--border-default);
    box-shadow: 
        0 0 0 1px rgba(59, 130, 246, 0.1),
        0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 160px 24px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.section-badge.green {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-badge.cyan {
    background: rgba(0, 221, 255, 0.1);
    color: var(--purple);
    border: 1px solid rgba(0, 221, 255, 0.2);
}

.section-badge.red {
    background: rgba(255, 68, 68, 0.1);
    color: var(--red);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.section-badge.purple {
    background: rgba(136, 85, 255, 0.1);
    color: var(--matrix-purple);
    border: 1px solid rgba(136, 85, 255, 0.2);
}

.section-badge.blue {
    background: rgba(68, 136, 255, 0.1);
    color: var(--matrix-blue);
    border: 1px solid rgba(68, 136, 255, 0.2);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== TERMINAL QUOTE ==================== */
.quote-section {
    padding: 100px 24px;
    position: relative;
}

.terminal-quote {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
    margin-left: 12px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.terminal-body {
    padding: 40px;
}

.terminal-body p {
    font-family: var(--font-mono);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-secondary);
}

.terminal-body .prompt {
    color: var(--blue);
}

.terminal-body .highlight {
    color: var(--purple);
    font-weight: 600;
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background: var(--blue);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

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

/* ==================== STATS / CALCULATOR SECTION ==================== */
.stats-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.calculator-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-inputs {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-default);
    border-radius: 24px;
    padding: 40px;
}

.calculator-inputs h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.calc-input-group {
    margin-bottom: 28px;
}

.calc-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.calc-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-input {
    flex: 1;
    max-width: 120px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    font-size: 1.25rem;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.calc-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

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

.calc-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 14px;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.calculator-results {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--border-default);
    border-radius: 24px;
    padding: 40px;
    position: sticky;
    top: 100px;
}

.result-header {
    text-align: center;
    margin-bottom: 32px;
}

.result-header h3 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.result-value {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--orange), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.result-period {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.result-breakdown {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.result-row:last-child {
    border-bottom: none;
}

.result-row-label {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.result-row-value {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
}

.result-row-value.negative {
    color: var(--red);
}

.result-row-value.positive {
    color: var(--green-light);
}

.result-cta {
    margin-top: 24px;
}

.calculator-sources {
    margin-top: 40px;
    padding: 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
}

.sources-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.source-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.source-item:last-child {
    margin-bottom: 0;
}

.source-number {
    color: var(--blue-light);
    font-family: var(--font-mono);
    font-weight: 600;
}

.stat-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, var(--orange), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    margin-top: 16px;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    background: var(--bg-primary);
}

.solution-quote {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(0, 221, 255, 0.05));
    border: 1px solid var(--border-default);
    border-radius: 24px;
    text-align: center;
    position: relative;
}

.solution-quote::before {
    content: '>';
    position: absolute;
    top: 30px;
    left: 40px;
    font-family: var(--font-mono);
    font-size: 4rem;
    color: var(--blue);
    opacity: 0.3;
}

.solution-quote blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.solution-quote .red { color: var(--red); }
.solution-quote .green { color: var(--blue); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== TOOLS SECTION ==================== */
.tools-section {
    background: var(--bg-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.tool-category {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tool-category:hover {
    border-color: var(--matrix-purple);
    box-shadow: 0 0 40px rgba(136, 85, 255, 0.1);
}

.tool-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tool-category-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--matrix-purple), var(--matrix-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tool-category-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.tool-category-count {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-tag {
    padding: 8px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.tool-tag:hover {
    background: rgba(136, 85, 255, 0.1);
    border-color: rgba(136, 85, 255, 0.3);
    color: var(--matrix-purple);
}

.tools-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(136, 85, 255, 0.08), rgba(68, 136, 255, 0.08));
    border: 1px solid var(--border-default);
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.tools-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.tools-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 28px;
}

/* ==================== N8N SECTION ==================== */
.n8n-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #040a06 50%, var(--bg-primary) 100%);
    position: relative;
}

.n8n-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.n8n-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 36px;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.25);
    letter-spacing: -0.01em;
}

.n8n-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.n8n-visual {
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
}

.n8n-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.4;
}

.n8n-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--border-default);
    position: relative;
}

.n8n-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.n8n-feature {
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.n8n-feature:hover {
    border-color: var(--green);
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-4px);
}

.n8n-feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.n8n-feature h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.n8n-feature p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.n8n-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
}

.n8n-quote blockquote {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.6;
}

.n8n-quote .green { 
    color: var(--green-light);
    text-shadow: 0 0 30px var(--green-glow);
}

/* ==================== EVERYWHERE SECTION ==================== */
.everywhere-section {
    background: var(--bg-secondary);
}

.everywhere-image {
    max-width: 1100px;
    margin: 0 auto 80px;
    position: relative;
}

.everywhere-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, var(--cyan-glow) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.3;
}

.everywhere-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--border-default);
    position: relative;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quote-card:hover {
    border-color: var(--purple);
}

.quote-card p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.quote-card .hl {
    color: var(--purple);
    font-weight: 500;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    padding: 100px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(0, 221, 255, 0.1));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(0, 221, 255, 0.1) 0%, transparent 40%);
    animation: rotate-slow 60s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-banner h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.cta-form input {
    flex: 1;
    padding: 18px 24px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-default);
    border-radius: 14px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
}

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

.cta-form input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cta-form button {
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--bg-primary);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.testimonial-card:nth-child(1) .testimonial-avatar {
    background: linear-gradient(135deg, var(--blue), var(--purple));
}
.testimonial-card:nth-child(2) .testimonial-avatar {
    background: linear-gradient(135deg, var(--purple), var(--matrix-blue));
}
.testimonial-card:nth-child(3) .testimonial-avatar {
    background: linear-gradient(135deg, var(--matrix-purple), var(--matrix-pink));
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
}

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

/* ==================== PRICING ==================== */
.pricing-section {
    background: var(--bg-secondary);
}

.value-stack {
    max-width: 900px;
    margin: 0 auto 48px;
}

.value-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.value-item:last-child {
    border-bottom: none;
}

.value-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.value-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.value-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-content {
    flex: 1;
}

.value-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.value-reason {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.value-price {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-total-label {
    font-size: 1.25rem;
    font-weight: 600;
}

.value-total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

/* Pricing Tiers Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.billing-label {
    font-size: 1rem;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

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

.billing-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-default);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.billing-switch.yearly::after {
    transform: translateX(28px);
}

.billing-switch.yearly {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--blue);
}

.billing-save {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-light);
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
}

.pricing-card-tier {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-default);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-tier:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

/* Standard Card with Full Animated Gradient Background */
.pricing-card-tier.glowing {
    border: none;
    background: linear-gradient(
        135deg,
        #fbbf24,
        #84cc16,
        #22c55e,
        #06b6d4,
        #3b82f6,
        #8b5cf6,
        #ec4899,
        #f43f5e,
        #fbbf24
    );
    background-size: 400% 400%;
    animation: gradient-flow 10s ease infinite;
    color: #000;
}

.pricing-card-tier.glowing .tier-name,
.pricing-card-tier.glowing .tier-desc,
.pricing-card-tier.glowing .tier-currency,
.pricing-card-tier.glowing .tier-amount,
.pricing-card-tier.glowing .tier-period,
.pricing-card-tier.glowing .tier-features li,
.pricing-card-tier.glowing .tier-features li .check,
.pricing-card-tier.glowing .strikethrough,
.pricing-card-tier.glowing .tier-yearly-note,
.pricing-card-tier.glowing .tier-minimum {
    color: rgba(0, 0, 0, 0.85);
}

.pricing-card-tier.glowing .tier-features li.disabled,
.pricing-card-tier.glowing .tier-features li .x {
    color: rgba(0, 0, 0, 0.5);
}

.pricing-card-tier.glowing .tier-discount {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

.pricing-card-tier.glowing .tier-cta {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000;
    font-weight: 700;
}

.pricing-card-tier.glowing .tier-cta:hover {
    background: rgba(0, 0, 0, 0.25);
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Featured Card (Pro) with Animated Border Glow */
.pricing-card-tier.featured {
    border: none;
    background: var(--bg-card-solid);
    transform: scale(1.02);
    position: relative;
    z-index: 1;
}

.pricing-card-tier.featured::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(
        135deg,
        #3b82f6,
        #8b5cf6,
        #06b6d4,
        #10b981,
        #f59e0b,
        #ef4444,
        #ec4899,
        #8b5cf6,
        #3b82f6
    );
    background-size: 400% 400%;
    border-radius: 26px;
    z-index: -1;
    animation: gradient-glow 8s ease infinite;
}

.pricing-card-tier.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card-solid);
    border-radius: 24px;
    z-index: -1;
}

@keyframes gradient-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pricing-card-tier.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

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

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.tier-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tier-amount {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.tier-period {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-left: 4px;
}

.tier-original {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.strikethrough {
    font-size: 1rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.tier-discount {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-light);
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
}

.tier-minimum {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.tier-features {
    list-style: none;
    margin: 24px 0;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.tier-features li .check {
    color: var(--green-light);
    font-weight: 600;
}

.tier-features li .check.pro {
    color: var(--purple-light);
}

.tier-features li .check.team {
    color: var(--cyan-light);
}

.tier-features li.disabled {
    color: var(--text-tertiary);
}

.tier-features li .x {
    color: var(--text-tertiary);
}

.tier-cta {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blue);
}

.tier-cta.featured {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border: none;
}

.tier-cta.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Lifetime Deal Banner */
.lifetime-deal {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 20px;
}

.lifetime-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.lifetime-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lifetime-icon {
    font-size: 2.5rem;
}

.lifetime-left h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
}

.lifetime-left p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.lifetime-right {
    text-align: right;
}

.lifetime-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.lifetime-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-left: 8px;
}

.lifetime-spots {
    display: block;
    font-size: 0.875rem;
    color: var(--red);
    font-weight: 600;
    margin-top: 4px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.0625rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--blue-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.contact-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--cyan);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: var(--cyan-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

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

.contact-social p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--blue);
    color: var(--blue-light);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.pricing-card {
    max-width: 580px;
    margin: 0 auto;
    padding: 56px;
    background: var(--bg-card-solid);
    border-radius: 28px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--cyan));
    border-radius: 30px;
    z-index: -1;
    animation: gradient-rotate 6s linear infinite;
}

@keyframes gradient-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 700;
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.35);
}

.pricing-eyebrow {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-value {
    font-size: 5.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-period {
    font-size: 1.0625rem;
    color: var(--text-tertiary);
    margin-bottom: 36px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 36px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature .check {
    color: var(--green-light);
    font-size: 1.125rem;
}

.pricing-cta {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--text-primary);
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.lifetime-banner {
    margin-top: 28px;
    padding: 24px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 14px;
}

.lifetime-banner h4 {
    color: var(--red);
    font-size: 1rem;
    margin-bottom: 6px;
}

.lifetime-banner p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 180px 24px;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.final-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.final-title .gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.final-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 24px;
}

.final-form input {
    flex: 1;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 14px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
}

.final-form input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.final-form button {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--bg-primary);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.final-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.form-note {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin-bottom: 48px;
}

.final-counter {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 100px;
}

.counter-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--blue);
    text-shadow: 0 0 20px var(--blue);
}

.counter-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Form Success */
.form-success {
    display: none;
    padding: 28px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    max-width: 520px;
    margin: 0 auto 24px;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 6px;
}

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

/* Footer */
footer {
    padding: 48px 24px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

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

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--blue);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .n8n-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .quotes-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .calculator-results {
        position: static;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card-tier.featured {
        transform: none;
        order: -1;
    }

    .pricing-card-tier.featured:hover {
        transform: translateY(-4px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .lifetime-content {
        flex-direction: column;
        text-align: center;
    }

    .lifetime-left {
        flex-direction: column;
    }

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

    .nav-links,
    .nav-auth {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 16px;
    }

    .cta-form,
    .final-form {
        flex-direction: column;
    }

    .value-main {
        flex-direction: column;
        gap: 12px;
    }

    .value-price {
        align-self: flex-start;
        margin-left: 44px;
    }

    .n8n-features {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .pricing-value {
        font-size: 4rem;
    }

    /* Calculator mobile fixes */
    .calculator-inputs {
        padding: 28px 20px;
    }

    .calculator-results {
        padding: 28px 20px;
    }

    .calc-input-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .calc-input {
        max-width: 100px;
        padding: 12px 14px;
        font-size: 1.125rem;
    }

    .calc-unit {
        font-size: 0.875rem;
    }

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

    .result-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
    }

    .result-row-value {
        font-size: 1rem;
    }

    .terminal-body {
        padding: 24px;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}