.luz-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 12%, rgba(47, 128, 237, 0.10), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(40, 199, 143, 0.12), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(47, 128, 237, 0.08), transparent 38%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f3f9ff 100%);
    color: #071a44;
    font-family: Arial, Helvetica, sans-serif;
}

.luz-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 38px 20px 48px;
}

.luz-brand-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
}

.luz-logo {
    max-width: 300px;
    width: min(58vw, 300px);
    height: auto;
    display: block;
    margin: 0;
}

.luz-title {
    max-width: 1100px;
    font-size: clamp(3.2rem, 7.2vw, 6.8rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.92;
    text-align: center;
    margin: 0 0 34px;
    color: #071a44;
    text-transform: uppercase;

    transform: translateY(-22px);
}

.luz-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin: 0 0 28px;
    color: #31476f;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 500;
    text-align: center;
}

.luz-subtitle-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 3px solid #2f80ed;
    border-radius: 50%;
    color: #28c78f;
    font-weight: 900;
    font-size: 1.05rem;
}

.luz-search-wrapper {
    width: min(760px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
}

.luz-search-box {
    width: min(760px, 100%);
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 10px 12px 10px 24px;
    border: 1px solid rgba(47, 128, 237, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);

    box-shadow: 0 20px 50px rgba(7, 26, 68, 0.10);
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.luz-search-box:hover,
.luz-search-box:focus-within {
    border-color: rgba(47, 128, 237, 0.32);
    box-shadow: 0 24px 60px rgba(7, 26, 68, 0.14);
}

.luz-search-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: transparent;
    color: #ff7a1a;
    font-size: 1.55rem;
    font-weight: 900;
}

.luz-input,
.luz-input:focus,
.luz-input:focus-visible,
.luz-input:active {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 48px;
    box-sizing: border-box;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;

    font-size: 1.1rem;
    line-height: 48px;
    padding: 0 10px;
    color: #071a44;
}

.luz-input::-webkit-outer-spin-button,
.luz-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.luz-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

.luz-button {
    border-radius: 999px;
    padding: 14px 32px;
    border: none;

    background: linear-gradient(90deg, #2f80ed, #28c78f);
    color: #fff;

    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;

    box-shadow: 0 14px 28px rgba(47, 128, 237, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.luz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(47, 128, 237, 0.35);
    filter: brightness(1.04);
}

.luz-button:active {
    transform: translateY(0);
}

.luz-advanced-toggle {
    margin-top: 14px;
    border: none;
    background: transparent !important;
    color: #2f80ed !important;
    font-weight: 800;
    box-shadow: none !important;
    padding: 6px 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.luz-advanced-toggle:hover {
    color: #28c78f !important;
}

.luz-advanced-box {
    width: 100%;
    margin-top: 14px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(47, 128, 237, 0.18);
    box-shadow: 0 16px 42px rgba(7, 26, 68, 0.08);
}

.luz-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.luz-advanced-input,
.luz-advanced-input:focus,
.luz-advanced-input:focus-visible {
    width: 100%;
    min-width: 0;
    height: 36px;
    box-sizing: border-box;
    border-radius: 999px;
    border: 1px solid rgba(47, 128, 237, 0.22) !important;
    box-shadow: none !important;
    padding: 0 14px;
    font-size: 0.95rem;
    line-height: 36px;
    color: #071a44;
}

select.luz-advanced-input {
    color: #5b6b84;
}

select.luz-advanced-input option {
    color: #071a44;
}

.luz-advanced-help {
    margin: 14px 0 0;
    text-align: center;
    color: #5b6b84;
    font-size: 0.88rem;
    line-height: 1.45;
}

.luz-advanced-input::-webkit-outer-spin-button,
.luz-advanced-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.luz-advanced-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

#contacto-nombre,
#contacto-email,
#contacto-asunto {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 0 24px;
    line-height: 48px;
}

#contacto-mensaje {
    width: 100%;
    min-height: 176px;
    box-sizing: border-box;
    border-radius: 28px;
    padding: 18px 24px;
    line-height: 1.5;
}

.luz-results {
    width: min(980px, 100%);
    margin-top: 42px;
}



.popular-links {
    width: min(980px, 100%);
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
    text-align: center;
}

.popular-links-title {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b1b45;
}

.popular-links-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.92rem;
}

.popular-links-list a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 160ms ease;
}

.popular-links-list a:hover,
.popular-links-list a:focus-visible {
    color: #2f80ed;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.popular-links-list a:focus-visible {
    outline: none;
}

.popular-links-separator {
    color: #cbd5e1;
}

.luz-warning {
    text-align: center;
    color: #d64545;
    font-size: 0.95rem;
    font-weight: 700;
}

.luz-card {
    margin-top: 34px;
    border: 1px solid rgba(47, 128, 237, 0.16);
    border-radius: 32px;
    padding: 32px 34px;

    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(7, 26, 68, 0.10);
    backdrop-filter: blur(10px);
}

.luz-card-title {
    display: flex;
    align-items: center;
    gap: 16px;

    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    font-weight: 950;
    letter-spacing: -0.035em;
    text-transform: uppercase;

    margin-bottom: 28px;
    color: #071a44;
}

.luz-card-title-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.luz-card-title-text::after {
    content: "Tarifas ordenadas por ahorro estimado";
    margin-top: 8px;

    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #5b6b84;
}

.luz-consumption-card {
    margin: 0 0 34px;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(47, 128, 237, 0.14);
    box-shadow: 0 10px 28px rgba(7, 26, 68, 0.06);
}

.luz-consumption-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.luz-consumption-header h4 {
    margin: 0;
    color: #071a44;
    font-size: 1rem;
    font-weight: 900;
}

.luz-consumption-header p {
    margin: 0;
    color: #5b6b84;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: right;
}

.luz-consumption-chart {
    display: grid;
    gap: 12px;
}

.luz-consumption-row {
    display: grid;
    grid-template-columns: 150px 1fr 82px;
    align-items: center;
    gap: 18px;
    color: #5b6b84;
    font-size: 0.9rem;
    font-weight: 800;
}

.luz-consumption-row strong {
    color: #071a44;
    text-align: right;
}

.luz-consumption-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.10);
    overflow: hidden;
}

.luz-consumption-bar {
    height: 100%;
    border-radius: inherit;
}

.luz-consumption-bar-average {
    background: #90a4c4;
}

.luz-consumption-bar-user {
    background: linear-gradient(90deg, #2f80ed, #28c78f);
}

.luz-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    font-size: 0.98rem;
}

.luz-table th {
    text-align: left;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #6b7894;
    padding: 10px 14px;
    border-bottom: none;
}

.luz-table td {
    padding: 18px 14px;
    border-bottom: none;

    background: #ffffff;
    color: #071a44;
    box-shadow: 0 8px 24px rgba(7, 26, 68, 0.06);
}

.luz-table tbody tr {
    transition: transform 0.18s ease;
}

.luz-table tbody tr:hover {
    transform: translateY(-2px);
}

.luz-table tbody tr td:first-child {
    border-radius: 18px 0 0 18px;
    font-weight: 800;
}

.luz-table tbody tr td:last-child {
    border-radius: 0 18px 18px 0;
}

.luz-row-destacada td {
    background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
    box-shadow: 0 12px 28px rgba(47, 128, 237, 0.14);
    border-top: 1px solid rgba(47, 128, 237, 0.14);
    border-bottom: 1px solid rgba(47, 128, 237, 0.14);
}

.luz-row-destacada td:first-child {
    border-left: 1px solid rgba(47, 128, 237, 0.14);
}

.luz-row-destacada td:last-child {
    border-right: 1px solid rgba(47, 128, 237, 0.14);
}

.luz-badge-top {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.10);
    color: #2f80ed;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.luz-row-destacada-coste {
    font-size: 1.05rem;
    font-weight: 900;
}

.luz-row-destacada-ahorro {
    font-size: 1.05rem;
}

.luz-link-button-destacado {
    box-shadow: 0 14px 30px rgba(47, 128, 237, 0.30);
}

.seo-cta-button {
    margin-top: 24px;
}

.luz-link-button {
    display: inline-block;
    padding: 10px 18px;

    border-radius: 999px;
    background: linear-gradient(90deg, #2f80ed, #28c78f);
    color: #fff !important;

    text-decoration: none;
    font-weight: 800;

    box-shadow: 0 10px 22px rgba(47, 128, 237, 0.22);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.luz-link-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(47, 128, 237, 0.28);
}

.luz-aviso-calculo {
    margin-top: 18px;
    font-size: 0.9rem;
    color: #5b6b84;
    line-height: 1.5;
    text-align: center;
}

.luz-ahorro-positivo {
    color: #16a36c !important;
    font-weight: 900;
}

.luz-ahorro-negativo {
    color: #d64545 !important;
    font-weight: 900;
}

.luz-company-link {
    color: #071a44 !important;
    text-decoration: none;
    font-weight: 900;
}

.luz-company-link:hover {
    color: #2f80ed !important;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .luz-hero {
        min-height: auto;
        padding: 28px 16px 32px;
    }

    .luz-brand-title-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 0;
    }

    .luz-logo {
        max-width: 330px;
        width: min(62vw, 330px);
        height: auto;
        display: block;
        margin: 0;
    }

    .luz-title {
        max-width: 1100px;
        font-size: clamp(3.2rem, 7.2vw, 6.8rem);
        font-weight: 900;
        letter-spacing: -0.065em;
        line-height: 0.92;
        text-align: center;
        margin: 0 0 44px;
        color: #071a44;
        text-transform: uppercase;
    }

    .luz-title-icon {
        width: 42px;
        height: 42px;
        margin-right: 10px;
        font-size: 1.5rem;
    }

    .luz-subtitle {
        margin-bottom: 22px;
        font-size: 1rem;
        padding: 0 8px;
    }

    .luz-search-box {
        flex-direction: column;
        border-radius: 28px;
        padding: 16px;
    }

    .luz-search-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .luz-input {
        width: 100%;
        text-align: center;
    }

    .luz-button {
        width: 100%;
    }

    .luz-card {
        padding: 22px;
        overflow-x: auto;
    }

    .luz-card-title {
        font-size: 1.25rem;
    }

    .luz-consumption-header {
        flex-direction: column;
    }

    .luz-consumption-header p {
        text-align: left;
    }

    .luz-consumption-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .luz-consumption-row strong {
        text-align: left;
    }

    .luz-table {
        min-width: 720px;
    }

    .luz-advanced-grid {
        grid-template-columns: 1fr;
    }
}

.trequi-landing-page {
    min-height: 100vh;
    padding: 32px 20px 64px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f2fbf8 100%);
    color: #071a44;
    font-family: Arial, Helvetica, sans-serif;
}

.trequi-landing-hero,
.trequi-landing-section,
.trequi-landing-final {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.trequi-landing-hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 56px;
    align-items: center;
    padding: 42px 0 72px;
}

.trequi-landing-logo {
    width: 188px;
    height: auto;
    display: block;
    margin-bottom: 34px;
}

.trequi-landing-title {
    max-width: 780px;
    margin: 0;
    color: #071a44;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: 0.94;
    letter-spacing: 0;
    font-weight: 950;
}

.trequi-landing-subtitle {
    max-width: 720px;
    margin: 28px 0 0;
    color: #31476f;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.65;
}

.trequi-landing-actions,
.trequi-landing-tools,
.trequi-landing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trequi-landing-actions {
    margin-top: 34px;
}

.trequi-landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.trequi-landing-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.trequi-landing-button-primary {
    color: #ffffff;
    background: linear-gradient(90deg, #2f80ed, #28c78f);
    box-shadow: 0 16px 34px rgba(47, 128, 237, 0.28);
}

.trequi-landing-button-secondary {
    color: #071a44;
    background: #ffffff;
    border: 0;
    box-shadow:
        inset 0 0 0 1px rgba(47, 128, 237, 0.22),
        0 12px 26px rgba(7, 26, 68, 0.08);
}

.trequi-landing-visual {
    position: relative;
    min-height: 420px;
    border-radius: 34px;
    background: linear-gradient(145deg, #ffffff, #eaf6ff);
    box-shadow: 0 28px 80px rgba(7, 26, 68, 0.12);
    overflow: hidden;
}

.trequi-landing-house {
    position: absolute;
    left: 50%;
    top: 54%;
    width: 240px;
    height: 230px;
    transform: translate(-50%, -50%);
}

.trequi-landing-roof {
    width: 180px;
    height: 180px;
    margin: 0 auto -86px;
    transform: rotate(45deg);
    border-radius: 22px;
    background: linear-gradient(135deg, #2f80ed, #28c78f);
}

.trequi-landing-home-body {
    position: relative;
    height: 150px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(47, 128, 237, 0.18);
    box-shadow: 0 18px 38px rgba(7, 26, 68, 0.12);
}

.trequi-landing-window,
.trequi-landing-panel,
.trequi-landing-energy-line {
    position: absolute;
    border-radius: 12px;
}

.trequi-landing-window {
    left: 28px;
    top: 34px;
    width: 54px;
    height: 54px;
    background: #e6f1ff;
}

.trequi-landing-panel {
    right: 26px;
    top: 30px;
    width: 82px;
    height: 58px;
    background: linear-gradient(135deg, #071a44, #2f80ed);
}

.trequi-landing-energy-line {
    left: 28px;
    right: 28px;
    bottom: 28px;
    height: 12px;
    background: linear-gradient(90deg, #2f80ed, #28c78f);
}

.trequi-landing-metric {
    position: absolute;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(7, 26, 68, 0.12);
}

.trequi-landing-metric strong,
.trequi-landing-metric span {
    display: block;
}

.trequi-landing-metric-one {
    left: 28px;
    top: 34px;
}

.trequi-landing-metric-two {
    right: 28px;
    bottom: 34px;
}

.trequi-landing-section {
    padding: 44px 0;
}

.trequi-landing-grid {
    display: grid;
    gap: 18px;
}

.trequi-landing-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trequi-landing-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trequi-landing-card,
.trequi-landing-step,
.trequi-landing-tool-card {
    border: 1px solid rgba(47, 128, 237, 0.14);
    border-radius: 24px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 42px rgba(7, 26, 68, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.trequi-landing-card:hover,
.trequi-landing-step:hover,
.trequi-landing-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(7, 26, 68, 0.12);
}

.trequi-landing-card span {
    font-size: 1.8rem;
}

.trequi-landing-card h2,
.trequi-landing-card h3,
.trequi-landing-step h3,
.trequi-landing-tool-card h3 {
    margin: 14px 0 10px;
    color: #071a44;
    font-weight: 950;
}

.trequi-landing-card p,
.trequi-landing-step p,
.trequi-landing-tool-card p {
    margin: 0;
    color: #5b6b84;
    line-height: 1.55;
}

.trequi-landing-step strong {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: #2f80ed;
}

.trequi-landing-section-title {
    margin: 0 0 24px;
    color: #071a44;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 950;
}

.trequi-landing-tools {
    align-items: stretch;
}

.trequi-landing-tool-card {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trequi-landing-tool-card .trequi-landing-button {
    align-self: flex-start;
    margin-top: auto;
}

.trequi-landing-badges span {
    padding: 12px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #071a44;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(7, 26, 68, 0.07);
}

.trequi-landing-final {
    margin-top: 38px;
    padding: 48px;
    border-radius: 32px;
    text-align: center;
    background: #071a44;
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(7, 26, 68, 0.18);
}

.trequi-landing-final h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 950;
    letter-spacing: 0;
}

@media (max-width: 860px) {
    .trequi-landing-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 24px;
    }

    .trequi-landing-visual {
        min-height: 340px;
    }

    .trequi-landing-grid-four,
    .trequi-landing-grid-three {
        grid-template-columns: 1fr;
    }

    .trequi-landing-final {
        padding: 34px 22px;
    }
}

@media (max-width: 640px) {
    .popular-links {
        margin-top: 36px;
        padding-top: 18px;
    }

    .popular-links-list {
        font-size: 0.88rem;
        line-height: 1.8;
    }

    .popular-links-separator {
        display: none;
    }
}

@media (max-width: 520px) {
    .trequi-landing-page {
        padding: 22px 14px 44px;
    }

    .trequi-landing-logo {
        width: 150px;
        margin-bottom: 24px;
    }

    .trequi-landing-actions,
    .trequi-landing-button {
        width: 100%;
    }

    .trequi-landing-title {
        font-size: clamp(2.55rem, 14vw, 4rem);
    }
}



/* Refinamiento landing Trequi optimizacion energetica */
.trequi-landing-hero {
    min-height: 500px;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 44px;
    padding: 24px 0 36px;
}

.trequi-landing-hero-copy {
    width: 100%;
    min-width: 0;
}

.trequi-landing-logo {
    width: 260px;
    height: 173.34px;
    margin-bottom: 24px;
    object-fit: contain;
}

.trequi-landing-title {
    max-width: 680px;
    font-size: clamp(2.25rem, 4.5vw, 4.25rem);
    line-height: 1.08;
}

.trequi-landing-subtitle {
    margin-top: 22px;
    line-height: 1.58;
}

.trequi-landing-actions {
    gap: 16px;
    margin-top: 30px;
}

.trequi-landing-button {
    min-width: 244px;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 18px;
    font-size: 1rem;
    line-height: 1.1;
    box-shadow: 0 14px 30px rgba(7, 26, 68, 0.12);
}

.trequi-landing-button-primary,
.trequi-landing-button-secondary {
    box-shadow: 0 14px 30px rgba(7, 26, 68, 0.12);
}

.trequi-landing-button-secondary {
    border: 0;
    box-shadow:
        inset 0 0 0 1px rgba(47, 128, 237, 0.22),
        0 14px 30px rgba(7, 26, 68, 0.12);
}

.trequi-landing-visual {
    min-height: 360px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 22% 18%, rgba(40, 199, 143, 0.18), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(47, 128, 237, 0.16), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #eef8ff 58%, #edfdf6 100%);
}

.trequi-landing-visual::after {
    content: "A";
    position: absolute;
    right: 34px;
    top: 32px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #28c78f, #2f80ed);
    font-size: 2rem;
    font-weight: 950;
    box-shadow: 0 14px 32px rgba(47, 128, 237, 0.24);
}

.trequi-landing-house {
    top: 56%;
    width: 280px;
    height: 240px;
}

.trequi-landing-roof {
    width: 208px;
    height: 208px;
    margin-bottom: -100px;
    border-radius: 20px;
}

.trequi-landing-home-body {
    height: 158px;
    border-radius: 22px;
}

.trequi-landing-home-body::after {
    content: "";
    position: absolute;
    left: 104px;
    bottom: 0;
    width: 48px;
    height: 70px;
    border-radius: 16px 16px 0 0;
    background: #071a44;
}

.trequi-landing-window {
    left: 30px;
    top: 36px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #dcecff, #ffffff);
    border: 2px solid rgba(47, 128, 237, 0.18);
}

.trequi-landing-panel {
    right: 28px;
    top: 34px;
    width: 92px;
    height: 60px;
    background: linear-gradient(135deg, #10295c, #2f80ed);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.trequi-landing-panel::before,
.trequi-landing-panel::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.34);
}

.trequi-landing-panel::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
}

.trequi-landing-panel::after {
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
}

.trequi-landing-energy-line {
    left: 28px;
    right: 28px;
    bottom: 22px;
    height: 10px;
}

.trequi-landing-metric {
    padding: 12px 14px;
    border-radius: 14px;
}

.trequi-landing-section {
    padding: 34px 0;
}

@media (max-width: 860px) {
    .trequi-landing-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 18px 0 30px;
    }

    .trequi-landing-visual {
        display: none;
    }
}

@media (max-width: 520px) {
    .trequi-landing-logo {
        width: 190px;
        height: 126.67px;
        margin-bottom: 22px;
    }

    .trequi-landing-title {
        font-size: clamp(2rem, 10.5vw, 3rem);
        line-height: 1.12;
    }

    .trequi-landing-button {
        width: 100%;
        min-width: 0;
        min-height: 52px;
    }

    .trequi-landing-visual {
        min-height: 260px;
        border-radius: 22px;
    }

    .trequi-landing-house {
        width: 230px;
        transform: translate(-50%, -50%) scale(0.86);
    }

    .trequi-landing-visual::after {
        right: 20px;
        top: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
}


/* CTA final landing: contraste y fondo claro */
.trequi-landing-final {
    background:
        radial-gradient(circle at 18% 20%, rgba(47, 128, 237, 0.12), transparent 32%),
        radial-gradient(circle at 82% 30%, rgba(40, 199, 143, 0.14), transparent 34%),
        #ffffff;
    color: #071a44;
    border: 1px solid rgba(47, 128, 237, 0.14);
    box-shadow: 0 22px 58px rgba(7, 26, 68, 0.10);
}

.trequi-landing-final h2 {
    color: #071a44;
}

.trequi-landing-final .trequi-landing-button-primary {
    color: #ffffff;
}

.trequi-landing-legal-links {
    width: min(1120px, 100%);
    margin: 28px auto 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #5b6b84;
    font-size: 0.9rem;
}

.trequi-landing-legal-links a {
    color: inherit;
    text-decoration: none;
}

.trequi-landing-legal-links a:hover {
    color: #2f80ed;
    text-decoration: underline;
}

/* CLS: reserva espacio para contenido e imagenes criticas */
#page-content {
    min-height: 100vh;
}

.luz-logo,
.trequi-landing-logo {
    aspect-ratio: 3 / 2;
    object-fit: contain;
}


/* Breadcrumb compartido para rutas que cargan solo luz.css */
.seo-breadcrumb {
    margin-bottom: 20px;
    color: #5b6b84;
    font-size: 0.9rem;
    font-weight: 600;
}

.seo-breadcrumb a {
    color: #2f80ed;
    text-decoration: none;
}

.seo-breadcrumb a:hover {
    text-decoration: underline;
}

.compare-hero {
    padding-top: 30px;
}

.compare-title {
    font-size: clamp(3rem, 4.4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 16px;
    transform: none;
}

.compare-subtitle {
    max-width: 720px;
    margin-bottom: 24px;
    color: #5b6b84;
    font-size: 1.25rem;
    line-height: 1.45;
}

.compare-wrapper {
    width: min(820px, 100%);
    margin-top: 0;
}

.compare-mode-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(47, 128, 237, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 42px rgba(7, 26, 68, 0.08);
}

.compare-mode-tab {
    min-height: 44px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #31476f;
    font: 800 0.92rem Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.compare-mode-tab-active {
    background: linear-gradient(90deg, #2f80ed, #28c78f);
    color: #fff;
    box-shadow: 0 12px 26px rgba(47, 128, 237, 0.24);
}

.compare-panel {
    margin-top: 14px;
}

.compare-sim-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-sim-header {
    text-align: center;
}

.compare-sim-header h2 {
    margin: 0 0 8px;
    color: #071a44;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
}

.compare-sim-header p,
.compare-sim-note {
    margin: 0;
    color: #5b6b84;
    line-height: 1.45;
}

.compare-sim-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-sim-form h3 {
    margin: 0;
    color: #31476f;
    font-size: 0.9rem;
    font-weight: 900;
}

.compare-sim-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.simulation-tariff-row {
    align-items: end;
}

.simulation-extra-rows {
    display: grid;
    gap: 10px;
}

.simulation-extra-rows .simulation-tariff-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.simulation-extra-rows .simulation-tariff-row h3 {
    grid-column: 1 / -1;
    margin: 2px 0 -2px;
    color: #0b1f4d;
    font-size: 0.95rem;
}

.hourly-profile-block {
    padding: 16px;
    border: 1px solid rgba(47, 128, 237, 0.16);
    border-radius: 22px;
    background: rgba(247, 251, 255, 0.78);
}

.hourly-profile-header h3 {
    margin: 0 0 6px;
    color: #071a44;
    font-size: 1rem;
}

.hourly-profile-header p {
    margin: 0 0 12px;
    color: #5b6b84;
    font-size: 0.9rem;
    line-height: 1.4;
}

.hourly-profile-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.hourly-profile-preset {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(47, 128, 237, 0.22);
    border-radius: 999px;
    background: #fff;
    color: #31476f;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
}

.hourly-profile-radio {
    margin-right: 6px;
}

.hourly-profile-bar {
    display: grid;
    grid-template-columns: repeat(24, minmax(5px, 1fr));
    gap: 3px;
    align-items: end;
    min-height: 34px;
}

.hourly-profile-segment {
    min-height: 14px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.14);
    cursor: pointer;
    box-shadow: inset 0 -4px 0 rgba(91, 107, 132, 0.22);
}

.hourly-profile-segment:focus-visible {
    outline: 2px solid #2f80ed;
    outline-offset: 2px;
}

.hourly-profile-segment-0 {
    opacity: 0.35;
}

.hourly-profile-segment-1 {
    height: 16px;
    background: rgba(47, 128, 237, 0.22);
}

.hourly-profile-segment-2 {
    height: 24px;
    background: rgba(47, 128, 237, 0.46);
}

.hourly-profile-segment-3 {
    height: 32px;
    background: linear-gradient(180deg, #28c78f, #2f80ed);
}

.hourly-profile-period-valle {
    box-shadow: inset 0 -5px 0 rgba(40, 199, 143, 0.72);
}

.hourly-profile-period-llano {
    box-shadow: inset 0 -5px 0 rgba(47, 128, 237, 0.58);
}

.hourly-profile-period-punta {
    box-shadow: inset 0 -5px 0 rgba(255, 122, 89, 0.74);
}

.hourly-profile-labels {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin-top: 6px;
    color: #5b6b84;
    font-size: 0.72rem;
    font-weight: 800;
}

.hourly-profile-labels span {
    text-align: left;
}

.hourly-profile-period-legend {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
    color: #5b6b84;
    font-size: 0.78rem;
    font-weight: 800;
}

.hourly-profile-period-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hourly-profile-period-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
}

.hourly-profile-period-dot-valle {
    background: #28c78f;
}

.hourly-profile-period-dot-llano {
    background: #2f80ed;
}

.hourly-profile-period-dot-punta {
    background: #ff7a59;
}

.compare-sim-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.compare-secondary-button {
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid rgba(47, 128, 237, 0.22);
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.08);
    color: #2f80ed;
    font: 800 0.95rem Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.compare-sim-note {
    text-align: center;
    font-size: 0.88rem;
}

.simulation-remove-button {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.85rem;
}

.simulation-results {
    margin-top: 28px;
}

.simulation-results h2 {
    margin: 0 0 8px;
    color: #071a44;
}

.simulation-results-grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.simulation-applied-values {
    margin-top: 16px;
    padding: 24px;
    border: 1px solid rgba(71, 85, 105, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(7, 26, 68, 0.07);
}

.simulation-applied-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(47, 128, 237, 0.22);
}

.simulation-applied-header-icon,
.simulation-applied-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f80ed;
    background: currentColor;
    -webkit-mask: var(--simulation-icon) center / contain no-repeat;
    mask: var(--simulation-icon) center / contain no-repeat;
}

.simulation-icon-calculator {
    --simulation-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h8ZM4 2v2h8V2H4Zm1 5h2v2H5V7Zm3 0h2v2H8V7Zm3 0h1v2h-1V7Zm-6 3h2v2H5v-2Zm3 0h2v2H8v-2Zm3 0h1v2h-1v-2Z'/%3E%3C/svg%3E");
}

.simulation-icon-plug {
    --simulation-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5.5a.5.5 0 0 0-1 0V3h-2A1.5 1.5 0 0 0 2 4.5V7a5 5 0 0 0 4.5 4.975V15a1 1 0 1 0 2 0v-3.025A5 5 0 0 0 13 7V4.5A1.5 1.5 0 0 0 11.5 3h-2V.5a.5.5 0 0 0-1 0V3h-2V.5ZM3.5 4h8a.5.5 0 0 1 .5.5V7a4 4 0 0 1-8 0V4.5a.5.5 0 0 1 .5-.5Z'/%3E%3C/svg%3E");
}

.simulation-icon-lightning {
    --simulation-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11.251.068a.5.5 0 0 1 .227.58L9.677 6H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9H3a.5.5 0 0 1-.364-.843l8-8a.5.5 0 0 1 .615-.09Z'/%3E%3Cpath d='M11.5 12.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 1.5A3 3 0 1 1 14.5 11 3 3 0 0 1 11.5 14Z'/%3E%3C/svg%3E");
}

.simulation-icon-bar {
    --simulation-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1 13.5a.5.5 0 0 1 .5-.5H15v1H1.5a.5.5 0 0 1-.5-.5ZM3 8.5A1.5 1.5 0 0 1 4.5 7h1A1.5 1.5 0 0 1 7 8.5V12H3V8.5Zm5-4A1.5 1.5 0 0 1 9.5 3h1A1.5 1.5 0 0 1 12 4.5V12H8V4.5Zm5 2A1.5 1.5 0 0 1 14.5 5h.5v7h-2V6.5Z'/%3E%3C/svg%3E");
}

.simulation-icon-pie {
    --simulation-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a7 7 0 1 0 4.95 11.95L8 8V1Zm1 0v6h6a6.99 6.99 0 0 0-6-6Zm5.66 7H9.7l3.5 3.5A6.98 6.98 0 0 0 14.66 8Z'/%3E%3C/svg%3E");
}

.simulation-icon-clock {
    --simulation-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8.515 1.018A7 7 0 1 1 1 8h1a6 6 0 1 0 1.757-4.243L5.5 5.5H1V1l2.05 2.05a6.98 6.98 0 0 1 5.465-2.032Z'/%3E%3Cpath d='M8 3.5a.5.5 0 0 1 .5.5v3.293l2.146 2.147a.5.5 0 0 1-.708.707L7.646 7.854A.5.5 0 0 1 7.5 7.5V4a.5.5 0 0 1 .5-.5Z'/%3E%3C/svg%3E");
}

.simulation-icon-info {
    --simulation-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14Zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16Z'/%3E%3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588ZM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'/%3E%3C/svg%3E");
}

.simulation-applied-header-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.simulation-applied-values h3 {
    margin: 0;
    color: #071a44;
    font-size: 1.18rem;
    font-weight: 900;
}

.simulation-applied-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 0;
}

.simulation-applied-item {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 18px 16px;
    border: 1px solid rgba(47, 128, 237, 0.11);
    border-radius: 15px;
    background: #fafcff;
    box-shadow: 0 8px 18px rgba(7, 26, 68, 0.035);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.simulation-applied-item:hover {
    border-color: rgba(47, 128, 237, 0.22);
    box-shadow: 0 12px 24px rgba(7, 26, 68, 0.06);
    transform: translateY(-1px);
}

.simulation-applied-item-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.simulation-applied-item-label {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
}

.simulation-applied-item-value {
    display: grid;
    gap: 5px;
    color: #071a44;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.25;
}

.simulation-applied-item-value span,
.simulation-applied-item-value small {
    display: block;
}

.simulation-applied-item-value small {
    margin-top: 2px;
    color: #5b6b84;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

.simulation-applied-info {
    padding-top: 16px;
    border-top: 1px solid rgba(47, 128, 237, 0.18);
    color: #5b6b84;
    font-size: 0.85rem;
    line-height: 1.55;
}

.simulation-applied-info p {
    margin: 0;
}

.simulation-applied-info > p {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.simulation-applied-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    background: #2f80ed;
    color: #2f80ed;
    -webkit-mask: var(--simulation-icon) center / contain no-repeat;
    mask: var(--simulation-icon) center / contain no-repeat;
}

.simulation-applied-info details {
    margin-top: 8px;
}

.simulation-applied-info summary {
    color: #2f80ed;
    cursor: pointer;
    font-weight: 800;
}

.simulation-applied-info details[open] summary {
    margin-bottom: 6px;
}

.simulation-result-card {
    padding: 14px;
    border: 1px solid rgba(47, 128, 237, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
}

.simulation-result-card-best {
    border-color: rgba(40, 199, 143, 0.38);
    box-shadow: 0 16px 32px rgba(40, 199, 143, 0.12);
}

.simulation-result-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
}

.simulation-result-head strong {
    display: block;
    color: #2f80ed;
    font-size: 0.85rem;
}

.simulation-result-head h3 {
    margin: 4px 0 8px;
    color: #071a44;
    font-size: 1.05rem;
}

.simulation-result-price {
    display: grid;
    justify-items: end;
    gap: 4px;
    text-align: right;
}

.simulation-result-price em {
    color: #071a44;
    font-style: normal;
    font-size: 1.35rem;
    font-weight: 900;
}

.simulation-result-price small,
.simulation-result-diff {
    color: #5b6b84;
}

.simulation-result-diff {
    margin: 8px 0 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.simulation-result-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    color: #5b6b84;
    font-size: 0.86rem;
    line-height: 1.35;
}

.simulation-result-breakdown span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.08);
}

.simulation-result-warning {
    border-color: rgba(255, 122, 89, 0.28);
}

.compare-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: end;
    gap: 14px;
}

.compare-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.compare-field label {
    color: #31476f;
    font-size: 0.86rem;
    font-weight: 800;
}

.compare-vs {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
    border-radius: 50%;
    background: rgba(47, 128, 237, 0.10);
    color: #2f80ed;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.compare-submit {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 240px;
    margin-top: 4px;
}

.compare-results-shell {
    width: min(1120px, 100%);
    margin-top: 28px;
}

.compare-results {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.compare-section-header {
    text-align: center;
}

.compare-section-header h2,
.compare-summary-card h2,
.compare-scoreboard h2,
.compare-recommendation h2 {
    margin: 0 0 8px;
    color: #071a44;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1.12;
}

.compare-section-header p {
    max-width: 780px;
    margin: 0 auto;
    color: #5b6b84;
    line-height: 1.5;
}

.compare-duel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.compare-company-card,
.compare-type-card,
.compare-summary-card,
.compare-scoreboard,
.compare-recommendation,
.compare-technical {
    border: 1px solid rgba(47, 128, 237, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(7, 26, 68, 0.08);
}

.compare-company-card {
    padding: 22px;
}

.compare-company-card h3 {
    margin: 0 0 6px;
    color: #071a44;
    font-size: 1.35rem;
}

.compare-company-count,
.compare-company-date {
    margin: 0;
    color: #5b6b84;
    font-size: 0.9rem;
    font-weight: 700;
}

.compare-company-date {
    margin-bottom: 14px;
}

.compare-duel-vs {
    position: sticky;
    top: 18px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2f80ed, #28c78f);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(47, 128, 237, 0.24);
}

.compare-tariff-list,
.company-tariff-list {
    display: grid;
    gap: 10px;
}

.compare-tariff-list-expanded {
    margin-top: 10px;
}

.compare-tariff-mini-card {
    padding: 12px 14px;
    border: 1px solid rgba(47, 128, 237, 0.16);
    border-radius: 18px;
    background: #fff;
}

.company-tariff-card--compact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(128px, auto);
    gap: 12px;
    align-items: start;
}

.company-tariff-main {
    min-width: 0;
}

.compare-tariff-mini-head {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.compare-tariff-mini-head h4 {
    margin: 0;
    color: #071a44;
    font-size: 0.95rem;
    line-height: 1.22;
}

.compare-type-pill,
.compare-badge {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.10);
    color: #1254a3;
    font-size: 0.69rem;
    font-weight: 800;
    white-space: nowrap;
}

.compare-price-line {
    margin: 0;
    color: #071a44;
    font-weight: 900;
}

.compare-detail-line {
    margin: 8px 0 0;
    color: #31476f;
    font-size: 0.82rem;
    line-height: 1.35;
}

.company-tariff-meta {
    color: #5b6b84;
}

.compare-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.company-tariff-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.company-tariff-price {
    font-size: 0.96rem;
    line-height: 1.25;
    white-space: nowrap;
}

.compare-detail-link {
    display: inline-flex;
    margin-top: 0;
    color: #2f80ed;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.compare-detail-link:hover {
    text-decoration: underline;
}

.compare-expand summary {
    width: fit-content;
    margin: 12px auto 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.10);
    color: #2f80ed;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.compare-expand summary::-webkit-details-marker {
    display: none;
}

.compare-summary-card,
.compare-scoreboard,
.compare-recommendation,
.compare-technical {
    padding: 22px;
}

.compare-summary-grid,
.compare-score-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.compare-score-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-summary-column,
.compare-score-column {
    padding: 16px;
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.9);
}

.compare-summary-column h3,
.compare-score-column h3 {
    margin: 0 0 10px;
    color: #071a44;
}

.compare-summary-column p,
.compare-score-column li,
.compare-scoreboard p {
    color: #31476f;
    line-height: 1.45;
}

.compare-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.compare-recommendation-mini {
    padding: 16px;
    border: 1px solid rgba(47, 128, 237, 0.14);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.9);
}

.compare-recommendation-icon {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 1.65rem;
    line-height: 1;
}

.compare-recommendation-mini h3 {
    margin: 0 0 8px;
    color: #071a44;
    font-size: 1rem;
}

.compare-recommendation-mini strong {
    display: block;
    color: #1254a3;
    font-size: 1.15rem;
}

.compare-recommendation-mini small {
    display: block;
    margin-top: 4px;
    color: #5b6b84;
    font-size: 0.84rem;
    line-height: 1.35;
}

.compare-recommendation-note {
    margin: 16px 0 0;
    color: #5b6b84;
    font-size: 0.9rem;
    line-height: 1.45;
}

.compare-score-column ul {
    margin: 0;
    padding-left: 18px;
}

.compare-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.compare-type-card {
    padding: 18px;
}

.compare-type-card h3 {
    margin: 0 0 12px;
    color: #071a44;
}

.compare-type-duel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.compare-type-duel div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.9);
}

.compare-type-duel strong {
    color: #071a44;
}

.compare-type-duel span {
    color: #31476f;
}

.compare-type-duel em {
    color: #1254a3;
    font-style: normal;
    font-weight: 900;
}

.compare-technical summary {
    color: #071a44;
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
}

.compare-technical-table-wrap {
    margin-top: 16px;
    overflow-x: auto;
}

.compare-technical-table {
    min-width: 1180px;
}

.compare-followup {
    width: 100%;
    margin-top: 2px;
}

.compare-followup h2 {
    margin: 0 0 8px;
    color: #071a44;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.compare-followup-copy {
    margin: 0 0 16px;
    color: #5b6b84;
    line-height: 1.45;
    text-align: center;
}

.compare-popular-links {
    width: 100%;
    margin-top: 10px;
}

.compare-soft-warning {
    width: min(760px, 100%);
    margin: 18px auto 0;
}

.compare-select {
    height: auto;
    min-height: 42px;
    padding: 0;
}

.compare-select .Select-control,
.compare-select .Select-placeholder,
.compare-select .Select-value,
.compare-select .Select-input {
    min-height: 42px;
    line-height: 42px;
}

.compare-select .Select-control {
    border: none;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.compare-select .Select-value-label {
    color: #071a44 !important;
}

@media (max-width: 980px) {
    .simulation-applied-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .simulation-applied-item {
        padding: 16px;
    }
}

@media (max-width: 700px) {
    .compare-title {
        font-size: clamp(2.125rem, 10vw, 2.5rem);
        margin-bottom: 14px;
    }

    .compare-subtitle {
        display: block;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .compare-mode-tabs {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .compare-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .compare-sim-grid {
        grid-template-columns: 1fr;
    }

    .simulation-extra-rows .simulation-tariff-row,
    .simulation-result-head {
        grid-template-columns: 1fr;
    }

    .simulation-result-price {
        justify-items: start;
        text-align: left;
    }

    .simulation-applied-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .simulation-applied-values {
        padding: 18px;
    }

    .simulation-applied-item,
    .simulation-applied-item:first-child,
    .simulation-applied-item:last-child {
        padding: 16px;
    }

    .hourly-profile-presets {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hourly-profile-labels {
        font-size: 0.68rem;
    }

    .compare-sim-actions .luz-button,
    .compare-secondary-button {
        width: 100%;
    }

    .compare-vs {
        justify-self: center;
        margin: 0;
    }

    .compare-submit {
        width: 100%;
        min-width: 0;
    }

    .compare-duel,
    .compare-summary-grid,
    .compare-score-grid,
    .compare-recommendation-grid,
    .compare-type-grid,
    .compare-type-duel {
        grid-template-columns: 1fr;
    }

    .compare-duel-vs {
        position: static;
        justify-self: center;
        margin: 0;
    }

    .compare-company-card,
    .compare-summary-card,
    .compare-scoreboard,
    .compare-recommendation,
    .compare-technical {
        border-radius: 24px;
        padding: 18px;
    }

    .compare-tariff-mini-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-tariff-card--compact {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .company-tariff-actions {
        align-items: flex-start;
        text-align: left;
    }

    .company-tariff-price {
        white-space: normal;
    }

    .compare-technical:not([open]) {
        display: block;
    }
}
