
:root {
    --electric-blue: #0066ff;
    --electric-blue-light: #3399ff;
    --electric-blue-dark: #0044cc;
    --amber-glow: #ffaa00;
    --amber-light: #ffcc33;
    --amber-dark: #cc8800;
    --dark-surface: #0f1a2e;
    --dark-elevated: #1a2a45;
    --light-surface: #f8fafc;
    --text-primary: #1a2a45;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

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


h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}


.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-elevated) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    background: linear-gradient(135deg, #ffffff 0%, var(--electric-blue-light) 50%, var(--amber-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 2rem;
}


.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.btn-electric {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-electric:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-dark) 100%);
    color: var(--dark-surface);
    box-shadow: 0 4px 20px rgba(255, 170, 0, 0.4);
}

.btn-amber:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 170, 0, 0.5);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
}


.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-card-dark {
    background: rgba(26, 42, 69, 0.8);
    color: var(--text-light);
}


.service-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
    background: var(--light-surface);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--dark-elevated);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-blue {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    color: var(--electric-blue);
}

.service-icon-amber {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    color: var(--amber-dark);
}


.section-standard {
    padding: 5rem 1.5rem;
}

.section-dark {
    background: var(--dark-surface);
    color: var(--text-light);
}

.section-accent {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: var(--text-light);
}

.section-amber-accent {
    background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-dark) 100%);
    color: var(--dark-surface);
}

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

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--electric-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.advantage-grid {
    display: grid;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: white;
}


.testimonial-card {
    background: var(--light-surface);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--electric-blue);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}


.team-card {
    text-align: center;
    padding: 2rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--electric-blue);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--electric-blue);
    font-weight: 500;
}


.contact-form-container {
    background: var(--light-surface);
    padding: 3rem;
    border-radius: 24px;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}


.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.level-right {
    justify-content: flex-end;
    margin-left: auto;
    flex-grow: 1;
    display: flex;
}

.main-navbar.scrolled {
    background: rgba(15, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Плавное появление навигации при загрузке */
.main-navbar {
    opacity: 0;
    transform: translateY(-20px);
}

.main-navbar.loaded {
    opacity: 1;
    transform: translateY(0);
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 10;
}

.nav-brand:hover {
    transform: scale(1.05);
    color: var(--amber-glow);
}

.nav-brand:hover::before {
    filter: drop-shadow(0 0 15px rgba(255, 170, 0, 0.8));
    transform: rotate(15deg) scale(1.2);
}

.nav-brand::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.3), transparent);
    transform: translateY(-50%) scaleX(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.nav-brand:hover::after {
    transform: translateY(-50%) scaleX(1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--amber-glow);
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
    left: 50%;
}

.nav-link.active {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.15);
}

.nav-link.active::after {
    width: 80%;
    left: 50%;
    background: var(--electric-blue);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background 0.3s ease;
    position: relative;
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.burger-line {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


.main-footer {
    background: var(--dark-surface);
    color: var(--text-light);
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--amber-glow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amber-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--dark-surface);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 20px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--amber-glow);
}

.cookie-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: white;
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--electric-blue);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.01) 100%);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--amber-glow);
    color: var(--dark-surface);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--electric-blue);
    margin: 1.5rem 0;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--electric-blue);
    font-weight: bold;
}


.gallery-grid {
    display: grid !important;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


.process-step {
    position: relative;
    padding-left: 3rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}


.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.95) 0%, rgba(26, 42, 69, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    padding: 8rem 2rem 3rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.is-active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--text-light);
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    color: var(--amber-glow);
}

.mobile-menu a:hover::before {
    left: 100%;
}

.mobile-menu a.active {
    background: rgba(0, 102, 255, 0.2);
    color: var(--text-light);
    border-left: 4px solid var(--electric-blue);
}


@media screen and (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .desktop-menu {
        display: none !important;
    }
    
    .main-navbar {
        padding: 1.25rem 0;
    }
    
    .main-navbar.scrolled {
        padding: 1rem 0;
    }
    
    .nav-brand {
        font-size: 1.5rem;
    }
    
    .hero-section {
        min-height: 80vh;
        padding-top: 6rem;
    }
    
    .section-standard {
        padding: 3rem 1rem;
    }
    
    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .mobile-menu {
        padding: 7rem 1.5rem 2rem;
    }
    
    .mobile-menu a {
        font-size: 1.5rem;
        padding: 1.25rem 1rem;
    }
}

@media screen and (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .desktop-menu {
            display: flex;
        }
    
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}


@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
    }
}

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

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}


.text-electric {
    color: var(--electric-blue);
}

.text-amber {
    color: var(--amber-glow);
}

.bg-electric {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
}

.bg-amber {
    background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-dark) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--amber-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.has-text-justified {
    text-align: justify;
}


.input-error {
    border-color: #ff4444 !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}


.map-container {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-elevated) 0%, var(--dark-surface) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}


.faq-item {
    background: var(--light-surface);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--electric-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}


.page-header {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-elevated) 100%);
    color: var(--text-light);
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.breadcrumb-nav span {
    color: var(--amber-glow);
}


.cta-section {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 1.5rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}


.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--amber-glow);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}


.service-detail-hero {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-elevated) 100%);
    color: var(--text-light);
    padding: 6rem 1.5rem 4rem;
}

.service-detail-content {
    padding: 4rem 1.5rem;
}

.service-detail-sidebar {
    background: var(--light-surface);
    padding: 2rem;
    border-radius: 20px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--electric-blue);
}

.price-note {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}


.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-surface);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}


strong, p {
    color: inherit;
}


.section-dark .glass-card-dark {
    color: var(--text-light);
}


img {
    max-width: 100%;
    height: auto;
}


.img-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
}