/* ===== ROOT & VARIABLES ===== */
:root {
    --bg-dark: #0a0a0f;
    --bg-section: #111118;
    --bg-card: #1a1a24;
    --bg-card-hover: #222233;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --accent-primary: #8b5cf6;
    --accent-secondary: #06b6d4;
    --accent-glow: rgba(139, 92, 246, 0.4);
    --accent-gradient: linear-gradient(135deg, #8b5cf6, #06b6d4);
    --accent-gradient-2: linear-gradient(135deg, #f97316, #ec4899);
    --neon-purple: #a855f7;
    --neon-cyan: #22d3ee;
    --neon-green: #34d399;
    --neon-red: #f87171;
    --border-color: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-sm: 10px;
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.desktop-only { display: inline; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.1); }
    50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.2); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll[style*="--delay: 1"] { transition-delay: 0.1s; }
.animate-on-scroll[style*="--delay: 2"] { transition-delay: 0.2s; }
.animate-on-scroll[style*="--delay: 3"] { transition-delay: 0.3s; }
.animate-on-scroll[style*="--delay: 4"] { transition-delay: 0.4s; }
.animate-on-scroll[style*="--delay: 5"] { transition-delay: 0.5s; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo-img { width: auto !important; height: 44px !important; border-radius: 0 !important; }
.nav-links {
    display: flex;
    gap: 28px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    color: #fff;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.nav-cta-group { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(139, 92, 246, 0.1);
}
.btn-3d {
    box-shadow: 0 4px 0 rgba(109, 40, 217, 0.8), 0 8px 20px rgba(0,0,0,0.3);
    transform: translateY(0);
}
.btn-3d:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(109, 40, 217, 0.8), 0 12px 30px rgba(0,0,0,0.4); }
.btn-3d:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(109, 40, 217, 0.8), 0 4px 10px rgba(0,0,0,0.3); }
.btn-glow { animation: glow 3s ease-in-out infinite; }
.btn-block { width: 100%; justify-content: center; }
.btn-large { padding: 20px 40px; font-size: 1.15rem; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                var(--bg-dark);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.5) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--neon-purple);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.hero-badge-large {
    font-size: 2.8rem;
    padding: 16px 48px;
    letter-spacing: 3px;
    font-weight: 900;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-buttons-grid { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.hero-btn-col { display: flex; flex-direction: column; gap: 12px; }
.hero-btn-col .btn { min-width: 200px; text-align: center; }
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-left: 4px;
}
.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    background: var(--border-color);
    align-self: stretch;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scrollDown 2s ease infinite;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section:nth-child(even) { background: var(--bg-section); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--neon-purple);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 16px auto 0;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text { font-size: 1.05rem; color: var(--text-secondary); }
.about-text p { margin-bottom: 16px; }
.about-lead { font-size: 1.3rem; color: var(--text-primary); }
.about-text strong { color: var(--text-primary); }
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrapper img { border-radius: var(--radius-lg); }
.about-img-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: var(--accent-gradient);
    z-index: -1;
    opacity: 0.4;
    filter: blur(20px);
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(139, 92, 246, 0.1);
    color: var(--neon-purple);
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== COMPARE ===== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}
.compare-card:hover { transform: translateY(-4px); }
.compare-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.compare-header h3 { font-size: 1.2rem; }
.compare-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.compare-icon-bad { background: rgba(248, 113, 113, 0.15); color: var(--neon-red); }
.compare-icon-good { background: rgba(52, 211, 153, 0.15); color: var(--neon-green); }
.compare-bad { border-color: rgba(248, 113, 113, 0.15); }
.compare-good { border-color: rgba(52, 211, 153, 0.15); }
.compare-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.compare-list li:last-child { border-bottom: none; }
.compare-bad .compare-list li::before {
    content: '\2715';
    position: absolute;
    left: 0;
    color: var(--neon-red);
    font-weight: 700;
}
.compare-good .compare-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.pricing-popular {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, var(--bg-card) 100%);
    transform: scale(1.04);
}
.pricing-popular:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 50px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-header { margin-bottom: 28px; text-align: center; }
.pricing-header h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.pricing-price { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px; }
.price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    width: 100%;
}
.price-from { font-size: 0.9rem; color: var(--text-secondary); }
.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-currency { font-size: 1rem; color: var(--text-secondary); }
.pricing-features {
    margin-bottom: 28px;
}
.pricing-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
}

/* ===== CASES (new carousel) ===== */
.cases { padding: 80px 0; }
.nc-outer {
    position: relative;
    z-index: 1;
    width: 780px;
    max-width: 100%;
    margin: 0 auto;
}
.nc-top-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 0 4px;
}
.nc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(91, 74, 255, 0.45);
    border-radius: 100px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    font-family: 'Onest', 'Inter', sans-serif;
}
.nc-bdot {
    width: 6px;
    height: 6px;
    background: #5b4aff;
    border-radius: 50%;
    animation: ncPulse 2s ease-in-out infinite;
}
@keyframes ncPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(91, 74, 255, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(91, 74, 255, 0); }
}
.nc-counter-top {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-family: 'Onest', 'Inter', sans-serif;
}
.nc-track-wrap {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 100px rgba(91, 74, 255, 0.13), 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
}
.nc-track-wrap::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(91, 74, 255, 0.8), rgba(56, 189, 248, 0.8), transparent);
}
.nc-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
}
.nc-slide {
    min-width: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    position: relative;
    overflow: hidden;
}
.nc-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 110%, rgba(91, 74, 255, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 20% -10%, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
    pointer-events: none;
}
.nc-slide-head {
    padding: 28px 32px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.nc-slide-title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    white-space: pre-line;
    font-family: 'Onest', 'Inter', sans-serif;
}
.nc-slide-title span {
    background: linear-gradient(90deg, #7c6aff, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nc-kpi-row {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.nc-kpi-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 10px 14px;
    text-align: center;
    min-width: 84px;
}
.nc-kpi-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
    font-family: 'Onest', 'Inter', sans-serif;
}
.nc-kpi-val {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Onest', 'Inter', sans-serif;
}
.nc-blue .nc-kpi-val {
    background: linear-gradient(135deg, #38bdf8, #7c6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nc-price .nc-kpi-val {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nc-screenshot-wrap {
    margin: 0 24px 24px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.06), 0 16px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}
.nc-screenshot-wrap img {
    width: 100%;
    display: block;
}
.nc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 4px;
}
.nc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    font-family: 'Onest', 'Inter', sans-serif;
}
.nc-nav-btn:hover {
    background: rgba(91, 74, 255, 0.2);
    border-color: rgba(91, 74, 255, 0.4);
    transform: scale(1.06);
}
.nc-nav-btn:disabled {
    opacity: 0.2;
    cursor: default;
    transform: none;
}
.nc-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 480px;
}
.nc-dots .nc-dot {
    height: 4px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.13);
    cursor: pointer;
    transition: width 0.35s, background 0.35s;
    width: 16px;
}
.nc-dots .nc-dot.active {
    width: 28px;
    background: linear-gradient(90deg, #5b4aff, #38bdf8);
}

/* ===== APPROACH ===== */
.approach { background: var(--bg-dark); }
.approach-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.approach-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary), var(--neon-green));
}
.approach-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}
.step-number {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--neon-purple);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}
.step-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.step-content:hover { border-color: rgba(139, 92, 246, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.step-screenshot {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.step-screenshot img {
    width: 100%;
    transition: var(--transition);
}
.step-screenshot:hover img { transform: scale(1.02); }
.btn-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: rgba(139, 92, 246, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}
.btn-zoom:hover {
    background: rgba(139, 92, 246, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}
.approach-result {
    max-width: 500px;
    margin: 40px auto 0;
}
.result-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}
.result-item { text-align: center; }
.result-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.result-down { color: var(--neon-green); }
.result-up { color: var(--neon-green); }
.result-value {
    font-size: 2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.result-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

/* ===== CTA ===== */
.cta {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 70%),
                var(--bg-dark);
    text-align: center;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}
.cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.cta-content .btn { margin-top: 24px; }

/* ===== CONTACTS ===== */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.contact-icon {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: var(--neon-purple);
    margin-bottom: 16px;
}
.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-value { font-size: 1.05rem; font-weight: 600; }
.contact-name { font-size: 0.9rem; color: var(--text-secondary); margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 6px; }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}
.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s;
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-content img {
    max-width: 95vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* ===== FLOATING TELEGRAM ===== */
.floating-tg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}
.floating-tg:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
}

/* ===== PARTICLES (canvas style divs) ===== */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-popular { transform: none; }
    .pricing-popular:hover { transform: translateY(-4px); }
    .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-logo-img { height: 36px !important; }
    .nav-links, .nav-cta, .nav-cta-group { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-cta-group.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: calc(100% + 200px);
        left: 24px; right: 24px;
    }
    .nav-cta-group.active .nav-cta {
        display: block;
        text-align: center;
    }
    .hero-content { padding: 100px 20px 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-badge-large { font-size: 1.8rem; padding: 12px 28px; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons-grid { display: flex; flex-direction: row; gap: 12px; justify-content: center; }
    .hero-btn-col { display: flex; flex-direction: column; gap: 10px; }
    .hero-btn-col .btn { min-width: auto; font-size: 0.85rem; padding: 12px 16px; }
    .hero-stats { gap: 24px; }
    .hero-stat-number { font-size: 2rem; }
    .hero-stat-divider { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-image { order: -1; }
    .benefits-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .section-header { margin-bottom: 40px; }
    .nc-slide-head { flex-direction: column; padding: 20px; }
    .nc-kpi-row { width: 100%; justify-content: center; }
    .nc-slide-title { font-size: 20px; }
    .nc-kpi-val { font-size: 16px; }
    .nc-screenshot-wrap { margin: 0 16px 16px; }
    .nc-outer { padding: 0 16px; }
    .approach-timeline::before { left: 20px; }
    .approach-step { gap: 16px; }
    .step-number { width: 42px; height: 42px; font-size: 0.9rem; }
    .step-content { padding: 20px; }
    .result-card { gap: 24px; padding: 24px; }
    .result-value { font-size: 1.5rem; }
    .footer-content { flex-direction: column; gap: 12px; text-align: center; }
    .floating-tg { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .desktop-only { display: none; }
    .contacts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.8rem; }
    .btn { padding: 14px 24px; font-size: 0.9rem; }
    .btn-large { padding: 16px 28px; font-size: 1rem; }
    .pricing-card { padding: 24px; }
    .compare-card { padding: 24px; }
    .contacts-grid { grid-template-columns: 1fr; }
    .approach-timeline::before { display: none; }
    .approach-step { flex-direction: column; gap: 12px; }
    .step-number { align-self: flex-start; }
    .nc-slide-title { font-size: 18px; }
    .nc-kpi-pill { padding: 8px 10px; min-width: 70px; }
    .nc-kpi-val { font-size: 14px; }
    .nc-kpi-label { font-size: 9px; }
    .nc-dots { max-width: 280px; }
    .contact-modal { width: 92vw; padding: 28px 20px; }
    .contact-option { flex-direction: column; text-align: center; padding: 16px 12px; }
}

/* ===== CONTACT MODAL ===== */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.contact-modal-overlay.active {
    display: flex;
}
.contact-modal {
    background: linear-gradient(145deg, rgba(30, 20, 50, 0.98), rgba(15, 10, 30, 0.98));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 480px;
    width: 90vw;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(139, 92, 246, 0.15);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.contact-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.contact-modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    text-align: center;
}
.contact-modal-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 28px;
}
.contact-modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.25s;
}
.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.contact-option svg {
    flex-shrink: 0;
}
.contact-option-tg:hover {
    background: rgba(0, 136, 204, 0.15);
    border-color: rgba(0, 136, 204, 0.4);
}
.contact-option-tg svg { color: #0088cc; }
.contact-option-max:hover {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
}
.contact-option-max svg { color: #4CAF50; }
.contact-option-phone:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}
.contact-option-phone svg { color: var(--neon-purple); stroke: var(--neon-purple); }
.contact-phone-number {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
}

/* ===== AUDIT SECTION ===== */
.audit-section {
    padding: 60px 0 80px;
}
.audit-card {
    background: linear-gradient(145deg, rgba(30, 20, 50, 0.6), rgba(15, 10, 30, 0.6));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 48px 40px 36px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.08);
}
.audit-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 32px;
}
.audit-progress {
    margin-bottom: 28px;
}
.audit-progress-label {
    display: inline-block;
    background: var(--neon-purple);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.audit-progress-bar {
    display: flex;
    gap: 6px;
}
.audit-progress-seg {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}
.audit-progress-seg.done {
    background: var(--neon-purple);
}
.audit-progress-seg.current {
    background: repeating-linear-gradient(
        -45deg,
        var(--neon-purple),
        var(--neon-purple) 4px,
        rgba(139, 92, 246, 0.5) 4px,
        rgba(139, 92, 246, 0.5) 8px
    );
    background-size: 200% 100%;
    animation: stripesMove 1s linear infinite;
}
@keyframes stripesMove {
    from { background-position: 0 0; }
    to { background-position: 16px 0; }
}
.audit-step {
    display: none;
}
.audit-step.active {
    display: block;
}
.audit-step-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.audit-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.audit-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}
.audit-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.audit-input:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}
.audit-input.error {
    border-color: #e74c3c;
}
.audit-textarea {
    min-height: 100px;
    resize: vertical;
}
.audit-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.audit-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--neon-purple);
}
.audit-file-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.audit-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}
.audit-file-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--neon-purple);
}
.audit-file-name {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 600;
}
.audit-nav {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.audit-btn {
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.audit-btn-back {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.audit-btn-back:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.audit-btn-next {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}
.audit-btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5); }
.audit-success {
    text-align: center;
    padding: 40px 0;
}
.audit-success-icon {
    width: 72px;
    height: 72px;
    background: var(--neon-purple);
    color: #fff;
    font-size: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}
.audit-success-text {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}
.btn-audit-glow {
    border-color: rgba(139, 92, 246, 0.5) !important;
    color: var(--neon-purple) !important;
}
.btn-audit-glow:hover {
    background: rgba(139, 92, 246, 0.12) !important;
    border-color: var(--neon-purple) !important;
}
@media (max-width: 480px) {
    .audit-card { padding: 32px 20px 24px; }
    .audit-section-title { font-size: 1.15rem; }
    .audit-nav { flex-direction: column; }
    .audit-btn { width: 100%; text-align: center; }
}

/* ===== REVIEWS ===== */
.reviews-sub { font-size: 1rem; color: rgba(255,255,255,0.35); margin-top: 8px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.review-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.review-card:hover { border-color: rgba(139, 92, 246, 0.25); transform: translateY(-3px); }
.review-card:hover::before { opacity: 1; }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-star { width: 16px; height: 16px; fill: #f59e0b; }
.review-quote {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.review-quote::before {
    content: '\201C';
    font-size: 48px;
    line-height: 0;
    vertical-align: -18px;
    color: rgba(139, 92, 246, 0.35);
    font-weight: 900;
    margin-right: 2px;
}
.review-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin-bottom: 18px;
}
.review-company { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.review-logo {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1.2; }
.review-role { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== TARIFF FORM MODAL ===== */
.tariff-form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

/* ===== QUICK CONTACT FORM ===== */
.quick-form-card {
    background: linear-gradient(145deg, rgba(30, 20, 50, 0.6), rgba(15, 10, 30, 0.6));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.08);
}
.quick-form-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 24px;
}
.quick-form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.quick-form-success {
    text-align: center;
    padding: 20px 0;
}
@media (max-width: 480px) {
    .quick-form-card { padding: 28px 20px; }
}
