:root {
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2d2d2d;
    --color-metallic-dark: #0f0f0f;
    --color-orange-molten: #ff6b35;
    --color-orange-gradient-start: #d32f2f;
    --color-orange-gradient-end: #ff6b35;
    --color-blue-electric: #00e5ff;
    --color-blue-electric-dark: #00b8d4;
    --color-chrome: #e0e0e0;
    --color-neon-cyan: #00ffff;
    --font-primary: 'Impact', 'Arial Black', sans-serif;
    --font-secondary: 'Segoe UI', 'Roboto', sans-serif;
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --border-glass: 1px solid rgba(255, 255, 255, 0.18);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-charcoal);
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

strong, b {
    color: inherit;
}

.section-dark {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    color: #ffffff;
}

.section-gradient-orange {
    background: linear-gradient(135deg, var(--color-orange-gradient-start), var(--color-orange-gradient-end));
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-gradient-blue {
    background: linear-gradient(135deg, #0d47a1, var(--color-blue-electric-dark));
    color: #ffffff;
}

.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--color-chrome);
}

.navbar-brand .accent {
    color: var(--color-orange-molten);
}

.navbar-menu {
    justify-content: flex-end;
}

.navbar-item {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.navbar-item:hover {
    color: var(--color-orange-molten);
    background-color: transparent;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-electric);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-item:hover::after {
    width: 100%;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #2d2d2d 0%, #0f0f0f 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMjAtMjBoMjB2MjBIMjBWMjB6TTAgMjBoMjB2MjBIMFYyMHoiIGZpbGw9IiNmZjZiMzUiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9nPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--color-orange-molten), var(--color-blue-electric));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-premier {
    background: linear-gradient(45deg, var(--color-orange-gradient-start), var(--color-orange-gradient-end));
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-premier:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-blue-electric);
    color: var(--color-blue-electric);
    font-family: var(--font-primary);
    padding: 0.9rem 2.3rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--color-blue-electric);
    color: var(--color-charcoal);
}

.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-glass:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange-molten);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

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

.card-glass:hover::before {
    left: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-blue-electric);
    display: inline-block;
    transition: var(--transition-smooth);
}

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

.service-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-orange-molten);
    margin-top: 1rem;
    display: block;
}

.advantage-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--color-blue-electric);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.advantage-item:hover .advantage-icon {
    background: var(--color-orange-molten);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--color-orange-molten);
    padding: 2rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-charcoal-light);
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-blue-electric);
}

.author-name {
    font-weight: bold;
    display: block;
}

.author-role {
    font-size: 0.85rem;
    color: #aaaaaa;
}

.footer-section {
    background-color: #0a0a0a;
    color: #888888;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--color-orange-molten);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-blue-electric);
}

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

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

.footer-links a {
    color: #888888;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-orange-molten);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--color-orange-molten);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #222222;
    font-size: 0.9rem;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-orange-molten);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: block;
}

.cookie-consent-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.cookie-consent-text {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

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

.cookie-btn {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.cookie-accept {
    background: var(--color-orange-molten);
    color: #ffffff;
}

.cookie-accept:hover {
    background: #ff5722;
}

.cookie-decline {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
}

.cookie-decline:hover {
    border-color: #fff;
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-blue-electric);
    transition: transform 0.3s ease;
    user-select: none;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #cccccc;
    padding-top: 0;
}

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

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-blue-electric);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
    color: #777;
}

.breadcrumb-section {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb {
    display: flex;
    color: #888;
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 1rem;
    color: #555;
}

.breadcrumb a {
    color: #aaa !important;
}

.breadcrumb a:hover {
    color: var(--color-orange-molten);
}

.page-content {
    padding: 4rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-orange-molten), #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #fff;
    margin-right: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-orange-molten), transparent);
}

.process-content h3 {
    color: var(--color-blue-electric);
    margin-bottom: 0.5rem;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--color-orange-molten);
}

.team-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--color-blue-electric);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 1rem 0;
    }

    .navbar-menu.is-active {
        display: flex;
    }

    .navbar-item {
        padding: 1rem;
        text-align: center;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: 0.3s;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }

    .cookie-consent-banner {
        width: calc(100% - 40px);
        left: 20px;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
}