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

:root {
    --primary: #D4A853;
    --primary-dark: #B8912E;
    --primary-light: #F0D68A;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #666666;
    --gradient-gold: linear-gradient(135deg, #D4A853, #F0D68A, #D4A853);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    --shadow-gold: 0 0 40px rgba(212, 168, 83, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-ring {
    width: 60px; height: 60px;
    border: 3px solid var(--dark-3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 20px; height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(212, 168, 83, 0.1);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }

/* FIX: кнопка в шапке — прямая ссылка на TG */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.header-cta:hover {
    background: var(--primary);
    color: var(--dark);
}

/* ===== BURGER / MOBILE MENU ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 28px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu a {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.mobile-menu a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 560px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* TG & VK кнопки в блоке контакта */
.btn-tg {
    background: #229ED9;
    color: #fff;
    border-color: #229ED9;
}

.btn-tg:hover {
    background: #1a8fc4;
    color: #fff;
    border-color: #1a8fc4;
}

.btn-vk {
    background: #4C75A3;
    color: #fff;
    border-color: #4C75A3;
}

.btn-vk:hover {
    background: #3d6090;
    color: #fff;
    border-color: #3d6090;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.3s both;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 500;
}

.scroll-line {
    width: 1px; height: 40px;
    background: var(--gray-500);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 50%;
    background: var(--primary);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% { top: -50%; }
    100% { top: 100%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about { background: var(--dark-2); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.about-image:hover { filter: grayscale(0%); }

.about-image-decoration {
    position: absolute;
    top: -20px; right: -20px;
    width: 120px; height: 120px;
    border: 2px solid var(--primary);
    z-index: -1;
}

.about-image-badge {
    position: absolute;
    bottom: 30px; right: -30px;
    background: var(--primary);
    color: var(--dark);
    padding: 20px 28px;
    text-align: center;
}

.about-image-badge .number {
    font-size: 36px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content { padding: 20px 0; }
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-text {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 40px; height: 40px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 18px; height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-200);
}

/* ===== SERVICES ===== */
.services { background: var(--dark); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 48px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.2);
    box-shadow: var(--shadow-card);
}

.service-icon {
    width: 64px; height: 64px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon { background: rgba(212, 168, 83, 0.15); }

.service-icon svg {
    width: 28px; height: 28px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    background: var(--dark-2);
    overflow: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ===== HOW IT WORKS ===== */
.process { background: var(--dark); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%; width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
    opacity: 0.3;
}

.process-step { text-align: center; position: relative; }

.process-step-number {
    width: 80px; height: 80px;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    background: var(--dark);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-step-number {
    background: var(--primary);
    color: var(--dark);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark-2); }

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 60px;
}

.testimonial-inner {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 24px; left: 40px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-200);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-event {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 18px; height: 18px;
    fill: var(--primary);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px; height: 48px;
    border: 1px solid var(--gray-500);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-btn svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 8px; height: 8px;
    background: var(--gray-500);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ===== PRICING ===== */
.pricing { background: var(--dark); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Популярный';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 20px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }

.pricing-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-400);
}

.pricing-description {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-300);
}

.pricing-features li svg {
    width: 16px; height: 16px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* ===== FAQ ===== */
.faq { background: var(--dark-2); }

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    padding: 28px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: var(--transition);
}

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

.faq-icon {
    width: 32px; height: 32px;
    border: 1px solid var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.faq-icon svg {
    width: 14px; height: 14px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    transition: var(--transition);
}

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

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

.faq-answer-inner {
    padding-bottom: 28px;
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 168, 83, 0.03) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .section-title { margin-bottom: 24px; }
.cta-content .section-subtitle { margin-bottom: 48px; }

/* FIX: CTA кнопки — прямые контакты вместо формы */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Новый блок прямых контактов */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.contact-btn svg {
    width: 22px; height: 22px;
    flex-shrink: 0;
}

.contact-btn-tg {
    background: #229ED9;
    color: #fff;
}

.contact-btn-tg:hover {
    background: #1a8fc4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 158, 217, 0.35);
    color: #fff;
}

.contact-btn-vk {
    background: #4C75A3;
    color: #fff;
}

.contact-btn-vk:hover {
    background: #3d6090;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 117, 163, 0.35);
    color: #fff;
}

.contact-hint {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-500);
    letter-spacing: 0.3px;
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.cta-social a {
    width: 52px; height: 52px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cta-social a:hover {
    border-color: var(--primary);
    background: rgba(212, 168, 83, 0.1);
    transform: translateY(-4px);
}

.cta-social a svg {
    width: 22px; height: 22px;
    fill: var(--gray-300);
    transition: var(--transition);
}

.cta-social a:hover svg { fill: var(--primary); }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary);
    background: rgba(212, 168, 83, 0.1);
}

.footer-social a svg {
    width: 18px; height: 18px;
    fill: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover svg { fill: var(--primary); }

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--primary); }

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 48px; height: 48px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.lightbox-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px; height: 20px;
    stroke: var(--dark);
    fill: none;
    stroke-width: 2.5;
}

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .portfolio-item:nth-child(1) { grid-column: span 2; }

    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }

    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }

    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cursor { display: none; }
    .nav { display: none; }
    .header-cta { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: flex; }

    .hero h1 { letter-spacing: -1px; }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .hero-scroll { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-badge { right: 10px; }
    .about-image-decoration { display: none; }

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

    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .portfolio-grid .portfolio-item { height: 250px; }

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

    .testimonial-card { padding: 0 10px; }
    .testimonial-inner { padding: 36px 24px; }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .contact-buttons { flex-direction: column; }
    .contact-btn { width: 100%; justify-content: center; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
