:root {
    --bg-color: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #d4a574;
    --accent-dark: #c49460;
    --dark-panel: #191919;
    --border-color: #2a2a2a;
    --danger: #e74c3c;
    --success: #2ecc71;
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-cursive: 'Playfair Display', serif;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

/* NAVBAR - Sticky & Prominent */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

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

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

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

.lang-switch {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s;
    border-radius: 3px;
}

.lang-switch:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* BUTTONS - Conversion Focused */
.btn {
    padding: 0.9rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 4px;
    border: none;
}

.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-color);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.btn-primary-nav {
    background: var(--accent-color);
    color: var(--bg-color);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.btn-primary-nav:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-primary-large {
    background: var(--accent-color);
    color: var(--bg-color);
    border: 2px solid var(--accent-color);
    padding: 1.1rem 2.2rem;
    font-size: 0.8rem;
    box-shadow: var(--shadow-md);
}

.btn-primary-large:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary-large {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 1.1rem 2.2rem;
    font-size: 0.8rem;
    background: transparent;
}

.btn-secondary-large:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-primary-cta {
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.btn-primary-cta:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* HERO - Ultimate Conversion */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.95)), url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?q=80&w=1920&auto=format&fit=crop') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.1), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}



.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hero-title .cursive {
    font-family: var(--font-cursive);
    color: var(--accent-color);
    font-size: 5.5rem;
    letter-spacing: 0;
    text-transform: uppercase;
}



.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.phone-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, currentColor 0%, currentColor 70%, transparent 70%, transparent 100%, currentColor 100%);
    background-size: 6px 6px;
    position: relative;
}



/* SERVICES SECTION */
.services {
    padding: 8rem 10%;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--dark-panel) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
}

.cursive-subtitle {
    font-family: var(--font-cursive);
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.small {
    font-size: 1.2rem;
}

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

.service-category {
    margin-bottom: 1rem;
}

.full-width {
    grid-column: 1 / -1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.category-title {
    color: var(--accent-color);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin: 0;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.category-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.15);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 1px;
    font-weight: 800;
    border-radius: 3px;
    white-space: nowrap;
}

.category-badge.premium {
    background: rgba(212, 165, 116, 0.25);
    border: 1px solid var(--accent-color);
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 0.8rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.service-list li:hover {
    background: rgba(212, 165, 116, 0.05);
    border-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.service-item-highlight {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--accent-color);
    border-width: 2px;
}

.service-item-highlight:hover {
    background: rgba(212, 165, 116, 0.15);
}

.vip-highlight {
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.05));
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.service-price {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 1.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* WHY US SECTION */
.why-us {
    padding: 5rem 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-align: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-row {
    padding: 35px;
    background: var(--dark-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-row:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.why-row h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.why-row p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-item {
    background: transparent;
    padding: 0;
    border: none;
}

.why-icon {
    display: none;
}

/* LOCATIONS SECTION */
.locations {
    padding: 5rem 10%;
}

.locations-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 4rem;
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card,
.hours-card {
    background: var(--dark-panel);
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.location-card:hover,
.hours-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.location-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: rgba(212, 165, 116, 0.2);
    position: absolute;
    top: 0;
    right: 20px;
    font-weight: 700;
}

.location-card h3,
.hours-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.location-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hours-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.time {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 15px 0;
    letter-spacing: 1px;
}

.hours-note {
    font-size: 0.8rem;
    color: #666666;
    font-style: italic;
    margin-top: 10px;
}

.loc-btn {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    padding: 8px 0;
}

.loc-btn:hover {
    color: var(--text-primary);
}

.working-hours-card {
    display: none;
}

/* GALLERY */
.gallery {
    padding: 8rem 10%;
    background: var(--dark-panel);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 350px;
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-img {
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    cursor: pointer;
}

.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, var(--dark-panel) 0%, #0d0d0d 100%);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ЛЕВАЯ КОЛОННА */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #f0d89f;
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(212, 165, 116, 0.3);
}

/* РАЗДЕЛИТЕЛЬ */
.footer-divider {
    width: 1px;
    height: 120px;
    background: rgba(212, 165, 116, 0.2);
}

/* ПРАВАЯ КОЛОННА */
.footer-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.schedule-header {
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.schedule-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.schedule-days {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.days {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hours {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.schedule-note {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-style: italic;
    font-weight: 500;
}

.footer-section {
    padding: 0;
}

.footer-section {
    padding: 0;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    padding: 2rem 10%;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-list {
        gap: 20px;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title .cursive {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 0 5%;
        margin-top: 70px;
        min-height: 85vh;
        height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title .cursive {
        font-size: 3.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .services {
        padding: 4rem 5%;
    }
    
    .why-us {
        padding: 4rem 5%;
    }
    
    .why-title, .section-header h2 {
        font-size: 2.2rem;
    }

    .why-list {
        gap: 15px;
    }
    
    .why-row {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        height: auto;
        min-height: 300px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 4rem 5%;
        text-align: center;
    }
    
    .footer-left, .footer-contact, .footer-socials {
        align-items: center;
        width: 100%;
        gap: 1.2rem;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .social-icons {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .locations {
        padding: 4rem 5%;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 5%;
        gap: 0.5rem;
    }

    .nav-actions {
        gap: 0.8rem;
    }

    .btn-primary-nav {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 0 5%;
        min-height: 80vh;
        height: auto;
        margin-top: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title .cursive {
        font-size: 2.5rem;
        margin-top: 5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        width: 100%;
        gap: 1rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 3.5rem 5%;
    }
    
    .section-header h2, .why-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .cursive-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    /* Service entries wrap on narrow phones */
    .service-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }

    .service-price {
        align-self: flex-start;
        font-size: 1.3rem;
        margin-left: 0;
    }

    .category-header {
        font-size: 1.2rem;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .why-us {
        padding: 3.5rem 5%;
    }
    
    .why-row h3 {
        font-size: 18px;
        margin-bottom: 0.5rem;
    }
    
    .why-row p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        min-height: 250px;
        gap: 2px;
    }

    .location-card {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }

    .location-number {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }

    .footer-container {
        padding: 3rem 5%;
    }
    .schedule-header {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .hours {
        font-size: 1.6rem;
    }
    .footer-bottom {
        padding: 1.5rem 5%;
        font-size: 0.8rem;
    }
}


/* SOCIAL PROOF */
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.stars {
    letter-spacing: 2px;
}

/* OUTLINE BUTTON */
.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1.5px;
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-large:hover {
    background: rgba(212, 165, 116, 0.1);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
    transform: translateY(-2px);
}

/* QUIZ / MAGNIT BLOCK */
.quiz-container {
    background: linear-gradient(135deg, var(--dark-panel), #2a2a2a);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.quiz-content {
    flex: 1;
    max-width: 600px;
}

.quiz-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.quiz-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.quiz-content strong {
    color: var(--text-primary);
}

.quiz-visual {
    flex: 0.8;
    min-height: 250px;
    background: url(./photos/pic-296831.jpg) center/cover;
    border-radius: 8px;
    position: relative;
}

.quiz-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent-color);
    color: #000;
    font-weight: bold;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    transform: rotate(15deg);
}

/* PROCESS WORK */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    background: var(--dark-panel);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(212, 165, 116, 0.2);
    margin-bottom: -15px;
    line-height: 1;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.review-card {
    background: var(--dark-panel);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-stars {
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
}

.review-author {
    font-weight: 600;
    color: var(--accent-color);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dark-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(212, 165, 116, 0.05);
}

.faq-toggle {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

/* LEAD FORM */
.lead-container {
    background: var(--dark-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.lead-info {
    flex: 1;
}

.lead-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.lead-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.consent-label a {
    color: var(--accent-color);
    text-decoration: none;
}

/* NEW RESPONSIVE RULES */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quiz-container, .lead-container {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 5%;
    }
    .quiz-visual {
        width: 100%;
        min-height: 300px;
    }
    .lead-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .lead-container {
        padding: 2.5rem 5%;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-steps,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }

    .lead-container {
        padding: 1.5rem 5%;
        border-radius: 8px;
        gap: 1.5rem;
    }
    
    .lead-info h2 {
        font-size: 1.8rem;
    }
    
    .lead-info p {
        font-size: 1rem;
    }

    .lead-form {
        padding: 20px;
        border-radius: 8px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
    
    .quiz-container {
        padding: 2rem 5%;
    }
    
    .quiz-header h2 {
        font-size: 1.8rem;
    }
}
