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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-primary: #f5f5f7;
    --text-secondary: #8a8a9a;
    --accent: #c9a84c;
    --accent-light: #e4c76b;
    --accent-dark: #a68a3a;
    --gradient-1: linear-gradient(135deg, #c9a84c 0%, #e4c76b 50%, #a68a3a 100%);
    --gradient-2: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-glow {
    position: fixed;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 { top: -200px; right: -200px; background: var(--accent); animation: float1 20s ease-in-out infinite; }
.bg-glow-2 { bottom: -200px; left: -200px; background: #4c6bc9; animation: float2 25s ease-in-out infinite; }

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-100px, 100px) scale(1.2); }
    66% { transform: translate(50px, -50px) scale(0.8); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

nav.scrolled { padding: 1rem 6rem; background: rgba(10, 10, 15, 0.9); }

nav > .nav-links { display: flex; gap: 2.5rem; list-style: none; }
#navLinks { display: none; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-phone {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-phone:hover { color: var(--accent-light); }

.nav-phones {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 50px; width: auto; transition: opacity 0.3s ease; }
.logo-img:hover { opacity: 0.8; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 200;
    padding: 8px;
}

.hamburger span { width: 28px; height: 2px; background: var(--text-primary); transition: all 0.3s ease; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 8rem 6rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content { max-width: 700px; position: relative; z-index: 2; flex: 1; }
.hero-logo-side { flex-shrink: 0; z-index: 2; }
.hero-logo-side img {
    height: 350px; width: auto;
    opacity: 0.85;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.1));
}

.hero-logo-side img:hover { opacity: 1; transform: scale(1.02); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
}

.hero h1 em {
    font-style: italic;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary { flex: 1; }

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: var(--gradient-1);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::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: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(201, 168, 76, 0.3); }

.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: rgba(201, 168, 76, 0.05);
    color: var(--accent-light);
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--accent);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover { border-color: rgba(201, 168, 76, 0.25); color: var(--text-primary); background: transparent; }

.hero-stats-section {
    padding: 3rem 3rem 5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #16161f 0%, #1a1a28 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid var(--border);
}

.hero-stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item { text-align: center; }
.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

section { padding: 8rem 6rem; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services { background: var(--bg-secondary); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.service-price span { color: var(--text-secondary); font-size: 0.85rem; }
.service-price strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.service-link:hover { gap: 1rem; }

/* ===== ABOUT / TESTIMONIALS ===== */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1.5rem; line-height: 1.3; }
.about-text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }

.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.feature-item p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 0; }

.about-visual { position: relative; }

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial { position: relative; z-index: 1; }
.testimonial blockquote { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; line-height: 1.6; margin-bottom: 3.5rem; }

.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
}

.author-info strong { display: block; font-size: 0.95rem; }
.author-info span { color: var(--text-secondary); font-size: 0.85rem; }

.testimonial-carousel { position: relative; z-index: 1; }
.carousel-track {
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.carousel-slide {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.carousel-slide blockquote { margin-bottom: 3.5rem; }

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.carousel-btn {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--accent);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

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

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatCTA 3s ease-in-out infinite;
}

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

.floating-cta:hover {
    animation: none;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(201, 168, 76, 0.4);
}

/* ===== CTA / FORM SECTION ===== */
.cta { background: var(--bg-secondary); }

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.cta h2 em { font-style: italic; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta > p, .cta-container > p { color: var(--text-secondary); text-align: center; font-size: 1.1rem; margin-bottom: 3rem; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; position: relative; z-index: 1; max-width: 100%; box-sizing: border-box; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(201, 168, 76, 0.03);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-secondary); opacity: 0.5; }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8a9a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 1rem; }
.form-submit .btn-primary { padding: 1.25rem 4rem; font-size: 1.1rem; }

.btn-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--bg-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

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

.form-note {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px; height: 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    color: var(--bg-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.checkbox-label a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 2px; }
.checkbox-label a:hover { color: var(--accent); }

/* ===== CONTACTS SECTION ===== */
.contacts-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover { transform: translateY(-4px); border-color: rgba(201, 168, 76, 0.2); }

.contact-icon {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.contact-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }
.contact-card a { color: var(--accent-light); text-decoration: none; transition: color 0.3s ease; }
.contact-card a:hover { color: var(--accent); }

/* ===== FOOTER ===== */
footer { padding: 4rem 3rem 2rem; border-top: 1px solid var(--border); position: relative; z-index: 1; }

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand { max-width: 300px; }
.footer-logo-img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

.footer-requisites h4,
.footer-nav h4,
.footer-legal h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-requisites p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.8; margin-bottom: 0.25rem; }
.footer-requisites a { color: var(--accent-light); text-decoration: none; }
.footer-requisites a:hover { color: var(--accent); }

.footer-nav ul, .footer-legal ul { list-style: none; }
.footer-nav li, .footer-legal li { margin-bottom: 0.75rem; }
.footer-nav a, .footer-legal a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--accent-light); }

.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-disclaimer { font-size: 0.8rem; color: var(--text-secondary); opacity: 0.7; line-height: 1.6; }

/* ===== SUCCESS MESSAGE ===== */
.success-message { display: none; text-align: center; padding: 3rem; }
.success-message.show { display: block; animation: fadeIn 0.5s ease; }

.success-icon {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.success-message h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1rem; }
.success-message p { color: var(--text-secondary); font-size: 1.1rem; }

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 1.5rem 3rem;
    z-index: 1000;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show { display: block; }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p { flex: 1; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; min-width: 300px; }
.cookie-content a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 2px; }

.cookie-buttons { display: flex; gap: 1rem; }

.btn-cookie-accept {
    padding: 0.75rem 2rem;
    background: var(--gradient-1);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3); }

.btn-cookie-decline {
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover { border-color: var(--text-secondary); color: var(--text-primary); }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ===== PRIVACY MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem 4rem;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); }
.modal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 2rem; padding-right: 3rem; }
.modal-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; margin-top: 1.5rem; color: var(--accent-light); }
.modal-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.modal-content ul { color: var(--text-secondary); padding-left: 1.5rem; margin-bottom: 1rem; }
.modal-content li { margin-bottom: 0.5rem; line-height: 1.7; font-size: 0.95rem; }
.modal-content a { color: var(--accent-light); text-decoration: underline; }

.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: transparent; }
.modal-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== MOBILE ELEMENTS ===== */
.mobile-menu-footer,
.mobile-overlay { display: none; }

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; justify-content: center; gap: 3rem; }
    .hero-content { max-width: 100%; }
    .hero-logo-side img { height: 260px; }
    .hero-buttons { justify-content: center; }
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .contacts-grid { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
    nav { padding: 1rem 5rem 1rem 1.5rem; }
    nav.scrolled { padding: 0.85rem 5rem 0.85rem 1.5rem; }
    nav > .nav-links { display: none; }

    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 140;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .mobile-overlay.active { opacity: 1; pointer-events: auto; }

    #navLinks {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 150;
    }
    #navLinks.active { display: flex; }
    #navLinks a { font-size: 1.5rem; }
    #navLinks a::after { display: none; }

    #navLinks .mobile-menu-footer {
        display: block;
        width: 100%;
    }
    #navLinks .mobile-menu-footer a {
        display: block;
        color: var(--accent-light);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        background: rgba(201, 168, 76, 0.08);
        border: 1px solid rgba(201, 168, 76, 0.2);
        border-radius: 12px;
        transition: all 0.2s ease;
        text-align: center;
    }

    .nav-phones {
        flex-direction: column;
        gap: 0.1rem;
        align-items: flex-end;
    }
    .nav-phone {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hamburger { display: flex; position: fixed; z-index: 200; top: 1rem; right: 1.5rem; }
    .hamburger.scrolled { top: 0.85rem; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    section { padding: 5rem 1rem; overflow-x: hidden; }
    .hero { padding: 7rem 1rem 2rem; min-height: auto; }
    .cta { padding: 5rem 0; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); line-height: 1.2; }
    .hero-content { max-width: 100%; }
    .hero-description { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-logo-side { max-width: 80%; margin: 2rem auto 0; }
    .hero-logo-side img { height: auto; max-width: 100%; width: 100%; }
    .hero-stats-section { padding: 2rem 1.5rem 3rem; }
    .stat-item h3 { font-size: 2.5rem; }
    .logo-img { height: 40px; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .services-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; gap: 1rem; }
    .cta-container { max-width: 100%; padding: 2rem 1rem; overflow: visible; }
    .cta-container::after { display: none; }
    .form-submit { grid-column: 1; display: flex; justify-content: center; margin-top: 1rem; }
    .form-submit .btn-primary { padding: 1.25rem 2rem; width: 100%; max-width: 100%; box-sizing: border-box; font-size: 1rem; text-align: center; justify-content: center; }
    .checkbox-label { gap: 0.5rem; }
    .checkbox-label input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
    .contacts-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { max-width: 100%; }
    .footer-logo-img { height: 45px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
    .modal-content { padding: 2rem 1.5rem; max-height: 90vh; border-radius: 16px; max-width: calc(100% - 2rem); }
    .modal-content h2 { font-size: 1.4rem; }
    .modal-close { top: 1rem; right: 1rem; width: 36px; height: 36px; }
    .floating-cta { right: 15px; bottom: 15px; padding: 0.85rem 1.5rem; font-size: 0.85rem; max-width: calc(100% - 30px); white-space: nowrap; }
    .floating-cta.cta-elevated { bottom: 100px; }
    .carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
    .about-card { padding: 2rem 1.5rem; }
}
