﻿:root {
    --brand-primary: #66b3ff;
    --brand-dark: #2d4373;
    --brand-light: #5d7cb3;
    --accent-action: #ffb400;
    --surface-white: #ffffff;
    --surface-off: #f4f6f9;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-light: #e5e7eb;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --space-unit: 1rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-blue: 0 10px 25px -5px rgba(59, 89, 152, 0.4);
    --action-green: #22c55e;
    --action-green-dark: #16a34a
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--surface-off);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--brand-primary)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    gap: 6px
}

.btn-primary,
.shadow__btn,
.btn-submit-pulse,
button[type="submit"],
.cta-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-primary:hover,
.shadow__btn:hover,
.btn-submit-pulse:hover,
button[type="submit"]:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5)
}

.btn-submit-pulse {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    text-transform: uppercase;
    flex-direction: column
}

.shadow__btn {
    padding: 12px 24px;
    border-radius: 50px
}

.pulse-animation {
    animation: pulse-blue 2s infinite
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
    }
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    height: 70px;
    display: flex;
    align-items: center
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1
}

.logo span:last-child {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-top: 2px
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
    font-weight: 500;
    color: var(--text-secondary)
}

.desktop-nav a:hover {
    color: var(--brand-primary)
}

.mobile-menu-btn {
    color: #111827 !important;
    fill: #111827 !important;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-menu-icon {
    width: 32px;
    height: 32px;
    fill: currentColor
}

.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1
}

.hero .container {
    position: relative;
    z-index: 2
}

.hero .container {
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

.hero h1 span {
    color: var(--brand-light)
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface-off);
    padding: 6px 12px;
    border-radius: 20px
}

.brand-badge-container {
    background-color: transparent !important;
    padding: 0;
    box-shadow: none;
    display: inline-block;
    margin-bottom: 25px;
    min-width: 120px;
    text-align: center
}

.brand-logo-container img {
    display: block !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8)) !important;
    max-width: 220px !important;
    height: auto !important;
    transition: transform 0.3s ease
}

.text-highlight {
    color: #00d4ff;
    font-weight: 800;
    text-transform: uppercase
}

.brand-logo-container img:hover {
    transform: scale(1.05)
}

#dynamic-brand-logo {
    max-height: 55px;
    width: auto;
    max-width: 180px;
    display: block;
    margin: 0 auto
}

.bento-section {
    padding: 4rem 0
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

.bento-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    height: 100%;
    text-decoration: none
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3)
}

.bento-card-bg {
    background-size: cover;
    background-position: center;
    color: white;
    border: none;
    z-index: 1
}

.bento-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: -1
}

.bento-card-bg:hover::before {
    background: rgba(0, 0, 0, 0.92)
}

.bento-card-bg h3,
.bento-card-bg .card-link {
    color: var(--brand-primary) !important;
}

.bento-card-bg p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    opacity: 0.95
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease
}

.bento-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.35)
}

.bento-card h3 {
    color: var(--brand-primary) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4)
}

.bento-card p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    opacity: 1 !important
}

.bento-card .card-link {
    color: #4ade80 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700
}

.bento-card .card-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35)
}

/* Glassmorphism overlay */
.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
    transition: background 0.3s ease, backdrop-filter 0.3s ease
}

.bento-card:hover .bento-overlay {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.bg-gama-blanca {
    background-image: url('img/bg-gama-blanca.png')
}

.bg-aire {
    background-image: url('img/bg-aire-acondicionado.png')
}

.bg-calefaccion {
    background-image: url('img/bg-calefaccion.png')
}

.hero-bg-calefaccion {
    background-image: url('img/bg-hero-calefaccion.png');
    background-size: cover;
    background-position: center
}

.bg-urgencias {
    background-image: url('img/bg-urgencias.png')
}

.bg-recambios {
    background-image: url('img/bg-recambios.png')
}

.bg-hornos {
    background-image: url('img/bg-hero-hornos.png')
}

.bg-rapidez {
    background-image: url('img/bg-rapidez.png')
}

.faq-section {
    padding: 4rem 0;
    background: white
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-details {
    cursor: pointer;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light)
}

.faq-summary {
    font-weight: 600;
    color: var(--brand-primary);
    list-style: none;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-summary::-webkit-details-marker {
    display: none
}

.faq-summary:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-light)
}

details[open] .faq-summary:after {
    content: '-'
}

.faq-answer {
    padding-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.6
}

.slider-section {
    padding: 2rem 0;
    background: var(--surface-off);
    overflow: hidden
}

.slider-container {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)
}

.slider-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding-left: 2rem
}

.slider-track:hover {
    animation-play-state: paused
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.testimonio-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.03)
}

.testimonio-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--surface-off)
}

.testimonio-content .stars {
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem
}

.testimonio-author strong {
    color: var(--brand-primary);
    display: block
}

.testimonio-author span {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase
}

.contact-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f4f6f9 0%, #eef2f7 100%);
    display: flex;
    justify-content: center
}

.form-card-container {
    background: white;
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    border-top: 5px solid #22c55e
}

.form-header {
    text-align: center;
    margin-bottom: 2rem
}

.input-group {
    position: relative;
    margin-bottom: 1.25rem
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    z-index: 1
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    background: #f8fafc
}

.modern-form textarea {
    padding: 14px
}

.modern-form input:focus {
    border-color: var(--brand-primary);
    background: white
}

.appliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem
}

.radio-card input {
    display: none
}

.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    background: white;
    height: 100%;
    text-align: center;
    color: var(--text-secondary)
}

.radio-card input:checked+.radio-content {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #15803d;
    font-weight: 700
}

.legal-check {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem
}

.seo-directory {
    background-color: var(--brand-dark);
    padding: 3rem 0;
    margin-top: 0;
    border-top: none
}

.directory-container {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem
}

.directory-container h3 {
    text-align: center;
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem
}

.directory-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3b82f6;
    border-radius: 2px
}

.toggle-btn-container {
    text-align: center;
    margin-bottom: 20px
}

.toggle-btn {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0284c7;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    cursor: pointer
}

.toggle-btn:hover {
    background: #e0f2fe;
    color: #0369a1
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 1rem 0
}

.directory-column h4 {
    color: var(--brand-dark);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #bfdbfe;
    display: inline-block;
    padding-bottom: 4px
}

.directory-column ul {
    list-style: none;
    padding: 0
}

.directory-column li a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 6px;
    transition: color 0.2s
}

.directory-column li a:hover {
    color: #1d4ed8;
    text-decoration: underline
}

.seo-footer,
footer,
.site-footer {
    background-color: var(--brand-dark);
    color: #94a3b8;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 0
}

.seo-footer p:last-child {
    margin-top: 2rem !important
}

.seo-footer a {
    color: #cbd5e1;
    text-decoration: none
}

.seo-footer a:hover {
    color: white
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #000;
    border-radius: 50px;
    padding: 15px 24px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: 1px solid #15803d
}

.mobile-sticky-cta:hover {
    transform: translateX(-50%) !important;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.6);
    cursor: default
}

.mobile-menu-drawer {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 998;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.mobile-menu-drawer.active {
    transform: translateX(0)
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between
}

@media (min-width:640px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .desktop-nav {
        display: flex;
        margin-left: auto
    }

    .header-inner {
        position: relative
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        text-align: center
    }

    .hero {
        padding: 5rem 0
    }

    .hero h1 {
        font-size: 3.5rem
    }
}

@media (max-width:1024px) {
    .mobile-sticky-cta {
        display: flex
    }

    body {
        padding-bottom: 90px
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 20
    }

    .header-inner {
        position: relative;
        justify-content: flex-start
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        text-align: center
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s
}

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0)
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9000;
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: none;
    animation: slideUp 0.5s ease-out forwards;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-left: 5px solid var(--brand-primary)
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.cookie-text a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: underline
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end
}

.btn-accept-cookies {
    background: var(--brand-dark);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(45, 67, 115, 0.3)
}

.btn-accept-cookies:hover {
    background: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 67, 115, 0.4)
}

.btn-reject-cookies {
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 12px
}

.btn-reject-cookies:hover {
    background: #f1f5f9;
    color: #334155;
    border-color: #94a3b8
}

@media (max-width:600px) {
    .cookie-banner {
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        border-radius: 20px 20px 0 0;
        padding: 24px 20px 30px 20px;
        max-height: 80vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15)
    }

    .cookie-content {
        gap: 16px
    }

    .cookie-text {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #334155
    }

    .cookie-buttons {
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
        width: 100%
    }

    .btn-accept-cookies,
    .btn-reject-cookies {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        text-align: center;
        margin: 0;
        justify-content: center
    }

    .btn-reject-cookies {
        border: none;
        color: #64748b;
        padding: 10px;
        font-size: 0.9rem;
        margin-top: -5px
    }
}

.delay-100 {
    transition-delay: 0.1s
}

.delay-200 {
    transition-delay: 0.2s
}

.hidden {
    display: none !important
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 2147483647;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease
}

.modal-overlay.active {
    opacity: 1
}

.modal-wrapper {
    width: 92%;
    max-width: 480px;
    animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2147483648
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.modal-content-box {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: left;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border: 1px solid #e5e7eb
}

.modal-system-bar {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 20px;
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    letter-spacing: 0.02em;
    text-transform: uppercase
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px
}

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: statusPulse 2s infinite
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7)
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0)
    }
}

.modal-header {
    padding: 24px 24px 10px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.modal-header::after {
    display: none
}

.modal-logo-img {
    max-height: 70px;
    max-width: 180px;
    margin: 0 auto 20px auto !important;
    display: block
}

.division-text {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500
}

.modal-body-content {
    padding: 10px 24px 24px
}

.modal-body-content h3 {
    color: #111827;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center
}

.modal-offer {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem
}

.discount-highlight-red {
    color: #dc2626;
    font-weight: 900;
    font-size: 1.2em;
    text-transform: uppercase
}

.tech-note {
    background: transparent;
    border: none;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    padding: 12px 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px
}

.modal-cta-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding: 12px 20px !important;
    background: #16a34a !important;
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: none;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-top: 5px
}

.modal-cta-btn:hover {
    background: #15803d !important
}

.modal-disclaimer {
    display: none
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    line-height: 1
}

.modal-close-btn:hover {
    color: #4b5563
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: rotate(90deg)
}

.modal-body-content {
    padding: 2rem
}

.modal-body-content h3 {
    color: #1e3a8a;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 800
}

.modal-offer {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 1.05rem
}

.modal-cta-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding: 1.25rem 1rem !important;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: white !important;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.5);
    margin-bottom: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(34, 197, 94, 0.6)
}

.legal-hero {
    position: relative;
    width: 100%;
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    z-index: 1
}

.legal-hero-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0 20px
}

.legal-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    background-color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #374151
}

.legal-content-container h2 {
    font-size: 1.5rem;
    color: #111827;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid #16a34a;
    padding-left: 12px
}

.legal-content-container h3 {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem
}

.legal-content-container p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-align: left
}

.legal-content-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem
}

.legal-content-container li {
    margin-bottom: 0.75rem;
    line-height: 1.6
}

.legal-content-container a {
    color: #16a34a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s
}

.legal-content-container a:hover {
    color: #15803d
}

.legal-last-update {
    display: block;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem
}

@media (max-width:768px) {
    .legal-hero {
        height: 250px;
        margin-top: 60px
    }

    .legal-hero-title {
        font-size: 1.75rem
    }

    .legal-content-container {
        padding: 40px 20px 80px
    }
}

.corporate-form-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03)
}

.form-header-stripe {
    background: var(--brand-dark);
    color: white;
    padding: 16px 20px;
    text-align: center
}

.header-title-stripe {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff !important
}

.btn-icon-svg {
    width: 20px;
    height: 20px;
    fill: #000000;
    margin-right: 8px
}

.form-response-time {
    background: #f8fafc;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500
}

.status-dot-green {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    animation: statusPulse 2s infinite
}

.corporate-form-body {
    padding: 24px
}

.corporate-input-group {
    margin-bottom: 16px
}

.corporate-input {
    width: 100%;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: #1f2937;
    transition: all 0.2s ease;
    outline: none
}

.corporate-input:focus {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1)
}

.corporate-input::placeholder {
    color: #9ca3af
}

.chip-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px
}

.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px
}

.appliance-chip {
    cursor: pointer;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    user-select: none
}

.appliance-chip:hover {
    background: #e5e7eb
}

.appliance-chip.active {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.2)
}

.hero-service-bg {
    position: relative;
    z-index: 1
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    z-index: -1
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    text-decoration: none
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.12)
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-primary)
}

.service-icon-wrapper svg {
    width: 40px;
    height: 40px
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.75rem
}

.service-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.service-features {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: left
}

.service-features li {
    font-size: 0.9rem;
    color: #4b5563;
    padding: 4px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center
}

.service-features li:last-child {
    border-bottom: none
}

.service-features li::before {
    content: "•";
    color: var(--brand-primary);
    font-weight: bold;
    margin-right: 8px
}

.card-action {
    margin-top: auto;
    font-weight: 600;
    color: var(--brand-primary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.corporate-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3)
}

.corporate-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4)
}

.corporate-submit-btn:active {
    transform: translateY(1px)
}

.security-note {
    margin-top: 16px;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.security-icon {
    width: 12px;
    height: 12px;
    opacity: 0.7
}

.shadow__btn,
.float-btn,
.float-button,
a[href^='tel:'] {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.6), -1px -1px 0 rgba(0, 0, 0, 0.6), 1px -1px 0 rgba(0, 0, 0, 0.6), -1px 1px 0 rgba(0, 0, 0, 0.6), 2px 2px 3px rgba(0, 0, 0, 0.5) !important
}

.shadow__btn svg,
.float-btn svg,
.float-button svg,
a[href^='tel:'] svg {
    color: black !important;
    fill: black !important
}

.scroll-trigger {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform
}

.scroll-trigger.visible {
    opacity: 1;
    transform: translateX(0)
}

.scroll-trigger:nth-child(1) {
    transition-delay: 0.1s
}

.scroll-trigger:nth-child(2) {
    transition-delay: 0.2s
}

.scroll-trigger:nth-child(3) {
    transition-delay: 0.3s
}

.scroll-trigger:nth-child(4) {
    .hero {
        position: relative !important;
        overflow: hidden !important;
        z-index: 1 !important
    }

    .hero-bg-img {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        z-index: 0 !important
    }

    .hero-video {
        z-index: -1 !important
    }

    .hero-overlay {
        z-index: 1 !important;
        background: rgba(0, 0, 0, 0.75) !important
    }

    .hero .container {
        position: relative !important;
        z-index: 2 !important
    }

    .cookie-banner {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        animation: slideUp 0.5s ease-out
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%)
        }

        to {
            transform: translateY(0)
        }
    }

    .directory-grid {
        content-visibility: auto;
        contain-intrinsic-size: 1000px
    }

    .directory-grid {
        display: none;
        transition: all 0.3s ease-in-out
    }

    .directory-grid.hidden {
        display: none !important
    }

    .directory-grid.is-expanded {
        display: grid !important;
        animation: fadeInGrid 0.4s ease-out
    }

    @keyframes fadeInGrid {
        from {
            opacity: 0;
            transform: translateY(-10px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    #toggle-directory-btn {
        cursor: pointer;
        user-select: none;
        transition: background-color 0.2s
    }

    #toggle-directory-btn:hover {
        filter: brightness(0.95)
    }

    #toggle-directory-btn.active {
        background-color: var(--surface-off, #f3f4f6);
        color: var(--brand-primary, #1e40af)
    }

    /* Header Refinement - Global Override */
    .desktop-nav-center {
        display: none;
    }

    /* Dropdown Styles */
    .dropdown {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff;
        min-width: 240px;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        z-index: 1100;
        border-radius: 12px;
        padding: 0.5rem;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid #f3f4f6;
        animation: fadeIn 0.2s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translate(-50%, 10px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: #374151 !important;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 0.95rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.15s ease;
        text-align: left;
    }

    .dropdown-content a:hover {
        background-color: #f0fdf4;
        color: var(--brand-primary) !important;
        padding-left: 20px;
    }

    @media (min-width: 1024px) {
        .mobile-menu-btn {
            display: none !important;
        }

        /* Hide Hamburger on PC */

        .header-inner {
            justify-content: space-between !important;
            position: relative;
        }

        /* Force Logo Left */
        .logo {
            position: static !important;
            transform: none !important;
            left: auto !important;
            margin: 0 !important;
        }

        /* Center Nav */
        .desktop-nav-center {
            display: flex;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            gap: 2.5rem;
            align-items: center;
            height: 100%;
        }

        /* Navigation Links Black */
        .desktop-nav-center a:not(.dropdown-content a),
        .dropdown-trigger {
            color: #000000 !important;
            /* PURE BLACK */
            font-weight: 700;
            font-size: 1.05rem;
            transition: color 0.2s;
            text-decoration: none;
            padding: 10px 0;
        }

        .desktop-nav-center a:not(.dropdown-content a):hover,
        .dropdown:hover .dropdown-trigger {
            color: var(--brand-primary) !important;
        }

        /* Hide old nav if it exists */
        .desktop-nav {
            display: none !important;
        }
    }

    /* Mobile adjustments */
    @media (max-width: 1024px) {
        .header-right {
            display: none !important;
        }

        .desktop-nav-center {
            display: none;
        }

        .mobile-menu-btn {
            display: flex !important;
        }

        /* Show Hamburger on Mobile */
    }