/* ===== CSS Variables ===== */
:root {
    /* Dark Mode Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #0f1422;
    --bg-dark: #000000;
    
    /* Gradient Colors - темнее */
    --gradient-purple-blue: linear-gradient(180deg, rgba(88, 28, 135, 0.8) 0%, rgba(67, 56, 202, 0.6) 30%, #0f172a 100%);
    --gradient-magenta-cyan: linear-gradient(90deg, #f093fb 0%, #4facfe 100%);
    --gradient-text-cyan: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Neon Colors */
    --neon-pink: #f093fb;
    --neon-magenta: #ec4899;
    --neon-cyan: #4facfe;
    --neon-blue: #00f2fe;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e7ff;
    --text-dark: #1e1b4b;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Spacing */
    --container-max-width: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0f;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Background Shapes ===== */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-pink);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: var(--neon-cyan);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-magenta);
    top: 40%;
    right: 10%;
    animation-delay: 10s;
}

.bg-rect {
    position: absolute;
    border-radius: 30px;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 30s infinite ease-in-out;
}

.rect-1 {
    width: 400px;
    height: 250px;
    background: var(--gradient-magenta-cyan);
    top: 20%;
    left: 5%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.rect-2 {
    width: 300px;
    height: 200px;
    background: var(--neon-blue);
    bottom: 30%;
    left: 15%;
    animation-delay: 7s;
    transform: rotate(-30deg);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: calc(var(--container-max-width) + 40px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar:hover {
    box-shadow: 0 8px 32px 0 rgba(168, 85, 247, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--gradient-magenta-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-magenta-cyan);
    transition: var(--transition-normal);
}

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

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

/* Telegram Button */
.btn-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-telegram-desktop {
    display: flex;
}

.nav-telegram-mobile {
    display: none;
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
}

.telegram-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.telegram-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
}

.btn-nav {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: inherit;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.btn-nav-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--neon-pink);
}

.btn-nav-primary {
    background: var(--gradient-purple-blue);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(59, 7, 100, 0.7) 0%, rgba(30, 27, 75, 0.5) 30%, #050510 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Левая часть - бизнес-сцена с AI-оверлеем */
.hero-visual {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(240, 148, 251, 0.15), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(79, 172, 254, 0.18), transparent 55%);
    opacity: 0.9;
    filter: blur(4px);
}

.hero-main-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: 20px 22px 18px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow:
        0 24px 80px rgba(15, 23, 42, 0.8),
        0 0 60px rgba(79, 172, 254, 0.35);
    backdrop-filter: blur(22px);
}

.hero-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero-main-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-main-status {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.16);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.hero-main-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.hero-kpi {
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: radial-gradient(circle at 0% 0%, rgba(79, 172, 254, 0.22), rgba(15, 23, 42, 0.95));
}

.hero-kpi-secondary {
    background: radial-gradient(circle at 100% 0%, rgba(240, 148, 251, 0.25), rgba(15, 23, 42, 0.95));
}

.hero-kpi-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.hero-kpi-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e5f2ff;
    display: block;
    margin-bottom: 4px;
}

.hero-kpi-sub {
    font-size: 0.72rem;
    color: rgba(148, 163, 184, 0.9);
}

.hero-metric-card {
    position: absolute;
    z-index: 3;
    width: 220px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.8);
}

.hero-metric-top {
    top: 40px;
    right: -10px;
}

.hero-metric-bottom {
    bottom: 20px;
    left: 0;
}

.hero-metric-label {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.95);
    display: block;
    margin-bottom: 8px;
}

.hero-metric-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
}

.hero-metric-bar {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(79, 172, 254, 0.1), rgba(79, 172, 254, 0.8));
}

.hero-metric-chart .bar-1 { height: 12px; }
.hero-metric-chart .bar-2 { height: 20px; }
.hero-metric-chart .bar-3 { height: 28px; }
.hero-metric-chart .bar-4 { height: 22px; }

.hero-metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5f2ff;
}

.hero-ai-badge {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.hero-ai-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-ai-status {
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.95);
}

.hero-ai-text {
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.6;
}

/* Правая часть - Контент */
.hero-content {
    z-index: 2;
    padding-left: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

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

/* Кнопка GPT BOOST */
.btn-gpt-boost {
    padding: 18px 48px;
    background: var(--gradient-magenta-cyan);
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: inherit;
    box-shadow: 
        0 8px 25px rgba(240, 147, 251, 0.4),
        0 0 40px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gpt-boost::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-gpt-boost:hover::before {
    left: 100%;
}

.btn-gpt-boost:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(240, 147, 251, 0.6),
        0 0 60px rgba(79, 172, 254, 0.5);
}

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

/* ===== Sections ===== */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-text-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.text-large {
    font-size: 1.3rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
}

/* Секция О нас */
.section-about {
    background: rgba(0, 0, 0, 0.3);
}

.team-block {
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: var(--transition-normal);
    transform: translateX(0);
}

.team-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-block:hover {
    transform: translateX(8px);
}

.team-block-header {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    transition: var(--transition-normal);
}

.team-role::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    transition: var(--transition-normal);
    opacity: 0.4;
}

.team-block:hover .team-role::before {
    opacity: 1;
}

.team-name {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-text-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.team-block-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-block-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.team-block:hover .team-block-content p {
    opacity: 1;
}

.team-block-content p:last-child {
    margin-bottom: 0;
}

/* Секция Услуги */
.section-services {
    background: rgba(10, 10, 15, 0.5);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

/* Плашка со скидкой */
.discount-banner {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 24px 32px;
    margin-top: 40px;
    margin-bottom: 40px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.discount-banner.highlighted {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3) 0%, rgba(79, 172, 254, 0.3) 100%);
    border-color: rgba(240, 147, 251, 0.6);
    box-shadow: 0 0 40px rgba(240, 147, 251, 0.5), 0 12px 40px rgba(240, 147, 251, 0.3);
    transform: scale(1.02);
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(240, 147, 251, 0.5), 0 12px 40px rgba(240, 147, 251, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(240, 147, 251, 0.7), 0 12px 50px rgba(240, 147, 251, 0.5);
    }
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.discount-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(240, 147, 251, 0.2);
    border-color: rgba(240, 147, 251, 0.5);
}

.discount-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.discount-icon {
    font-size: 3rem;
    line-height: 1;
    animation: bounce 2s ease-in-out infinite;
}

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

.discount-text {
    flex: 1;
}

.discount-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: var(--gradient-magenta-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 6px 0;
}

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

.discount-price {
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 1.1em;
}

.discount-save {
    color: var(--neon-pink);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.discount-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-magenta-cyan);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    transition: var(--transition-normal);
    white-space: nowrap;
    flex-shrink: 0;
}

.discount-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(240, 147, 251, 0.6);
    background: linear-gradient(135deg, rgba(240, 147, 251, 1) 0%, rgba(79, 172, 254, 1) 100%);
}

.discount-btn:active {
    transform: translateY(0);
}

.discount-btn .telegram-icon img {
    filter: brightness(0) invert(1);
}

.service-with-discount {
    position: relative;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Новый формат карточек услуг */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-card-new {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.service-card-new:hover::before {
    opacity: 1;
}

.service-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6), 0 0 40px rgba(240, 147, 251, 0.2);
    border-color: rgba(240, 147, 251, 0.4);
}

.service-image-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.service-card-new:hover .service-image-placeholder img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.95) 0%, rgba(79, 172, 254, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.discount-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.discount-badge:active {
    transform: scale(0.95);
}

.discount-badge-text {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    opacity: 0.5;
}

.service-card-new:hover .service-image-placeholder {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(240, 147, 251, 0.15) 100%);
}

.service-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-title-new {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    background: var(--gradient-text-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-normal);
}

.service-description-new {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.service-card-new:hover .service-description-new {
    opacity: 1;
}

.service-features-new {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.service-features-new li {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features-new li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-features-new li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.service-results-new,
.service-includes-new,
.service-requirements-new {
    margin-top: 16px;
    padding: 14px;
    background: rgba(79, 172, 254, 0.08);
    border-left: 3px solid var(--neon-cyan);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.service-results-new strong,
.service-includes-new strong,
.service-requirements-new strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.service-packages-new {
    margin: 16px 0;
}

.package-item-new {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(240, 147, 251, 0.1);
    border-left: 3px solid var(--neon-pink);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.package-item-new strong {
    color: var(--neon-pink);
}

.service-card-new:hover .service-title-new {
    background: var(--gradient-magenta-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    margin-top: auto;
    width: 100%;
}

.service-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #ededed 100%);
}

.service-card-new:hover .service-btn-new {
    background: var(--gradient-magenta-cyan);
    color: var(--text-primary);
    box-shadow: 0 6px 25px rgba(240, 147, 251, 0.4);
}

.service-card-new:hover .service-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 147, 251, 0.6);
}

.service-card-new:hover .service-btn-new .telegram-icon img {
    filter: brightness(0) invert(1);
}

/* Стили для карточек услуг */
.service-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px 18px 16px 18px;
    transition: var(--transition-normal);
    box-shadow: var(--glass-shadow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.5);
    border-color: rgba(240, 147, 251, 0.35);
}

.service-card.expanded {
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.7);
}

.service-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    background: var(--gradient-text-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 40px;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* Контент услуги (раскрывающаяся часть) */
.service-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
}

.service-card.expanded .service-content {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

/* Переключатель карточки (иконка) */
.service-toggle {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.6);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.service-toggle::before {
    content: '+';
    font-weight: 700;
}

.service-card.expanded .service-toggle {
    border-color: transparent;
    background: var(--gradient-magenta-cyan);
    color: #000000;
    transform: rotate(180deg);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

.service-card.expanded .service-toggle::before {
    content: '−';
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.service-features li {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.93rem;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: var(--transition-normal);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #ededed 100%);
}

.service-cta:active {
    transform: translateY(-1px);
}

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

.service-bonus,
.service-results,
.service-includes,
.service-requirements {
    margin-top: 14px;
    padding: 14px;
    background: rgba(79, 172, 254, 0.08);
    border-left: 3px solid var(--neon-cyan);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
}

.service-bonus strong,
.service-results strong,
.service-includes strong,
.service-requirements strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.service-packages {
    margin: 20px 0;
}

.package-item {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(240, 147, 251, 0.1);
    border-left: 3px solid var(--neon-pink);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.package-item strong {
    color: var(--neon-pink);
}

/* Дополнительные услуги */
.additional-services {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.additional-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    background: var(--gradient-text-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.additional-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.additional-item {
    padding: 24px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.additional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

/* Секция Преимущества */
.section-advantages {
    background: rgba(0, 0, 0, 0.3);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    gap: 32px;
    padding: 32px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-magenta-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1200px) and (min-width: 769px) {
    /* Центрируем 4-ю карточку доп. услуг на строке, чтобы не уезжала влево */
    .additional-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .additional-list .additional-item:last-child {
        grid-column: 2 / span 1;
    }
}

@media (max-width: 900px) {
    /* Чуть упрощаем шапку на планшетах, чтобы navbar не ломался */
    .nav-wrapper {
        gap: 16px;
        padding: 10px 18px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .btn-telegram-desktop.btn-telegram {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .discount-banner {
        padding: 20px 24px;
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .discount-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

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

    .discount-title {
        font-size: 1.1rem;
    }

    .discount-description {
        font-size: 0.95rem;
    }

    .discount-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .discount-badge {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
    }

    .discount-badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 60px;
    }
    
    .robot-figure {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 500px;
        order: 2;
    }

    .hero-content {
        order: 1;
        padding-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin: 0 auto 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 16px;
    }

    .nav-wrapper {
        padding: 12px 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 20, 34, 0.95);
        backdrop-filter: blur(20px);
        width: calc(100% - 40px);
        padding: 32px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        transition: var(--transition-normal);
        gap: 20px;
    }

    .nav-menu.active {
        left: 20px;
    }

    .nav-buttons {
        display: none;
    }

    .btn-telegram-desktop {
        display: none;
    }

    .nav-telegram-mobile {
        display: block;
        width: 100%;
    }

    .nav-telegram-mobile .btn-telegram {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .robot-figure {
        width: 280px;
        height: 360px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        flex-direction: column;
        gap: 20px;
    }

    .robot-arm {
        width: 50px;
        height: 160px;
    }

    .arm-left {
        left: -35px;
    }

    .arm-right {
        right: -35px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-block {
        margin-bottom: 32px;
        padding-bottom: 28px;
    }

    .team-block:hover {
        padding-left: 0;
    }

    .team-name {
        font-size: 1.4rem;
    }

    .team-block-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .services-grid {
        flex-direction: column;
        gap: 20px;
    }

    .advantage-item {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .advantage-number {
        min-width: auto;
        font-size: 2.5rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .text-large {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .services-grid {
        flex-direction: column;
        gap: 16px;
    }

    .services-grid-new {
        gap: 20px;
        margin-top: 32px;
    }

    .discount-banner {
        padding: 16px 20px;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .discount-icon {
        font-size: 2rem;
    }

    .discount-title {
        font-size: 1rem;
    }

    .discount-description {
        font-size: 0.9rem;
    }

    .discount-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .discount-badge {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
    }

    .discount-badge-text {
        font-size: 0.7rem;
    }

    .service-image-placeholder {
        height: 180px;
    }

    .service-card-body {
        padding: 20px;
        gap: 16px;
    }

    .service-title-new {
        font-size: 1.1rem;
    }

    .service-btn-new {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 18px 16px;
    }

    .advantage-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .advantage-number {
        font-size: 2rem;
    }

    .content-text p {
        font-size: 0.95rem;
    }

    .text-large {
        font-size: 1rem !important;
    }

    .team-block {
        margin-bottom: 40px;
        padding-bottom: 36px;
    }

    .team-block:hover {
        padding-left: 0;
    }

    .team-name {
        font-size: 1.6rem;
    }

    .team-block-content p {
        font-size: 1rem;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-magenta-cyan);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}
