/* =====================================================
   CSS Variables — Exact Reference Design
   ===================================================== */
:root {
    /* Background Colors */
    --bg-dark: #111518;
    --bg-card: rgba(17, 21, 24, 0.7);
    --border-color: rgba(40, 50, 57, 0.5);

    /* Text Colors */
    --text-white: #ffffff;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --text-gray-500: #6b7280;

    /* Neon Accent Colors */
    --primary: #3da8f5;
    --neon-cyan: #06b6d4;
    --neon-purple: #d946ef;
    --neon-lime: #84cc16;
    --neon-fuchsia: #d946ef;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Noto Sans', sans-serif;

    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-all: all 0.3s ease;
    --transition-transform: transform 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-10);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-all);
}

ul {
    list-style: none;
}

/* =====================================================
   Custom Scrollbar
   ===================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111518;
}

::-webkit-scrollbar-thumb {
    background: #283239;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3da8f5;
}

/* =====================================================
   Glass Utilities
   ===================================================== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.neon-glow-cyan {
    box-shadow: 0 0 20px -5px rgba(6, 182, 212, 0.3),
        inset 0 0 10px -5px rgba(6, 182, 212, 0.2);
}

.neon-glow-purple {
    box-shadow: 0 0 20px -5px rgba(217, 70, 239, 0.3),
        inset 0 0 10px -5px rgba(217, 70, 239, 0.2);
}

.neon-glow-lime {
    box-shadow: 0 0 20px -5px rgba(132, 204, 22, 0.3),
        inset 0 0 10px -5px rgba(132, 204, 22, 0.2);
}

/* =====================================================
   Ambient Background Animations
   ===================================================== */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ambient-purple {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(217, 70, 239, 0.1);
    animation: float 10s ease-in-out infinite;
}

.ambient-cyan {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.1);
    animation: float 12s ease-in-out infinite reverse;
}

.ambient-lime {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: rgba(132, 204, 22, 0.1);
    filter: blur(80px);
}

/* =====================================================
   Header / Navigation
   ===================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-color);
    background: rgba(17, 21, 24, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-3) var(--space-10);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: var(--text-white);
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), rgba(217, 70, 239, 0.5));
    color: white;
    box-shadow: 0 0 15px rgba(61, 168, 245, 0.4);
    font-size: 20px;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.logo-image {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 20px rgba(61, 168, 245, 0.4));
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(61, 168, 245, 0.6));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    color: var(--text-gray-300);
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-white);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-weight: 700;
    transition: var(--transition-all);
}

.btn-primary {
    min-width: 84px;
    height: 40px;
    padding: 0 1.5rem;
    background: var(--primary);
    color: #111518;
    font-size: 0.875rem;
    border-radius: var(--radius-xl);
    letter-spacing: 0.015em;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.6);
}

.btn-cta {
    position: relative;
    min-width: 200px;
    height: 56px;
    background: transparent;
    border-radius: var(--radius-xl);
}

.btn-cta .glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(90deg, var(--neon-cyan), var(--primary), var(--neon-purple));
    opacity: 0.7;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.btn-cta:hover .glow {
    opacity: 1;
}

.btn-cta .inner {
    position: absolute;
    inset: 2px;
    border-radius: var(--radius-xl);
    background: #111518;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta .inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.2), rgba(61, 168, 245, 0.2), rgba(217, 70, 239, 0.2));
    opacity: 0;
    border-radius: var(--radius-xl);
    transition: opacity 0.3s ease;
}

.btn-cta:hover .inner::before {
    opacity: 1;
}

.btn-cta span {
    position: relative;
    z-index: 10;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: transform 0.2s ease;
}

.btn-cta:hover span {
    transform: scale(1.05);
}

/* =====================================================
   Main Content Area
   ===================================================== */
.main {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-20) 0;
    overflow: hidden;
}

/* =====================================================
   Section Header
   ===================================================== */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    margin-bottom: var(--space-16);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(55, 65, 81, 1);
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px -3px rgba(255, 255, 255, 0.1);
}

.badge span {
    color: var(--text-gray-300);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.gradient-text {
    background: linear-gradient(90deg, var(--neon-cyan), white, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-subtitle {
    color: var(--text-gray-400);
    font-family: var(--font-body);
    font-size: 1.125rem;
    max-width: 42rem;
}

/* =====================================================
   Features Grid
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

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

/* =====================================================
   Feature Card
   ===================================================== */
.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: scale(1.02);
}

/* Card border colors */
.feature-card.card-cyan {
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.feature-card.card-cyan:hover {
    border-color: rgba(6, 182, 212, 0.6);
}

.feature-card.card-purple {
    border: 1px solid rgba(217, 70, 239, 0.3);
}

.feature-card.card-purple:hover {
    border-color: rgba(217, 70, 239, 0.6);
}

.feature-card.card-lime {
    border: 1px solid rgba(132, 204, 22, 0.3);
}

.feature-card.card-lime:hover {
    border-color: rgba(132, 204, 22, 0.6);
}

/* Card overlay gradient on hover */
.feature-card .card-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card.card-cyan .card-overlay {
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.1), transparent);
}

.feature-card.card-purple .card-overlay {
    background: linear-gradient(to bottom, rgba(217, 70, 239, 0.1), transparent);
}

.feature-card.card-lime .card-overlay {
    background: linear-gradient(to bottom, rgba(132, 204, 22, 0.1), transparent);
}

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

/* Feature image container */
.feature-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    z-index: 10;
}

.feature-card.card-cyan .feature-image {
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-card.card-purple .feature-image {
    border: 1px solid rgba(217, 70, 239, 0.2);
}

.feature-card.card-lime .feature-image {
    border: 1px solid rgba(132, 204, 22, 0.2);
}

.feature-image .bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    transition: transform 0.7s ease;
}

.feature-card:hover .feature-image .bg-img {
    transform: scale(1.1);
}

.feature-image .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #111518, transparent);
    opacity: 0.6;
}

/* Feature icon badge */
.feature-icon {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    backdrop-filter: blur(12px);
    padding: 0.5rem;
    border-radius: 8px;
}

.feature-card.card-cyan .feature-icon {
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--neon-cyan);
}

.feature-card.card-purple .feature-icon {
    background: rgba(217, 70, 239, 0.2);
    border: 1px solid rgba(217, 70, 239, 0.3);
    color: var(--neon-purple);
}

.feature-card.card-lime .feature-icon {
    background: rgba(132, 204, 22, 0.2);
    border: 1px solid rgba(132, 204, 22, 0.3);
    color: var(--neon-lime);
}

/* Feature content */
.feature-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-title {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    transition: color 0.3s ease;
}

.feature-card.card-cyan:hover .feature-title {
    color: #67e8f9;
}

.feature-card.card-purple:hover .feature-title {
    color: #f0abfc;
}

.feature-card.card-lime:hover .feature-title {
    color: #bef264;
}

.feature-desc {
    color: var(--text-gray-400);
    font-size: 0.875rem;
    font-family: var(--font-body);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-desc {
    color: var(--text-gray-300);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    border-top: 1px solid #283239;
    background: var(--bg-dark);
    padding: var(--space-8) 0;
    z-index: 10;
}

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

.footer p {
    color: var(--text-gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    color: var(--text-gray-400);
    font-size: 0.75rem;
}

.footer-email {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(61, 168, 245, 0.5);
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.7),
        0 0 30px rgba(6, 182, 212, 0.4);
}

/* =====================================================
   Why Us Section
   ===================================================== */
.why-us-section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    margin-top: var(--space-16);
    position: relative;
}

/* Gradient divider line */
.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(6, 182, 212, 0.5) 20%,
            rgba(61, 168, 245, 0.8) 50%,
            rgba(217, 70, 239, 0.5) 80%,
            transparent);
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.3);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

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

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

/* Why Card */
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: var(--transition-all);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    border-color: rgba(61, 168, 245, 0.4);
    transform: translateY(-4px);
}

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

/* Why Icon */
.why-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.why-icon.icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--neon-cyan);
}

.why-icon.icon-purple {
    background: rgba(217, 70, 239, 0.15);
    color: var(--neon-purple);
}

.why-icon.icon-lime {
    background: rgba(132, 204, 22, 0.15);
    color: var(--neon-lime);
}

.why-icon .material-symbols-outlined {
    font-size: 22px;
}

/* Why Content */
.why-title {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 1;
}

.why-desc {
    color: var(--text-gray-400);
    font-size: 0.8rem;
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.why-card:hover .why-title {
    color: var(--primary);
}

.why-card:hover .why-desc {
    color: var(--text-gray-300);
}

/* =====================================================
   Why Us Section NEW (Light Background)
   ===================================================== */
.why-us-section-new {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1117 50%, #121821 100%);
    padding: 5rem 0;
    margin-top: var(--space-16);
    position: relative;
}

/* Gradient divider line */
.why-us-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(6, 182, 212, 0.5) 20%,
            rgba(61, 168, 245, 0.8) 50%,
            rgba(217, 70, 239, 0.5) 80%,
            transparent);
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.3);
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.why-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray-400);
    font-family: var(--font-body);
    max-width: 600px;
    margin: 0 auto;
}

.why-brand {
    color: var(--primary);
    font-weight: 600;
}

/* 6 Cards Grid */
.why-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

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

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

/* New Card Style */
.why-card-new {
    text-align: center;
    padding: 1rem;
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-icon-circle:hover {
    transform: scale(1.1);
}

.why-icon-circle .material-symbols-outlined {
    font-size: 32px;
}

/* Icon Colors */
.why-icon-circle.icon-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.why-icon-circle.icon-pink:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.why-icon-circle.icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(6, 182, 212, 0.3);
    color: var(--neon-cyan);
}

.why-icon-circle.icon-cyan:hover {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.why-icon-circle.icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.why-icon-circle.icon-green:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.why-icon-circle.icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.why-icon-circle.icon-blue:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.why-icon-circle.icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.why-icon-circle.icon-purple:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.why-icon-circle.icon-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.why-icon-circle.icon-orange:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

/* Card Content */
.why-card-title {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-card-desc {
    color: var(--text-gray-400);
    font-size: 0.9rem;
    font-family: var(--font-body);
    line-height: 1.7;
}

.why-card-new:hover .why-card-title {
    color: var(--primary);
}

.why-card-new:hover .why-card-desc {
    color: var(--text-gray-300);
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing-section {
    padding: 5rem 0 4rem;
    margin-top: var(--space-16);
    position: relative;
}

/* Gradient divider line for pricing */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(6, 182, 212, 0.5) 20%,
            rgba(61, 168, 245, 0.8) 50%,
            rgba(217, 70, 239, 0.5) 80%,
            transparent);
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

/* Pricing Card */
.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 168, 245, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    border-color: rgba(61, 168, 245, 0.3);
    box-shadow: 0 0 30px rgba(61, 168, 245, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    color: #111518;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(61, 168, 245, 0.4);
}

/* Selected Plan State */
.pricing-card-selected {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px);
}

.pricing-card-selected::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent);
    pointer-events: none;
}

.pricing-btn-selected {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4) !important;
}

.pricing-select-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Timeline */
.pricing-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-gray-400);
}

.pricing-timeline .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

.pricing-card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--primary);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .pricing-card-icon {
    opacity: 1;
}

.pricing-card-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pricing-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray-400);
}

/* Price Box */
.pricing-price-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-price-featured {
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.1), rgba(6, 182, 212, 0.05));
    border-color: rgba(61, 168, 245, 0.2);
}

.pricing-label {
    font-size: 0.7rem;
    color: var(--text-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.pricing-currency {
    font-size: 1rem;
    color: var(--text-gray-400);
    font-weight: 600;
}

/* Входит в пакет */
.pricing-included {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-lg);
}

.pricing-included-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.75rem;
}

.pricing-included-title .material-symbols-outlined {
    font-size: 1.25rem;
}

.pricing-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-included-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.8rem;
    color: var(--text-gray-300);
}

.pricing-included-list li .material-symbols-outlined {
    font-size: 1rem;
    color: #10b981;
}

/* Выдвижной блок Дополнительно */
.pricing-extras {
    margin-bottom: 1.5rem;
}

.pricing-extras-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-gray-300);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-extras-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-extras-toggle.open {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom-color: transparent;
    background: rgba(255, 255, 255, 0.05);
}

.pricing-extras-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.pricing-extras-toggle.open .pricing-extras-icon {
    transform: rotate(180deg);
}

.pricing-extras-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1rem;
}

.pricing-extras-content.open {
    max-height: 500px;
    padding: 0.75rem 1rem 1rem;
}

/* ============================================
   KANBAN SECTION
   ============================================ */

/* Кнопка открытия канбана */
.kanban-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 3rem 0 0;
}

.kanban-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(61, 168, 245, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kanban-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.2), rgba(6, 182, 212, 0.1));
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.3);
    transform: translateY(-2px);
}

.kanban-toggle-btn.open {
    background: rgba(61, 168, 245, 0.15);
    border-color: var(--primary);
}

.kanban-toggle-icon {
    transition: transform 0.3s ease;
}

.kanban-toggle-btn.open .kanban-toggle-icon {
    transform: rotate(180deg);
}

/* Канбан секция */
.kanban-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.3s ease, padding 0.3s ease;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kanban-section.open {
    max-height: 2000px;
    margin: 2rem 0;
    padding: 2rem;
    border-color: rgba(255, 255, 255, 0.1);
}

.kanban-header {
    text-align: center;
    margin-bottom: 2rem;
}

.kanban-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.kanban-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray-400);
}

/* Канбан доска */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

@media (max-width: 1200px) {
    .kanban-board {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .kanban-board {
        grid-template-columns: 1fr;
    }
}

/* Колонки канбана */
.kanban-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.kanban-column-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid;
}

/* Цвета заголовков колонок */
.kanban-title-marketing {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.kanban-title-ux {
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.3);
}

.kanban-title-comm {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
}

.kanban-title-sales {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.kanban-title-infra {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

/* Элементы канбана */
.kanban-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kanban-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    color: var(--text-gray-400);
}

.kanban-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray-300);
}

.kanban-checkbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.kanban-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.kanban-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #111518;
    font-size: 0.65rem;
    font-weight: bold;
}

.kanban-item:has(.kanban-checkbox:checked) {
    background: rgba(61, 168, 245, 0.1);
    color: var(--text-white);
}

/* Addons */
.pricing-addons {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-addons-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.pricing-addon-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-gray-400);
    transition: color 0.2s ease;
}

.pricing-addon-item:hover {
    color: var(--text-gray-300);
}

.pricing-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pricing-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(61, 168, 245, 0.5);
}

.pricing-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #111518;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Pricing Carousel */
.pricing-carousel {
    position: relative;
    min-height: 120px;
}

.pricing-carousel-track {
    position: relative;
}

.pricing-carousel-page {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-carousel-page.active {
    display: block;
    opacity: 1;
}

.pricing-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pricing-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.pricing-carousel-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(61, 168, 245, 0.5);
    transform: scale(1.2);
}

/* Pricing Buttons */
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(61, 168, 245, 0.1);
    border-color: var(--primary);
}

.pricing-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    border: none;
    color: #111518;
    box-shadow: 0 4px 20px rgba(61, 168, 245, 0.3);
}

.pricing-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(61, 168, 245, 0.4);
}

/* Pricing Summary */
.pricing-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
}

.pricing-summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(61, 168, 245, 0.1);
    border: 2px solid rgba(61, 168, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.pricing-summary-icon .material-symbols-outlined {
    font-size: 2rem;
}

.pricing-summary-info {
    flex-grow: 1;
}

.pricing-summary-label {
    font-size: 0.75rem;
    color: var(--text-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-summary-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-summary-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.pricing-summary-currency {
    font-size: 1.25rem;
    color: var(--text-gray-400);
}

.pricing-summary-note {
    font-size: 0.75rem;
    color: var(--text-gray-500);
}

.pricing-summary-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-gray-300);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.pricing-btn-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    border: none;
    color: #111518;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(61, 168, 245, 0.3);
}

.pricing-btn-lg:hover {
    box-shadow: 0 6px 25px rgba(61, 168, 245, 0.5);
    transform: translateY(-2px);
}

/* FAQ Cards */
.pricing-faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 700px) {
    .pricing-faq {
        grid-template-columns: 1fr;
    }
}

.pricing-faq-card {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-faq-card:hover {
    border-color: rgba(61, 168, 245, 0.3);
}

.pricing-faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-faq-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.pricing-faq-desc {
    font-size: 0.875rem;
    color: var(--text-gray-400);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.pricing-faq-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.2s ease;
}

.pricing-faq-link:hover {
    color: var(--neon-cyan);
}

/* =====================================================
   Calculator Section
   ===================================================== */
.calculator-section {
    padding: 5rem 0;
    margin-top: var(--space-16);
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0f14 100%);
}

/* Gradient divider line */
.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(6, 182, 212, 0.5) 20%,
            rgba(61, 168, 245, 0.8) 50%,
            rgba(217, 70, 239, 0.5) 80%,
            transparent);
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.3);
}

/* Tabs */
.calc-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.calc-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray-400);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.calc-tab-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #050510;
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.4);
}

.calc-tab .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Panel Layout */
.calc-panel {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .calc-panel {
        flex-direction: column;
    }
}

/* Features Panel */
.calc-features {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
}

/* Tab Content */
.calc-tab-content {
    display: none;
}

.calc-tab-content.calc-tab-active {
    display: block;
}

.calc-features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calc-features-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
}

.calc-features-title .material-symbols-outlined {
    color: var(--primary);
}

.calc-version {
    font-size: 0.7rem;
    font-family: monospace;
    color: var(--text-gray-500);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features Grid */
.calc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

/* Calc Item */
.calc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.calc-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.calc-item-included {
    grid-column: 1 / -1;
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.calc-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calc-icon-green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.calc-icon-yellow {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
}

.calc-icon-cyan {
    background: rgba(6, 188, 249, 0.15);
    color: var(--neon-cyan);
}

.calc-icon-pink {
    background: rgba(217, 70, 239, 0.15);
    color: var(--neon-purple);
}

.calc-icon-red {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.calc-icon-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.calc-item-info {
    flex: 1;
    min-width: 0;
}

.calc-item-title {
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.calc-item-desc {
    color: var(--text-gray-500);
    font-size: 0.75rem;
}

.calc-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.calc-badge-green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* Toggle Switch */
.calc-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.calc-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.calc-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: 0.3s;
}

.calc-toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.calc-checkbox:checked+.calc-toggle-slider {
    background: var(--primary);
}

.calc-checkbox:checked+.calc-toggle-slider::before {
    transform: translateX(20px);
}

.calc-checkbox:checked+.calc-toggle-yellow {
    background: #facc15;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.calc-checkbox:checked+.calc-toggle-cyan {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(6, 188, 249, 0.4);
}

.calc-checkbox:checked+.calc-toggle-pink {
    background: var(--neon-purple);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.4);
}

.calc-checkbox:checked+.calc-toggle-red {
    background: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

/* Summary Panel */
.calc-summary {
    width: 380px;
    flex-shrink: 0;
    background: rgba(15, 30, 35, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

@media (max-width: 1024px) {
    .calc-summary {
        width: 100%;
        position: static;
    }
}

.calc-summary-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: rgba(61, 168, 245, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.calc-summary-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.calc-summary-label {
    color: var(--text-gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.calc-summary-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.calc-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.calc-price-note {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
}

.calc-summary-details {
    margin-bottom: 1.5rem;
}

.calc-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.875rem;
}

.calc-detail-last {
    border-bottom: none;
}

.calc-detail-label {
    color: var(--text-gray-500);
}

.calc-detail-value {
    color: var(--text-white);
    font-weight: 700;
}

.calc-detail-accent {
    color: var(--primary);
}

.calc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calc-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
}

.calc-tag-cyan {
    background: rgba(6, 188, 249, 0.1);
    border: 1px solid rgba(6, 188, 249, 0.3);
    color: var(--neon-cyan);
}

.calc-tag-red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.calc-tag-green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.calc-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    border: none;
    border-radius: var(--radius-lg);
    color: #050510;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.4);
}

.calc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(61, 168, 245, 0.6);
}

.calc-disclaimer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-gray-600);
}

/* Screen Reader Only - for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   Utilities
   ===================================================== */
.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

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

.justify-center {
    justify-content: center;
}

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

.min-h-screen {
    min-height: 100vh;
}

/* Material Icons (we'll use text alternatives) */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: var(--space-3) var(--space-4);
    }

    .nav-menu,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: white;
        cursor: pointer;
    }

    .container {
        padding: 0 var(--space-4);
    }

    .main {
        padding: var(--space-10) 0;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ============================================
   PROCESS SECTION - Как мы работаем
   ============================================ */

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

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

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

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(61, 168, 245, 0.2);
    transform: translateY(-4px);
}

.process-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.process-card-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    line-height: 1;
}

.process-card-icon {
    font-size: 1.5rem;
    color: var(--text-gray-500);
    opacity: 0.5;
}

.process-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.process-card-desc {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    line-height: 1.5;
    flex: 1;
}

.process-card-arrow {
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.process-card-arrow .material-symbols-outlined {
    font-size: 0.875rem;
    color: var(--primary);
}

@media (max-width: 992px) {
    .process-card-arrow {
        display: none;
    }
}

.process-card-final .process-card-check,
.process-card-check {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-card-check .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--neon-lime);
}

.process-card-final {
    border-color: rgba(132, 204, 22, 0.2);
}

.process-card-final:hover {
    border-color: rgba(132, 204, 22, 0.4);
}

/* Legacy timeline (hidden) */
.process-timeline {
    display: none;
}

/* Vertical Timeline */
.process-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 2rem auto;
}

.process-item {
    display: grid;
    grid-template-columns: 80px 40px 1fr;
    gap: 0;
    position: relative;
    min-height: 140px;
}

@media (max-width: 576px) {
    .process-item {
        grid-template-columns: 50px 30px 1fr;
    }
}

.process-item-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 1rem;
    padding-top: 0.5rem;
}

.process-big-num {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    line-height: 1;
    opacity: 0.8;
}

@media (max-width: 576px) {
    .process-big-num {
        font-size: 2rem;
    }
}

.process-item-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.process-item-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--neon-cyan));
    opacity: 0.3;
}

.process-item:first-child .process-item-line::before {
    top: 12px;
}

.process-item:last-child .process-item-line::before {
    bottom: 50%;
}

.process-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    border: 3px solid var(--bg-dark);
    position: relative;
    z-index: 2;
    margin-top: 12px;
    box-shadow: 0 0 15px rgba(61, 168, 245, 0.4);
}

.process-dot-final {
    background: linear-gradient(135deg, var(--neon-lime), #22c55e);
    box-shadow: 0 0 15px rgba(132, 204, 22, 0.5);
}

.process-item-right {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0 2rem 1rem;
}

.process-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-lg);
    background: rgba(61, 168, 245, 0.1);
    border: 1px solid rgba(61, 168, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item-icon .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--primary);
}

.process-item-icon-final {
    background: rgba(132, 204, 22, 0.1);
    border-color: rgba(132, 204, 22, 0.3);
}

.process-item-icon-final .material-symbols-outlined {
    color: var(--neon-lime);
}

.process-item-text {
    flex: 1;
}

.process-item-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.process-item-text p {
    font-size: 0.95rem;
    color: var(--text-gray-400);
    line-height: 1.6;
}

.process-item-text strong {
    color: var(--text-white);
}

.process-section {
    margin-top: 4rem;
    padding-top: 4rem;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--neon-purple),
            var(--primary),
            var(--neon-cyan),
            transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3),
        0 0 30px rgba(61, 168, 245, 0.2);
}

/* Vertical line */
.process-line {
    position: absolute;
    left: 30px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--neon-cyan));
    border-radius: 3px;
    opacity: 0.4;
}

@media (min-width: 769px) {
    .process-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.process-timeline::before {
    display: none;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    padding-left: 70px;
}

@media (min-width: 769px) {
    .process-step {
        padding-left: 0;
        width: 45%;
    }

    .process-step:nth-child(odd) {
        margin-left: 55%;
    }

    .process-step:nth-child(even) {
        margin-right: 55%;
        text-align: right;
    }
}

/* Step marker with number */
.process-step-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.4);
}

@media (min-width: 769px) {
    .process-step-marker {
        left: 50%;
        transform: translateX(-50%);
    }
}

.process-step-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111518;
    font-family: var(--font-display);
}

.process-step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.process-step-content:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(61, 168, 245, 0.2);
    transform: translateY(-2px);
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.95rem;
    color: var(--text-gray-400);
    line-height: 1.6;
}

.process-step-desc strong {
    color: var(--text-white);
}

/* Process CTA */
.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.1), transparent);
    pointer-events: none;
}

@media (max-width: 768px) {
    .process-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

.process-cta-content {
    position: relative;
    z-index: 1;
}

.process-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.process-cta-desc {
    font-size: 1rem;
    color: var(--text-gray-400);
}

.process-cta .btn-cta {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.process-cta .btn-cta .inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   ABOUT SECTION - О нас
   ============================================ */

.about-section {
    padding: 6rem 0;
    margin-top: 6rem;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--neon-lime),
            var(--primary),
            var(--neon-purple),
            transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(132, 204, 22, 0.3),
        0 0 30px rgba(61, 168, 245, 0.2);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.about-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: rgba(61, 168, 245, 0.2);
    transform: translateY(-3px);
}

.about-card-highlight {
    background: linear-gradient(135deg,
            rgba(217, 70, 239, 0.05),
            rgba(61, 168, 245, 0.05));
    border-color: rgba(217, 70, 239, 0.15);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.about-card-content p {
    color: var(--text-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-card-content p:last-child {
    margin-bottom: 0;
}

.about-card-content strong {
    color: var(--primary);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-gray-300);
    font-size: 0.95rem;
}

.about-list li .material-symbols-outlined {
    color: var(--neon-lime);
    font-size: 1.25rem;
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

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

.about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-gray-400);
    margin-top: 0.25rem;
}

.about-cta-text {
    text-align: center;
    color: var(--text-gray-300);
    font-size: 1rem;
}

/* About Section - New Styles */

/* Simple header without icon circles */
.about-card-header-simple {
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Gradient title for cards */
.about-title-gradient {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--primary), var(--neon-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    text-align: center;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Slogan styling - premium italic with glow */
.about-slogan {
    text-align: center;
    margin-bottom: 1.25rem !important;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.08), rgba(217, 70, 239, 0.05));
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary);
}

.about-slogan em {
    font-size: 1.05rem;
    font-style: italic;
    background: linear-gradient(90deg, var(--neon-cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Clean list with beautiful checkmarks */
.about-list-clean {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.about-list-clean li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-gray-300);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
}

.about-list-clean li:last-child {
    border-bottom: none;
}

.about-list-clean li:hover {
    color: var(--text-white);
    padding-left: 0.5rem;
}

/* Beautiful checkmark styling */
.about-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    transition: all 0.3s ease;
}

.about-list-clean li:hover .about-check {
    background: rgba(16, 185, 129, 0.25);
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

/* ============================================
   FAQ SECTION NEW - Glassmorphism стиль
   ============================================ */

.faq-section-new {
    padding: 8rem 0 5rem;
    margin-top: 6rem;
    position: relative;
}

.faq-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--neon-purple),
            var(--primary),
            var(--neon-cyan),
            transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3),
        0 0 30px rgba(61, 168, 245, 0.2);
}

/* FAQ Toggle Button - Другие вопросы */
.faq-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.faq-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle-btn:hover {
    background: rgba(61, 168, 245, 0.1);
    border-color: var(--primary);
}

.faq-toggle-btn .material-symbols-outlined:first-child {
    color: var(--primary);
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
}

.faq-toggle-btn.open .faq-toggle-icon {
    transform: rotate(180deg);
}

/* FAQ Accordion Section */
.faq-accordion-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.3s ease;
    margin-top: 0;
}

.faq-accordion-section.open {
    max-height: 2000px;
    margin-top: 2rem;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Accordion Item */
.faq-accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(61, 168, 245, 0.2);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-accordion-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.7;
    font-family: var(--font-display);
}

.faq-accordion-question {
    flex: 1;
    font-weight: 600;
}

.faq-accordion-arrow {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-accordion-item.open .faq-accordion-arrow {
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-item.open .faq-accordion-content {
    max-height: 300px;
}

.faq-accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-accordion-content strong {
    color: var(--text-white);
}

/* ============================================
   CONTACTS SECTION NEW - Glassmorphism стиль
   ============================================ */

.contacts-section-new {
    padding: 8rem 0 6rem;
    margin-top: 6rem;
    position: relative;
}

.contacts-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--neon-cyan),
            var(--primary),
            var(--neon-purple),
            transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3),
        0 0 30px rgba(61, 168, 245, 0.2);
}

.contacts-flex {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 868px) {
    .contacts-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contacts-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 576px) {
    .contacts-cards-grid {
        grid-template-columns: 1fr;
    }
}

.contact-link {
    text-decoration: none;
    cursor: pointer;
}

.contact-link:hover {
    transform: translateY(-4px);
}

.contact-value {
    color: var(--primary) !important;
    font-weight: 600;
}

/* Contact Form Glass */
.contact-form-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2px;
    position: relative;
    overflow: hidden;
}

.contact-form-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--primary), var(--neon-purple));
}

.contact-form-inner {
    padding: 2rem;
}

.contact-form-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-form-heading .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-form-subtext {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(61, 168, 245, 0.15),
        0 0 20px rgba(61, 168, 245, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-gray-500);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 868px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
    }
}

.contacts-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 576px) {
    .contacts-cards {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(61, 168, 245, 0.3);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 168, 245, 0.1);
    border: 1px solid rgba(61, 168, 245, 0.2);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.contact-item-icon.neon-glow-cyan {
    color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
}

.contact-item-icon.neon-glow-lime {
    color: var(--neon-lime);
    background: rgba(132, 204, 22, 0.1);
    border-color: rgba(132, 204, 22, 0.2);
}

.contact-item-icon.neon-glow-purple {
    color: var(--neon-purple);
    background: rgba(217, 70, 239, 0.1);
    border-color: rgba(217, 70, 239, 0.2);
}

.contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item-label {
    font-size: 0.75rem;
    color: var(--text-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(61, 168, 245, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 168, 245, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.contact-card-content h3 {
    font-size: 0.85rem;
    color: var(--text-gray-500);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-card-content a,
.contact-card-content p {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contacts-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-gray-400);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(61, 168, 245, 0.1);
}

/* Contact Form */
.contacts-form-card {
    padding: 2rem;
}

.contacts-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contacts-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    margin-bottom: 1.5rem;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(61, 168, 245, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contacts-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* =====================================================
   Order Modal Styles
   ===================================================== */
.order-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(25, 32, 38, 0.95), rgba(17, 21, 24, 0.98));
    border: 1px solid rgba(61, 168, 245, 0.2);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(61, 168, 245, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.order-modal-overlay.open .order-modal {
    transform: scale(1) translateY(0);
}

.order-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.order-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.order-modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.2), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(61, 168, 245, 0.3);
    border-radius: 50%;
    color: var(--primary);
}

.order-modal-icon .material-symbols-outlined {
    font-size: 32px;
}

.order-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--text-white), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray-400);
}

.order-modal-body {
    padding: 1.5rem 2rem 2rem;
}

/* Order Summary */
.order-summary {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.order-summary-section {
    margin-bottom: 1rem;
}

.order-summary-section:last-of-type {
    margin-bottom: 1rem;
}

.order-summary-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray-300);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-summary-title .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.order-plan-item,
.order-module-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(61, 168, 245, 0.05);
    border: 1px solid rgba(61, 168, 245, 0.1);
    border-radius: var(--radius-lg);
}

.order-module-item {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
}

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

.order-item-name {
    font-size: 0.95rem;
    color: var(--text-white);
}

.order-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

.order-modules-list {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(61, 168, 245, 0.2);
    border-radius: var(--radius-lg);
    margin-top: 0.5rem;
}

.order-total-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.order-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Order Form */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-form-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.order-form-title .material-symbols-outlined {
    font-size: 20px;
    color: var(--neon-purple);
}

.order-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.order-form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray-300);
}

.order-form-input,
.order-form-textarea {
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.order-form-input:focus,
.order-form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(61, 168, 245, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.order-form-input::placeholder,
.order-form-textarea::placeholder {
    color: var(--text-gray-500);
}

.order-form-textarea {
    resize: vertical;
    min-height: 80px;
}

.order-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.order-btn-secondary,
.order-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray-300);
}

.order-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.order-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    border: none;
    color: #111518;
    box-shadow: 0 4px 15px rgba(61, 168, 245, 0.3);
}

.order-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 168, 245, 0.4);
}

.order-btn-primary .material-symbols-outlined,
.order-btn-secondary .material-symbols-outlined {
    font-size: 20px;
}

/* Custom scrollbar for modal */
.order-modal::-webkit-scrollbar {
    width: 6px;
}

.order-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.order-modal::-webkit-scrollbar-thumb {
    background: rgba(61, 168, 245, 0.3);
    border-radius: 3px;
}

.order-modal::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   VERSION SWITCHER - Dropdown Menu
   ============================================ */
.version-dropdown {
    position: relative;
    display: inline-flex;
}

.version-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    font-family: inherit;
}

.version-toggle:hover {
    color: var(--primary);
}

.version-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.version-dropdown.open .version-arrow {
    transform: rotate(180deg);
}

.version-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 160px;
    background: rgba(17, 21, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(61, 168, 245, 0.1);
}

.version-dropdown.open .version-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.version-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: none;
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-gray-400);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.version-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.version-option.active {
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.15), rgba(6, 182, 212, 0.1));
    color: var(--primary);
    border: 1px solid rgba(61, 168, 245, 0.3);
}

.version-option .material-symbols-outlined {
    font-size: 1.25rem;
}

/* ============================================
   DEVICE EMULATION STYLES
   ============================================ */

/* Page wrapper for emulation */
.page-wrapper {
    width: 100%;
    min-height: 100vh;
    transition: max-width 0.4s ease, margin 0.4s ease, box-shadow 0.4s ease;
}

/* Tablet Emulation - 768px */
body.view-tablet .page-wrapper {
    max-width: 768px;
    margin: 0 auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5),
        20px 0 60px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Emulation - 375px */
body.view-mobile .page-wrapper {
    max-width: 375px;
    margin: 0 auto;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6),
        15px 0 50px rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Force responsive styles in emulation modes */
body.view-tablet .header,
body.view-mobile .header {
    flex-wrap: wrap;
}

body.view-tablet .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
}

body.view-mobile .pricing-grid {
    grid-template-columns: 1fr;
}

body.view-mobile .features-grid {
    grid-template-columns: 1fr;
}

body.view-tablet .about-grid,
body.view-mobile .about-grid {
    grid-template-columns: 1fr;
}

body.view-tablet .why-grid-new {
    grid-template-columns: repeat(2, 1fr);
}

body.view-mobile .why-grid-new {
    grid-template-columns: 1fr;
}

/* Emulation mode indicator */
body.view-tablet::before,
body.view-mobile::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--primary), var(--neon-purple));
    z-index: 9999;
}

/* Version indicator badge */
.version-indicator {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(17, 21, 28, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(61, 168, 245, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--primary);
    z-index: 9999;
    display: none;
}

body.view-tablet .version-indicator,
body.view-mobile .version-indicator {
    display: block;
}

body.view-tablet .version-indicator::before {
    content: '📱 Tablet Mode (768px)';
}

body.view-mobile .version-indicator::before {
    content: '📱 Mobile Mode (375px)';
}

/* ============================================
   MOBILE TEXT SCALING - Адаптивные размеры текста
   ============================================ */

/* Tablet typography adjustments */
body.view-tablet .hero-title {
    font-size: 2.25rem;
}

body.view-tablet .why-main-title {
    font-size: 2.5rem;
}

body.view-tablet .section-header {
    padding: 0 1rem;
}

/* Mobile typography - гармоничные размеры для 375px */
body.view-mobile .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
}

body.view-mobile .hero-subtitle {
    font-size: 0.95rem;
}

body.view-mobile .why-main-title {
    font-size: 1.75rem;
    line-height: 1.2;
}

body.view-mobile .why-subtitle {
    font-size: 0.9rem;
}

body.view-mobile .why-card-title,
body.view-mobile .about-card-title,
body.view-mobile .about-title-gradient {
    font-size: 1.1rem;
}

body.view-mobile .why-card-desc,
body.view-mobile .about-card-content p {
    font-size: 0.85rem;
}

/* Pricing adjustments for mobile */
body.view-mobile .pricing-card-title {
    font-size: 1rem;
}

body.view-mobile .pricing-amount {
    font-size: 1.5rem;
}

body.view-mobile .pricing-card {
    padding: 1.25rem;
}

/* FAQ adjustments for mobile */
body.view-mobile .faq-question {
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
}

body.view-mobile .faq-answer {
    font-size: 0.85rem;
    padding: 0 1rem 1rem;
}

/* Contact section for mobile */
body.view-mobile .contact-method-title,
body.view-mobile .contact-cta-title {
    font-size: 1.1rem;
}

body.view-mobile .contact-method-value {
    font-size: 0.85rem;
}

/* Header adjustments for mobile */
body.view-mobile .header {
    padding: 0.75rem 1rem;
}

body.view-mobile .nav-menu {
    display: none;
}

body.view-mobile .mobile-menu-btn {
    display: flex;
}

body.view-mobile .btn-primary span {
    font-size: 0.8rem;
}

body.view-mobile .logo-image {
    height: 28px;
}

/* Container padding for mobile */
body.view-mobile .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

body.view-mobile .section-header {
    margin-bottom: 2rem;
}

/* Stats adjustments */
body.view-mobile .about-stat-num {
    font-size: 1.5rem;
}

body.view-mobile .about-stat-label {
    font-size: 0.7rem;
}

/* Slogan adjustments */
body.view-mobile .about-slogan {
    padding: 0.5rem 0.75rem;
}

body.view-mobile .about-slogan em {
    font-size: 0.9rem;
}

/* Process steps */
body.view-mobile .process-step-title {
    font-size: 1rem;
}

body.view-mobile .process-step-desc {
    font-size: 0.8rem;
}

/* Features */
body.view-mobile .feature-title {
    font-size: 1rem;
}

body.view-mobile .feature-desc {
    font-size: 0.85rem;
}

/* Version dropdown hide on mobile (use as desktop preview tool) */
body.view-mobile .version-dropdown {
    display: none;
}

/* ============================================
   EXTENDED MOBILE STYLES - Полная адаптация
   ============================================ */

/* Process section "Как Мы Работаем" */
body.view-mobile .process-section .why-main-title {
    font-size: 1.5rem;
}

body.view-mobile .process-section .why-subtitle {
    font-size: 0.8rem;
    padding: 0 0.5rem;
}

body.view-mobile .process-timeline {
    padding-left: 2rem;
}

body.view-mobile .process-step {
    padding-left: 1.5rem;
}

body.view-mobile .process-step-number {
    font-size: 1.5rem;
    left: -2rem;
}

/* CTA Block - "Готовы начать" - COLUMN layout */
body.view-mobile .contact-cta-card {
    flex-direction: column !important;
    text-align: center;
    padding: 1.25rem !important;
    gap: 1rem;
}

body.view-mobile .contact-cta-content {
    padding-right: 0;
}

body.view-mobile .contact-cta-title {
    font-size: 1.15rem !important;
    line-height: 1.3;
}

body.view-mobile .contact-cta-text {
    font-size: 0.8rem;
}

body.view-mobile .contact-cta-btn {
    width: 100%;
    justify-content: center;
}

/* Contacts Section - полная адаптация */
body.view-mobile .contacts-section-new .why-main-title {
    font-size: 1.5rem;
}

body.view-mobile .contacts-section-new .why-subtitle {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 0 0.25rem;
}

body.view-mobile .contacts-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
}

body.view-mobile .why-card-new {
    padding: 0.75rem;
}

body.view-mobile .why-icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
}

body.view-mobile .why-icon-circle .material-symbols-outlined {
    font-size: 22px;
}

body.view-mobile .contacts-section-new .why-card-title {
    font-size: 0.9rem;
}

body.view-mobile .contacts-section-new .why-card-desc {
    font-size: 0.75rem;
    word-break: break-word;
}

body.view-mobile .contact-value {
    font-size: 0.7rem !important;
}

/* Contact form for mobile */
body.view-mobile .contact-form-glass {
    padding: 1rem;
}

body.view-mobile .contact-form-heading {
    font-size: 1rem;
}

body.view-mobile .contact-form-subtext {
    font-size: 0.8rem;
}

body.view-mobile .form-field input,
body.view-mobile .form-field textarea {
    font-size: 0.9rem;
    padding: 0.65rem 0.875rem;
}

/* Contacts Flex layout */
body.view-mobile .contacts-flex {
    flex-direction: column;
    gap: 1.5rem;
}

/* Features section mobile */
body.view-mobile .features-section .why-main-title {
    font-size: 1.5rem;
}

body.view-mobile .feature-card {
    padding: 1rem;
}

/* All section subtitles */
body.view-mobile .why-brand {
    display: inline;
}

/* Why-us section titles */
body.view-mobile .why-us-section-new .why-main-title {
    font-size: 1.5rem;
}

/* About section mobile */
body.view-mobile .about-section .why-main-title {
    font-size: 1.5rem;
}

body.view-mobile .about-card {
    padding: 1.25rem;
}

/* Kanban section mobile */
body.view-mobile .kanban-board {
    grid-template-columns: 1fr;
}

body.view-mobile .kanban-title {
    font-size: 1.1rem;
}

/* General icon sizing for mobile */
body.view-mobile .material-symbols-outlined {
    font-size: 20px;
}

/* ============================================
   CRITICAL MOBILE FIXES - Исправления
   ============================================ */

/* 1. SLOGAN - ещё меньше */
body.view-mobile .why-subtitle {
    font-size: 0.75rem !important;
    line-height: 1.4;
    padding: 0 0.5rem;
}

body.view-mobile .why-header {
    margin-bottom: 2rem;
}

/* 2. CTA BLOCK - вертикальная структура */
body.view-mobile .contact-cta-card {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
    padding: 1.25rem !important;
    gap: 1rem !important;
}

body.view-mobile .contact-cta-content {
    padding-right: 0 !important;
    flex: none !important;
}

body.view-mobile .contact-cta-title {
    font-size: 1rem !important;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

body.view-mobile .contact-cta-text {
    font-size: 0.75rem !important;
}

body.view-mobile .contact-cta-btn,
body.view-mobile .btn-cta {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
}

body.view-mobile .contact-cta-btn .inner,
body.view-mobile .btn-cta .inner {
    justify-content: center;
}

/* 3. CONTACT FORM - на всю ширину, под карточками */
body.view-mobile .contacts-flex {
    flex-direction: column !important;
    gap: 1.5rem !important;
}

body.view-mobile .contacts-cards-grid {
    order: 1;
    width: 100%;
}

body.view-mobile .contact-form-glass {
    order: 2;
    width: 100% !important;
    min-width: auto !important;
    max-width: none !important;
}

body.view-mobile .contact-form-inner {
    padding: 1.25rem !important;
}

body.view-mobile .contact-form-heading {
    font-size: 1rem !important;
    justify-content: center;
}

body.view-mobile .contact-form-subtext {
    font-size: 0.8rem !important;
    text-align: center;
}

body.view-mobile .form-field input,
body.view-mobile .form-field textarea {
    font-size: 0.9rem !important;
    padding: 0.75rem 1rem !important;
}

body.view-mobile .form-submit-btn {
    width: 100%;
}

body.view-mobile .form-submit-btn .inner {
    justify-content: center;
}

/* 4. BURGER MENU - красивый neomorphism стиль */
body.view-mobile .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(61, 168, 245, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(61, 168, 245, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.view-mobile .mobile-menu-btn:hover,
body.view-mobile .mobile-menu-btn:active {
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.25), rgba(6, 182, 212, 0.2));
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(61, 168, 245, 0.4);
    transform: scale(1.05);
}

body.view-mobile .mobile-menu-btn .material-symbols-outlined {
    font-size: 24px !important;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(61, 168, 245, 0.5);
}

/* Header кнопка - убираем лишнее */
body.view-mobile .btn-primary {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
}

body.view-mobile .btn-primary span {
    font-size: 0.75rem !important;
}

/* Logo меньше */
body.view-mobile .logo-image {
    height: 24px !important;
}

/* Header компактнее */
body.view-mobile .header {
    padding: 0.5rem 0.75rem !important;
    gap: 0.5rem;
}

/* ============================================
   REAL MOBILE MEDIA QUERIES - для реальных устройств
   ============================================ */
@media (max-width: 480px) {

    /* Слоган меньше */
    .hero-subtitle,
    .why-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }

    /* CTA Block - вертикальная структура */
    .process-cta {
        flex-direction: column !important;
        text-align: center;
        padding: 1.25rem !important;
        gap: 1rem !important;
    }

    .process-cta-content {
        padding-right: 0 !important;
    }

    .process-cta-title {
        font-size: 1.1rem !important;
        line-height: 1.3;
    }

    .process-cta-desc {
        font-size: 0.85rem !important;
    }

    .process-cta .btn-cta {
        width: 100% !important;
    }

    .process-cta .btn-cta .inner {
        justify-content: center;
    }

    /* Контакты - форма под карточками */
    .contacts-flex {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .contacts-cards-grid {
        order: 1;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .contact-form-glass {
        order: 2;
        width: 100% !important;
        min-width: auto !important;
    }

    .contact-form-inner {
        padding: 1.25rem !important;
    }

    .contact-form-heading {
        font-size: 1rem !important;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-form-subtext {
        font-size: 0.85rem !important;
        text-align: center;
    }

    /* Бургер-меню красивое */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, rgba(61, 168, 245, 0.15), rgba(6, 182, 212, 0.1)) !important;
        border: 1px solid rgba(61, 168, 245, 0.3) !important;
        border-radius: 12px !important;
        box-shadow: 0 0 15px rgba(61, 168, 245, 0.2);
    }

    .mobile-menu-btn .material-symbols-outlined {
        font-size: 24px !important;
        color: var(--primary) !important;
    }

    /* Иконки контактов меньше */
    .why-icon-circle {
        width: 50px;
        height: 50px;
    }

    .why-icon-circle .material-symbols-outlined {
        font-size: 22px;
    }

    /* Заголовки секций */
    .why-main-title,
    .hero-title {
        font-size: 1.75rem !important;
    }
}

/* ============================================
   ULTIMATE MOBILE FIX - Финальные исправления
   ============================================ */

/* Исправления для @media 768px и меньше */
@media (max-width: 768px) {

    /* CTA Block полностью вертикальный */
    .process-cta {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem !important;
        gap: 1.25rem !important;
    }

    .process-cta-title {
        font-size: 1.15rem !important;
    }

    .process-cta-desc {
        font-size: 0.85rem !important;
    }

    .process-cta .btn-cta {
        width: 100% !important;
        max-width: 280px;
    }

    .process-cta .btn-cta .inner {
        justify-content: center !important;
        width: 100%;
    }

    /* Contacts - форма под карточками */
    .contacts-flex {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .contacts-cards-grid {
        order: 1 !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .contact-form-glass {
        order: 2 !important;
        width: 100% !important;
    }

    /* Слоган меньше */
    .hero-subtitle,
    .why-subtitle {
        font-size: 0.85rem !important;
    }

    /* Бургер-меню стильный */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        background: linear-gradient(135deg, rgba(61, 168, 245, 0.15), rgba(6, 182, 212, 0.1)) !important;
        border: 1px solid rgba(61, 168, 245, 0.35) !important;
        border-radius: 12px !important;
        box-shadow: 0 0 20px rgba(61, 168, 245, 0.25) !important;
    }

    .mobile-menu-btn .material-symbols-outlined {
        font-size: 26px !important;
        color: #3da8f5 !important;
    }
}

/* Ещё меньшие экраны */
@media (max-width: 480px) {
    .process-cta-title {
        font-size: 1rem !important;
    }

    .process-cta-desc {
        font-size: 0.8rem !important;
    }

    .hero-subtitle,
    .why-subtitle {
        font-size: 0.75rem !important;
    }

    .contacts-cards-grid {
        gap: 0.75rem !important;
    }

    .why-icon-circle {
        width: 48px !important;
        height: 48px !important;
    }

    .why-card-title {
        font-size: 0.9rem !important;
    }

    .why-card-desc,
    .contact-value {
        font-size: 0.75rem !important;
    }

    .contact-form-inner {
        padding: 1.25rem !important;
    }

    .contact-form-heading {
        font-size: 1rem !important;
    }

    .form-field input,
    .form-field textarea {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }
}

/* ============================================
   MOBILE MENU - Выпадающее мобильное меню
   ============================================ */

/* Кнопка бургер-меню */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(61, 168, 245, 0.35);
    border-radius: 12px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.2);
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.25), rgba(6, 182, 212, 0.15));
    box-shadow: 0 0 30px rgba(61, 168, 245, 0.4);
    transform: scale(1.05);
}

.mobile-menu-btn .material-symbols-outlined {
    font-size: 28px;
    color: #3da8f5;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.open .menu-icon {
    display: none;
}

.mobile-menu-btn.open .close-icon {
    display: block;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 320px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--text-gray-300);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(61, 168, 245, 0.1);
    border-color: rgba(61, 168, 245, 0.3);
    color: var(--text-white);
    transform: translateX(5px);
}

.mobile-nav-link .material-symbols-outlined {
    font-size: 24px;
    color: var(--primary);
}

/* Mobile CTA Button */
.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    border-radius: 16px;
    color: #111518;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(61, 168, 245, 0.4);
}

.mobile-nav-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(61, 168, 245, 0.6);
}

.mobile-nav-cta .material-symbols-outlined {
    font-size: 24px;
    color: #111518;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   MOBILE DROPDOWN MENU - Выпадающее меню вниз
   ============================================ */

.mobile-menu-wrapper {
    position: relative;
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-wrapper {
        display: block;
    }

    .mobile-menu-wrapper .mobile-menu-btn {
        display: flex !important;
    }

    .nav-right {
        display: none !important;
    }
}

/* Dropdown container */
.mobile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: rgba(17, 21, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(61, 168, 245, 0.1);
}

.mobile-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 16px;
    width: 16px;
    height: 16px;
    background: rgba(17, 21, 28, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.mobile-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown nav */
.mobile-dropdown-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Dropdown links */
.mobile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border-radius: 12px;
    color: var(--text-gray-300);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
    background: rgba(61, 168, 245, 0.1);
    color: var(--text-white);
}

.mobile-dropdown-link .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary);
}

/* Version Section */
.mobile-version-section {
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.mobile-version-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-gray-400);
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
}

.mobile-version-title .material-symbols-outlined {
    font-size: 16px;
}

.mobile-version-options {
    display: flex;
    gap: 0.35rem;
}

.mobile-version-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-gray-400);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-version-btn:hover {
    background: rgba(61, 168, 245, 0.1);
    border-color: rgba(61, 168, 245, 0.3);
}

.mobile-version-btn.active {
    background: linear-gradient(135deg, rgba(61, 168, 245, 0.2), rgba(6, 182, 212, 0.15));
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-version-btn .material-symbols-outlined {
    font-size: 18px;
}

/* CTA Button */
.mobile-dropdown-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--neon-cyan));
    border-radius: 12px;
    color: #111518;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(61, 168, 245, 0.3);
}

.mobile-dropdown-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(61, 168, 245, 0.5);
}

.mobile-dropdown-cta .material-symbols-outlined {
    font-size: 20px;
    color: #111518;
}

/* ============================================
   VIEW-MOBILE CRITICAL FIX - Для переключателя версий
   ============================================ */

/* Показать бургер-меню в view-mobile */
body.view-mobile .mobile-menu-wrapper {
    display: block !important;
}

body.view-mobile .mobile-menu-wrapper .mobile-menu-btn {
    display: flex !important;
}

/* Скрыть desktop меню в view-mobile */
body.view-mobile .nav-right {
    display: none !important;
}

/* Контакты - форма под карточками */
body.view-mobile .contacts-flex {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

body.view-mobile .contacts-cards-grid {
    order: 1 !important;
    grid-template-columns: repeat(2, 1fr) !important;
}

body.view-mobile .contact-form-glass {
    order: 2 !important;
    width: 100% !important;
}

/* CTA Block вертикальный */
body.view-mobile .process-cta {
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.5rem !important;
    gap: 1rem !important;
}

body.view-mobile .process-cta .btn-cta {
    width: 100% !important;
}

body.view-mobile .process-cta .btn-cta .inner {
    justify-content: center !important;
}

/* Слоганы меньше для мобильной версии */
body.view-mobile .hero-subtitle,
body.view-mobile .why-subtitle {
    font-size: 0.7rem !important;
    line-height: 1.4;
}

/* ============================================
   TABLET CONTACTS FIX - Контакты для планшета
   ============================================ */

/* Форма снизу, иконки в одну строку */
body.view-tablet .contacts-flex {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
}

body.view-tablet .contacts-cards-grid {
    order: 1;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

body.view-tablet .contacts-cards-grid .why-card-new {
    flex: 0 0 auto;
    width: auto;
    min-width: 150px;
}

body.view-tablet .contact-form-glass {
    order: 2;
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   BUTTON CONSISTENCY - Одинаковые кнопки
   ============================================ */

/* Кнопка Сбросить */
.calc-reset-btn {
    min-width: 200px;
    padding: 0.875rem 1.5rem !important;
    border-radius: 50px !important;
}

/* Кнопка Заказать сайт */
.calc-submit-btn {
    min-width: 200px;
    padding: 0.875rem 1.5rem !important;
    border-radius: 50px !important;
}

/* ============================================
   VERSION INDICATOR - Мелкий индикатор внизу
   ============================================ */

.version-indicator {
    position: fixed !important;
    bottom: 10px !important;
    right: 10px !important;
    font-size: 0.65rem !important;
    padding: 0.25rem 0.5rem !important;
    background: rgba(17, 21, 28, 0.8) !important;
    border: 1px solid rgba(61, 168, 245, 0.2) !important;
    border-radius: 6px !important;
    opacity: 0.7;
}

.version-indicator:hover {
    opacity: 1;
}

/* Скрыть плавающий индикатор, показывать только в footer */
.version-indicator {
    display: none !important;
}

/* Footer version indicator */
.footer-version-indicator {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: var(--text-gray-500);
    opacity: 0.6;
}

.footer-version-indicator:empty {
    display: none;
}

/* ============================================
   TABLET CONTACTS - Красивый 2x2 дизайн
   ============================================ */

/* Вертикальная структура: карточки сверху, форма снизу */
body.view-tablet .contacts-flex {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Сетка 2x2 для карточек */
body.view-tablet .contacts-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem;
}

/* Все карточки одинаковые */
body.view-tablet .contacts-cards-grid .why-card-new {
    padding: 1.5rem;
    text-align: center;
}

body.view-tablet .contacts-cards-grid .why-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

body.view-tablet .contacts-cards-grid .why-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

body.view-tablet .contacts-cards-grid .why-card-desc {
    font-size: 0.85rem;
    word-break: break-word;
}

/* Форма снизу на всю ширину */
body.view-tablet .contact-form-glass {
    width: 100% !important;
    max-width: none;
}