/* ==========================================================================
   DMG-AUTOMAÇÃO Landing Page — MATRIX PREMIUM THEME (Refined)
   ========================================================================== */

/* ── CSS Variables ── */
:root {
    --bg-primary: #050a08;
    --bg-secondary: #0a120e;
    --bg-card: rgba(10, 22, 16, 0.7);
    --bg-card-hover: rgba(14, 30, 22, 0.8);

    --text-primary: #c8ddd2;
    --text-secondary: #6a9a80;
    --text-muted: #3d6a54;

    /* Softer, more elegant greens */
    --accent-primary: #3dffa8;
    --accent-secondary: #2ee89a;
    --accent-dim: #1cb87a;
    --accent-glow: rgba(61, 255, 168, 0.2);
    --accent-gradient: linear-gradient(135deg, #2ee89a 0%, #3dffa8 50%, #1cb87a 100%);

    --green: #3dffa8;
    --red: #ff5555;
    --yellow: #d4ff55;
    --cyan: #55ffd4;

    --border-color: rgba(61, 255, 168, 0.06);
    --border-hover: rgba(61, 255, 168, 0.18);

    --glass: rgba(10, 22, 16, 0.5);
    --glass-border: rgba(61, 255, 168, 0.08);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 50px rgba(61, 255, 168, 0.04);
    --shadow-glow-strong: 0 0 80px rgba(61, 255, 168, 0.08);

    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Matrix Canvas ── */
#matrix-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.07;
}

/* ── Background Effects ── */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(61, 255, 168, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 255, 168, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.8s var(--transition-smooth);
}

.bg-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(61, 255, 168, 0.08), transparent 70%);
    top: -250px;
    right: -150px;
}

.bg-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 232, 154, 0.05), transparent 70%);
    bottom: 25%;
    left: -200px;
}

.bg-glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(28, 184, 122, 0.04), transparent 70%);
    top: 55%;
    right: -150px;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.4s var(--transition-smooth);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    background: rgba(5, 10, 8, 0.6);
    border-bottom: 1px solid var(--glass-border);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(5, 10, 8, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

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

.logo-icon {
    color: var(--accent-primary);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 6px var(--accent-glow));
}

.logo-accent {
    color: var(--accent-dim);
    font-weight: 500;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width 0.3s var(--transition-smooth);
    opacity: 0.5;
}

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

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

.nav-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-social .social-link {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-dim) 0%, var(--accent-secondary) 100%);
    color: #040a07;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.84rem;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(61, 255, 168, 0.12);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(61, 255, 168, 0.2);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dim) 0%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
    color: #040a07;
    box-shadow: 0 4px 24px rgba(61, 255, 168, 0.15), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(61, 255, 168, 0.22), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--glass);
    color: var(--accent-primary);
    border: 1px solid rgba(61, 255, 168, 0.12);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(61, 255, 168, 0.06);
    border-color: rgba(61, 255, 168, 0.25);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 38px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* ── Glitch Callout (Matrix Error) ── */
.glitch-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 8px;
    padding: 14px 28px;
    background: rgba(61, 255, 168, 0.03);
    border: 1px solid rgba(61, 255, 168, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    position: relative;
    overflow: hidden;
    animation: glitchBorder 4s ease-in-out infinite;
}

.glitch-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(61, 255, 168, 0.04), transparent);
    animation: glitchScan 3s linear infinite;
}

.glitch-bracket {
    color: var(--accent-primary);
    font-size: 1.3rem;
    font-weight: 700;
    animation: bracketFlicker 2.5s ease-in-out infinite;
}

.glitch-text {
    color: var(--accent-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    animation: glitchText 3s ease-in-out infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-text::before {
    color: #ff3355;
    animation: glitchLayer1 3s ease-in-out infinite;
}

.glitch-text::after {
    color: #55ffd4;
    animation: glitchLayer2 3s ease-in-out infinite;
}

.glitch-sub {
    width: 100%;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-family: var(--font-sans);
    margin-top: 4px;
    letter-spacing: 0;
}

/* Hero variant — BIG */
.glitch-callout-hero {
    padding: 22px 40px;
    margin-bottom: 16px;
    max-width: 600px;
}

.glitch-callout-hero .glitch-bracket {
    font-size: 2rem;
}

.glitch-callout-hero .glitch-text {
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.glitch-callout-hero .glitch-sub {
    font-size: 0.95rem;
    margin-top: 8px;
}

@keyframes glitchBorder {
    0%, 90%, 100% { border-color: rgba(61, 255, 168, 0.1); }
    92% { border-color: rgba(61, 255, 168, 0.3); }
    94% { border-color: rgba(61, 255, 168, 0.05); }
    96% { border-color: rgba(61, 255, 168, 0.4); }
}

@keyframes glitchScan {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes bracketFlicker {
    0%, 85%, 100% { opacity: 1; }
    87% { opacity: 0.3; }
    89% { opacity: 1; }
    91% { opacity: 0.5; }
    93% { opacity: 1; }
}

@keyframes glitchText {
    0%, 85%, 100% { transform: translateX(0); }
    86% { transform: translateX(-2px); }
    88% { transform: translateX(2px); }
    90% { transform: translateX(-1px); }
    92% { transform: translateX(0); }
}

@keyframes glitchLayer1 {
    0%, 85%, 100% { opacity: 0; }
    87% { opacity: 0.6; transform: translateX(-3px); }
    89% { opacity: 0; }
}

@keyframes glitchLayer2 {
    0%, 88%, 100% { opacity: 0; }
    90% { opacity: 0.6; transform: translateX(3px); }
    92% { opacity: 0; }
}

/* ── Gradient Text ── */
.gradient-text {
    background: linear-gradient(135deg, #2ee89a 0%, #3dffa8 40%, #55ffd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    color: var(--red);
}

/* ── Section Styles ── */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 16px;
    padding: 7px 18px;
    background: rgba(61, 255, 168, 0.04);
    border-radius: 100px;
    border: 1px solid rgba(61, 255, 168, 0.08);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding: 7px 18px;
    background: rgba(61, 255, 168, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--accent-glow); }
    50% { opacity: 0.3; box-shadow: 0 0 2px var(--accent-glow); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-subtitle strong {
    color: var(--accent-secondary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* ── Hero Stats ── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-infinity {
    font-size: 2.8rem;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

/* ── Terminal Window ── */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    z-index: 2;
}

.terminal-window {
    background: rgba(7, 16, 11, 0.85);
    border: 1px solid rgba(61, 255, 168, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    backdrop-filter: blur(16px);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(61, 255, 168, 0.015);
    border-bottom: 1px solid rgba(61, 255, 168, 0.06);
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.85;
}

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

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 18px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.9;
    min-height: 240px;
}

.terminal-line {
    opacity: 0;
    animation: terminalFadeIn 0.5s var(--transition-smooth) forwards;
}

.terminal-line[data-delay="0"] { animation-delay: 0.5s; }
.terminal-line[data-delay="400"] { animation-delay: 0.9s; }
.terminal-line[data-delay="800"] { animation-delay: 1.3s; }
.terminal-line[data-delay="1000"] { animation-delay: 1.5s; }
.terminal-line[data-delay="1200"] { animation-delay: 1.7s; }
.terminal-line[data-delay="1400"] { animation-delay: 1.9s; }
.terminal-line[data-delay="1600"] { animation-delay: 2.1s; }
.terminal-line[data-delay="2000"] { animation-delay: 2.5s; }

@keyframes terminalFadeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.t-prompt { color: var(--accent-secondary); }
.t-command { color: var(--text-primary); }
.t-output { color: var(--text-secondary); }
.t-green { color: var(--accent-primary); }
.t-yellow { color: var(--yellow); }
.t-cyan { color: var(--cyan); }
.t-dim { color: var(--text-muted); }

/* ── Cards Base (Glassmorphism) ── */
.problem-card,
.feature-card,
.result-card,
.get-item,
.step-content {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ── Problem Section ── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--transition-smooth);
}

.problem-card:hover {
    border-color: rgba(255, 85, 85, 0.15);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s var(--transition-bounce);
}

.problem-card:hover .problem-icon {
    transform: scale(1.15);
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ── Pipeline Timeline (Premium Animated) ── */
.pipeline-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.pipeline-step {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--transition-smooth);
}

.pipeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
}

/* ── Step Number — Animated Glow Ring ── */
.step-number {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(61, 255, 168, 0.04);
    border: 1.5px solid rgba(61, 255, 168, 0.15);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--accent-secondary);
    flex-shrink: 0;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    z-index: 2;
}

/* Outer glow ring (pulses when visible) */
.pipeline-step.visible .step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(61, 255, 168, 0.12);
    animation: ring-pulse 3s ease-in-out infinite;
}

/* Rotating orbital dot */
.pipeline-step.visible .step-number::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform-origin: 50% calc(50% + 29px);
    animation: orbit-dot 4s linear infinite;
    box-shadow: 0 0 6px var(--accent-glow);
    opacity: 0.6;
}

@keyframes ring-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.15);
    }
}

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

.pipeline-step:hover .step-number {
    background: rgba(61, 255, 168, 0.1);
    border-color: rgba(61, 255, 168, 0.35);
    box-shadow: 0 0 25px rgba(61, 255, 168, 0.12);
    transform: scale(1.05);
}

/* ── Connection Line — Animated Data Flow ── */
.step-line {
    width: 2px;
    flex: 1;
    min-height: 32px;
    position: relative;
    background: rgba(61, 255, 168, 0.06);
    overflow: hidden;
}

/* Flowing particle down the line */
.pipeline-step.visible .step-line::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
    animation: flow-down 2.5s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes flow-down {
    0% { top: -20px; opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* ── Step Card — Shimmer Border + Scan Line ── */
.step-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 12px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(61, 255, 168, 0.02) 40%,
        rgba(61, 255, 168, 0.06) 50%,
        rgba(61, 255, 168, 0.02) 60%,
        transparent 100%
    );
    transition: none;
    pointer-events: none;
}

.step-content:hover::before {
    animation: shimmer-sweep 0.8s ease forwards;
}

@keyframes shimmer-sweep {
    from { left: -100%; }
    to { left: 100%; }
}

/* Scan line on reveal */
.pipeline-step.visible .step-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: scan-line 1.2s ease forwards;
    opacity: 0;
}

@keyframes scan-line {
    0% { left: -100%; opacity: 0; }
    30% { opacity: 0.6; }
    100% { left: 100%; opacity: 0; }
}

.step-content:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(6px);
    box-shadow: -4px 0 30px rgba(61, 255, 168, 0.04), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

/* ── Step Icon — Float Animation ── */
.step-icon {
    font-size: 1.3rem;
    display: inline-block;
}

.pipeline-step.visible .step-icon {
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.step-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    flex: 1;
}

/* ── Script Badge — Blinking Cursor ── */
.step-script {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyan);
    background: rgba(85, 255, 212, 0.04);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(85, 255, 212, 0.08);
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s;
}

.step-script::after {
    content: '▊';
    font-size: 0.6rem;
    color: var(--cyan);
    margin-left: 3px;
    animation: cursor-blink 1.2s steps(1) infinite;
    opacity: 0.5;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0; }
}

.step-content:hover .step-script {
    background: rgba(85, 255, 212, 0.08);
    border-color: rgba(85, 255, 212, 0.18);
    box-shadow: 0 0 12px rgba(85, 255, 212, 0.06);
}

.step-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-secondary);
    background: rgba(61, 255, 168, 0.04);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(61, 255, 168, 0.08);
    transition: all 0.3s;
}

.step-content:hover .step-badge {
    background: rgba(61, 255, 168, 0.08);
    border-color: rgba(61, 255, 168, 0.18);
    box-shadow: 0 0 12px rgba(61, 255, 168, 0.06);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ── Features Grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(61, 255, 168, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 0 24px;
}

.feature-large .feature-icon-wrap {
    grid-row: 1 / 3;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 255, 168, 0.04);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid rgba(61, 255, 168, 0.06);
    transition: all 0.4s var(--transition-bounce);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.08);
    background: rgba(61, 255, 168, 0.06);
    border-color: rgba(61, 255, 168, 0.12);
}

.feature-icon {
    font-size: 1.4rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.feature-tags {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 4px 14px;
    border-radius: 100px;
    background: rgba(61, 255, 168, 0.03);
    color: var(--accent-dim);
    border: 1px solid rgba(61, 255, 168, 0.06);
    transition: all 0.3s;
}

.feature-tags span:hover {
    background: rgba(61, 255, 168, 0.06);
    border-color: rgba(61, 255, 168, 0.12);
    color: var(--accent-secondary);
}

/* ── Comparison Table ── */
.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    backdrop-filter: blur(12px);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(61, 255, 168, 0.015);
    border-bottom: 1px solid var(--glass-border);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(61, 255, 168, 0.03);
    transition: background 0.3s var(--transition-smooth);
}

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

.comparison-row:hover {
    background: rgba(61, 255, 168, 0.015);
}

.comparison-col {
    padding: 16px 24px;
    font-size: 0.9rem;
}

.comparison-header .comparison-col {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 14px 24px;
    letter-spacing: 0.3px;
}

.col-before {
    color: var(--red);
    opacity: 0.7;
}

.col-after {
    color: var(--accent-secondary);
    font-weight: 500;
}

.comparison-total {
    background: rgba(61, 255, 168, 0.02) !important;
}

.comparison-total .col-before,
.comparison-total .col-after {
    font-size: 1.05rem;
}

/* ── Time Highlight ── */
.time-highlight {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    backdrop-filter: blur(12px);
    transition: all 0.4s var(--transition-smooth);
}

.time-highlight:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow-strong);
}

.time-number {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
    flex-shrink: 0;
}

.time-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Results Grid ── */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.result-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.result-card:hover::before {
    opacity: 1;
}

.result-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.result-label {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.result-detail {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ── What You Get ── */
.get-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.get-item {
    display: flex;
    gap: 16px;
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--transition-smooth);
}

.get-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.get-check {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 255, 168, 0.06);
    border-radius: 50%;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(61, 255, 168, 0.1);
}

.get-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.get-item p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ── Pricing ── */
.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(61, 255, 168, 0.1);
    border-radius: var(--radius-xl);
    padding: 52px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-strong);
    backdrop-filter: blur(16px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), var(--accent-primary), var(--accent-secondary), transparent);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(61, 255, 168, 0.04), transparent 70%);
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #e44, #f97316);
    padding: 8px 22px;
    border-radius: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 16px 2px rgba(239, 68, 68, 0.12); }
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.pricing-discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 6px 18px;
    background: rgba(61, 255, 168, 0.04);
    border: 1px solid rgba(61, 255, 168, 0.1);
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

.discount-percent {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--accent-secondary);
}

.discount-text {
    font-size: 0.76rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-original {
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.price-old {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-value {
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2ee89a, #3dffa8, #55ffd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(61, 255, 168, 0.04);
    transition: color 0.2s;
}

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

.pricing-features li:hover {
    color: var(--text-primary);
}

.pricing-guarantee {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* ── FAQ ── */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(61, 255, 168, 0.04);
}

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

.faq-question:hover {
    color: var(--accent-secondary);
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--accent-dim);
    transition: transform 0.4s var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
}

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

.faq-answer p {
    padding-bottom: 22px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

.faq-answer code {
    font-family: var(--font-mono);
    background: rgba(61, 255, 168, 0.05);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.84rem;
    color: var(--accent-secondary);
    border: 1px solid rgba(61, 255, 168, 0.06);
}

/* ── Final CTA ── */
.final-cta {
    padding: 80px 0 120px;
}

.cta-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(61, 255, 168, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 36px;
    position: relative;
}

/* ── Footer ── */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(61, 255, 168, 0.04);
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(61, 255, 168, 0.06);
    border: 1px solid rgba(61, 255, 168, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
}

.social-link:hover {
    background: rgba(61, 255, 168, 0.12);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(61, 255, 168, 0.15);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── Community Section ── */
.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.community-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(61, 255, 168, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.community-card:hover::before {
    opacity: 1;
}

.community-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(61, 255, 168, 0.08);
}

.community-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
}

.community-instagram .community-icon {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.15), rgba(188, 42, 141, 0.15));
    color: #e4405f;
}

.community-instagram:hover .community-icon {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.25), rgba(188, 42, 141, 0.25));
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.2);
}

.community-telegram .community-icon {
    background: rgba(38, 166, 219, 0.12);
    color: #26a6db;
}

.community-telegram:hover .community-icon {
    background: rgba(38, 166, 219, 0.22);
    box-shadow: 0 0 20px rgba(38, 166, 219, 0.2);
}

.community-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.community-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.community-arrow {
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: all 0.3s var(--transition-smooth);
}

.community-card:hover .community-arrow {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* ── CTA Social Links ── */
.cta-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(61, 255, 168, 0.08);
}

.cta-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.cta-social-link:hover {
    color: var(--accent-primary);
    transform: translateY(-1px);
}

.cta-social-divider {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ══════════════════════════════════════════
   MASTER ANIMATION SYSTEM
   ══════════════════════════════════════════ */

/* ── Base Hidden State ── */
.anim-hidden {
    opacity: 0 !important;
    will-change: transform, opacity;
}

/* ── Directional Animations ── */
.anim-fadeSlideUp {
    transform: translateY(32px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.anim-fadeSlideDown {
    transform: translateY(-32px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.anim-fadeSlideLeft {
    transform: translateX(-40px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.anim-fadeSlideRight {
    transform: translateX(40px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.anim-scaleIn {
    transform: scale(0.92);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-bounce);
}

/* ── Visible State ── */
.anim-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* ── Checkmark Pop ── */
.check-pop {
    animation: checkPop 0.5s var(--transition-bounce) forwards;
}

@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

/* ── Button Ripple ── */
.btn-ripple {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    animation: rippleExpand 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* ── Gradient Border Shimmer (cards on hover) ── */
.feature-card::before,
.result-card::after,
.get-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(61, 255, 168, 0.03),
        transparent
    );
    pointer-events: none;
    transition: none;
}

.feature-card:hover::before,
.result-card:hover::after,
.get-item:hover::before {
    animation: shimmerCard 0.8s ease forwards;
}

@keyframes shimmerCard {
    from { left: -100%; }
    to { left: 200%; }
}

/* ── Comparison Row Highlight on Appear ── */
.comparison-row.anim-visible {
    animation: rowFlash 0.8s ease forwards;
}

@keyframes rowFlash {
    0% { background: transparent; }
    30% { background: rgba(61, 255, 168, 0.03); }
    100% { background: transparent; }
}

/* ── Pricing Glow Pulse ── */
.pricing-card.anim-visible {
    animation: pricingGlow 2s ease-in-out 0.5s;
}

@keyframes pricingGlow {
    0% { box-shadow: 0 0 0 0 rgba(61, 255, 168, 0); }
    50% { box-shadow: 0 0 60px 10px rgba(61, 255, 168, 0.08); }
    100% { box-shadow: 0 0 0 0 rgba(61, 255, 168, 0); }
}

/* ── CTA Card Entrance Glow ── */
.cta-card.anim-visible {
    animation: ctaGlow 2s ease-in-out 0.3s;
}

@keyframes ctaGlow {
    0% { box-shadow: 0 0 0 0 rgba(61, 255, 168, 0); }
    40% { box-shadow: 0 0 80px 15px rgba(61, 255, 168, 0.06); }
    100% { box-shadow: 0 0 0 0 rgba(61, 255, 168, 0); }
}

/* ── Stat Number Glow on Count ── */
.stat-number {
    transition: text-shadow 0.3s;
}

.hero-stats.anim-visible .stat-number {
    animation: statGlow 1.5s ease 0.5s;
}

@keyframes statGlow {
    0% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 20px rgba(61, 255, 168, 0.3); }
    100% { text-shadow: 0 0 0 transparent; }
}

/* ── Time Number Glow ── */
.time-highlight.anim-visible .time-number {
    animation: timeGlow 2s ease 0.3s;
}

@keyframes timeGlow {
    0% { text-shadow: 0 0 0 transparent; filter: brightness(1); }
    50% { text-shadow: 0 0 30px rgba(61, 255, 168, 0.4); filter: brightness(1.2); }
    100% { text-shadow: 0 0 0 transparent; filter: brightness(1); }
}

/* ── Nav Link Hover Animation Enhancement ── */
.nav-links a {
    transition: all 0.3s var(--transition-smooth), transform 0.2s;
}

.nav-links a:hover {
    transform: translateY(-1px);
}

/* ── Section Divider Glow Lines ── */
.section {
    border-top: 1px solid transparent;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 255, 168, 0.12), transparent);
    transition: width 1s var(--transition-smooth);
    pointer-events: none;
}

.section.anim-section-visible::before {
    width: 80%;
}

/* ── Floating animation for badges ── */
.pricing-badge {
    animation: badge-glow 3s ease-in-out infinite, badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ── Get Item position for shimmer ── */
.get-item {
    position: relative;
    overflow: hidden;
}

/* ── Result Card position for shimmer ── */
.result-card {
    overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-large { grid-column: span 2; grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-social { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-title { font-size: 2.2rem; }

    .glitch-callout-hero {
        padding: 12px 20px;
        max-width: 100%;
    }
    .glitch-callout-hero .glitch-bracket {
        font-size: 1.2rem;
    }
    .glitch-callout-hero .glitch-text {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    .glitch-callout-hero .glitch-sub {
        font-size: 0.78rem;
    }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-large { grid-column: span 1; }
    .comparison-table { overflow-x: auto; }
    .comparison-header, .comparison-row { min-width: 600px; }
    .time-highlight { flex-direction: column; text-align: center; }
    .results-grid { grid-template-columns: 1fr; }
    .get-grid { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 36px 24px; }
    .footer-content { flex-direction: column; gap: 12px; text-align: center; }
    .section { padding: 80px 0; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }

    /* ── Mobile Performance: smooth scrolling ── */
    /* Disable GPU-heavy bg glows */
    .bg-glow { display: none; }
    .bg-grid { display: none; }

    /* Simplify animations for smooth scroll */
    .anim-fadeSlideLeft,
    .anim-fadeSlideRight,
    .anim-fadeSlideUp,
    .anim-fadeSlideDown {
        transform: translateY(20px) !important;
        transition-duration: 0.4s !important;
    }
    .anim-fadeSlideLeft.anim-visible,
    .anim-fadeSlideRight.anim-visible,
    .anim-fadeSlideUp.anim-visible,
    .anim-fadeSlideDown.anim-visible {
        transform: translateY(0) !important;
    }

    .anim-scaleIn {
        transform: scale(0.95) !important;
        transition-duration: 0.4s !important;
    }

    /* Kill will-change on mobile (saves GPU memory) */
    .anim-hidden {
        will-change: auto !important;
    }

    /* Disable card shimmer on mobile */
    .feature-card::before,
    .result-card::after,
    .get-item::before {
        display: none;
    }

    /* Disable heavy glow animations */
    .pricing-card.anim-visible { animation: none; }
    .cta-card.anim-visible { animation: none; }
    .section::before { display: none; }

    /* Simpler pipeline line */
    .pipeline-line { display: none; }
}

