/* ===== VARIABILI E RESET ===== */
:root {
    --wind-orange: #fc4a14;
    --wind-orange-dark: #d93d0e;
    --wind-orange-light: #ff6a3a;
    --wind-gray: #4A4A4A;
    --wind-gray-light: #F5F5F5;
    --wind-gray-dark: #333333;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(252, 74, 20, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f0f0f1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HIDE reCAPTCHA BADGE (attribution in form) ===== */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 9998;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== NAVBAR PRINCIPALE ===== */
.main-nav {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wind {
    height: 45px;
    width: auto;
}


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--wind-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-link:hover {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--wind-orange-dark);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--wind-orange);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: var(--wind-orange-dark);
    padding: 15px;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 75px;
    z-index: 999;
}

.mobile-menu-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('Immagini/hero.jpg') calc(65% + 116px) center / 111% no-repeat;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-wave {
    display: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 90px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--wind-orange);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-title span {
    display: block;
    font-size: 62px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--wind-orange);
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-fisso {
    background-color: var(--white);
}

.section-mobile {
    background-color: var(--wind-gray-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.section-title span {
    color: var(--wind-orange);
}

/* ===== OFFERS GRID ===== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (min-width: 769px) {
    .offers-grid--two-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card container */
.offer-card {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* === PARTE SUPERIORE: immagine + overlay + titolo === */
.offer-card-top {
    position: relative;
    background-size: cover;
    background-position: center 35%;
    padding: 30px;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.offer-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.offer-card-top-content {
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    background: var(--wind-orange);
    color: var(--white);
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 12px;
}

.offer-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* === PARTE INFERIORE: sfondo bianco + dettagli === */
.offer-card-bottom {
    background: var(--white);
    padding: 25px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-radius: 0 0 20px 20px;
}

.offer-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.offer-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.offer-features li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features i {
    color: var(--wind-orange);
    font-size: 13px;
}

.offer-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 13px;
    color: var(--text-gray);
    width: 100%;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--wind-orange);
}

.period {
    font-size: 16px;
    color: var(--text-gray);
}

.offer-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--wind-orange);
    color: var(--white);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.offer-cta:hover {
    background: var(--wind-orange-dark);
    transform: scale(1.02);
}

.price-note {
    width: 100%;
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* ===== TOOLTIPS INFO ===== */
.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
    margin-left: 4px;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

.info-tooltip i {
    color: var(--wind-orange);
    font-size: 14px;
    transition: var(--transition);
}

.info-tooltip:hover i {
    color: var(--wind-orange-dark);
}

.info-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--wind-gray-dark);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    width: 240px;
    text-align: left;
    z-index: 100;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.info-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--wind-gray-dark);
}

.info-tooltip:hover .info-tooltip-text,
.info-tooltip.active .info-tooltip-text {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* ===== CONTACT FORM ===== */
.section-contatti {
    background-color: var(--wind-gray-light);
}

.form-hook {
    text-align: center;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.7;
    margin-top: -25px;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    margin-bottom: 25px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
    width: 100%;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wind-orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--wind-orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--wind-orange-dark);
    transform: scale(1.02);
}

/* Privacy checkbox */
.form-privacy {
    margin-bottom: 20px;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.privacy-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.privacy-checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
}

.privacy-check input:checked ~ .privacy-checkmark {
    background: var(--wind-orange);
    border-color: var(--wind-orange);
}

.privacy-checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.privacy-check input:checked ~ .privacy-checkmark::after {
    opacity: 1;
}

.privacy-check input:focus ~ .privacy-checkmark {
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.privacy-label {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.privacy-label a {
    color: var(--wind-orange);
    text-decoration: none;
    font-weight: 600;
}

.privacy-label a:hover {
    text-decoration: underline;
}

.recaptcha-notice {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.recaptcha-notice a {
    color: #999;
    text-decoration: underline;
}

.form-message {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.form-message.error {
    background: #FFF0F0;
    color: #D32F2F;
    border: 1px solid #FFCDD2;
}

.form-message.success {
    background: #F0FFF0;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 56px;
    color: var(--wind-orange);
    margin-bottom: 20px;
    display: block;
}

.form-success h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: url('Immagini/wid.webp') center center / cover no-repeat;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--wind-orange);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--wind-gray-dark);
    padding: 50px 0 20px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logos .footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logos p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--wind-orange);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--wind-orange);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1680px) {
    .hero {
        background: url('Immagini/hero.jpg') calc(65% + 80px) -50px / cover no-repeat;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-title span {
        font-size: 44px;
    }

    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }

    .logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-wind {
        height: 35px;
    }

    .hero {
        background-image: none;
        background-color: #f0f0f2;
        padding: 50px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title span {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .offer-card-top {
        min-height: 170px;
        padding: 25px;
    }

    .offer-card-bottom {
        padding: 20px 25px 25px;
    }

    .info-tooltip-text {
        width: 200px;
        left: 0;
        transform: none;
    }

    .info-tooltip-text::after {
        left: 10px;
        transform: none;
    }

    .price {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-hook {
        margin-top: -15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-title span {
        font-size: 28px;
    }

    .offer-name {
        font-size: 22px;
    }

    .offer-card-top {
        min-height: 150px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== POLICY PAGES ===== */
.policy-hero {
    background: linear-gradient(135deg, var(--er-navy) 0%, var(--er-navy-light) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--er-yellow);
}

.policy-hero h1 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.policy-hero p {
    color: var(--white);
    opacity: 0.9;
    margin-top: 10px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.policy-content {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--er-navy);
    margin: 35px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--er-yellow);
    display: inline-block;
}

.policy-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.policy-content p,
.policy-content li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-content ul li {
    padding-left: 20px;
    position: relative;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--er-yellow);
    border-radius: 50%;
}

.policy-content a {
    color: var(--er-navy);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content strong {
    color: var(--text-dark);
}

.policy-update {
    margin-top: 40px;
    padding: 20px;
    background: var(--wind-gray-light);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wind-gray-dark);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    min-width: 250px;
}

.cookie-banner-text a {
    color: var(--wind-orange-light);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--wind-orange);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--wind-orange-dark);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-reject:hover {
    border-color: var(--white);
}

@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 28px;
    }

    .policy-content {
        padding: 40px 20px;
    }

    .policy-content h2 {
        font-size: 19px;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== BUSINESS SECTIONS ===== */

/* Section backgrounds with SVG decorations */
.section-fisso-biz {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.section-fisso-biz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Immagini/prof-top.svg') center center / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

#fisso-biz::before {
    background-position: calc(50% + 16px) center;
    }

.section-mobile-biz {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.section-mobile-biz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Immagini/prof-center.svg') center center / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

.section-fisso-biz > .container,
.section-mobile-biz > .container {
    position: relative;
    z-index: 1;
}

/* Business offers horizontal row */
.biz-offers-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Modifier per righe con 4-5 card (wrap a desktop) */
.biz-offers-row--wrap {
    flex-wrap: wrap;
    justify-content: center;
}

.biz-offers-row--wrap .biz-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
    max-width: 360px;
}

/* Spaziatura tra righe successive di offerte */
.biz-offers-row + .biz-offers-row {
    margin-top: 24px;
}

/* Business card */
.biz-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 28px 24px 24px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.biz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* Card header with icon + description */
.biz-card-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 42px;
}

.biz-card-header-icon {
    color: var(--wind-gray);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.biz-card-header-text {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}

.biz-card-header-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.biz-card-info-icon {
    margin-left: auto;
    color: #999;
    font-size: 16px;
    cursor: help;
    flex-shrink: 0;
}

/* Highlight area - large feature text */
.biz-highlight {
    text-align: center;
    margin-bottom: 12px;
    padding: 8px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.biz-highlight-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--wind-orange);
}

.biz-highlight-unit {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.1;
}

.biz-highlight-unit.orange {
    color: var(--wind-orange);
}

.biz-highlight-sub {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 2px;
}

.biz-highlight-sub span {
    font-weight: 700;
}

/* 5G / Fibra badge */
.biz-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.biz-badge-5g {
    background: linear-gradient(135deg, #ff6900 0%, #e23e0a 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.biz-badge-fibra {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00a651;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.biz-badge-fibra span:first-child {
    font-size: 16px;
    font-weight: 800;
}

.biz-badge-fibra span:last-child {
    font-size: 8px;
    font-weight: 600;
}

.biz-badge-fwa {
    background: linear-gradient(135deg, #00a651 0%, #008a43 50%, #e23e0a 50%, #e23e0a 100%);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

/* Separator line */
.biz-separator {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
}

/* Price area */
.biz-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.biz-price-left {
    display: flex;
    flex-direction: column;
}

.biz-price-label {
    font-size: 12px;
    color: var(--wind-orange);
    font-weight: 600;
    margin-bottom: 2px;
}

.biz-price-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.biz-price-amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--wind-orange);
    line-height: 1;
}

.biz-price-cents {
    font-size: 20px;
    font-weight: 700;
    color: var(--wind-orange);
}

.biz-price-period {
    font-size: 13px;
    color: var(--text-gray);
    margin-left: 2px;
}

.biz-price-right {
    font-size: 12px;
    color: var(--text-dark);
    text-align: right;
    line-height: 1.4;
}

.biz-price-right strong {
    font-weight: 700;
}

/* CTA button */
.biz-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #6a1b9a;
    color: var(--white);
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin-top: auto;
}

.biz-cta:hover {
    background: #4a148c;
    transform: scale(1.02);
}

/* Mobile section uses orange buttons */
.section-mobile-biz .biz-cta {
    background: var(--wind-orange);
}

.section-mobile-biz .biz-cta:hover {
    background: var(--wind-orange-dark);
}

/* "See all" dark card */
.biz-card-all {
    background: #6e6e73;
    border-radius: 20px;
    min-width: 240px;
    max-width: 280px;
    flex: 1 0 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    text-align: center;
    scroll-snap-align: start;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.biz-card-all:hover {
    background: #5a5a5f;
    transform: translateY(-4px);
}

.biz-card-all-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.biz-card-all-icon i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.biz-card-all-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 12px;
}

.biz-card-all-badge {
    margin-top: 8px;
}

/* Section subtitle for business */
.biz-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Dot decoration */
.biz-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--wind-orange);
    margin: 30px auto 0;
}

/* Tooltip fix inside biz cards — show BELOW the icon, always on top */
.biz-card {
    position: relative;
}

.biz-card:has(.info-tooltip:hover) ,
.biz-card:has(.info-tooltip.active) {
    z-index: 100;
}

.biz-card .info-tooltip .info-tooltip-text {
    bottom: auto;
    top: calc(100% + 10px);
    z-index: 9999;
}

.biz-card .info-tooltip .info-tooltip-text::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--wind-gray-dark);
}

/* Tooltip mobile: allinea a destra per non uscire dallo schermo */
@media (max-width: 768px) {
    .biz-card .info-tooltip .info-tooltip-text {
        left: auto;
        right: -8px;
        transform: none;
        width: 220px;
        max-width: calc(100vw - 60px);
    }

    .biz-card .info-tooltip .info-tooltip-text::after {
        left: auto;
        right: 10px;
        transform: none;
    }
}

/* Responsive business cards */
@media (max-width: 992px) {
    .biz-highlight-number {
        font-size: 48px;
    }

    .biz-highlight-unit {
        font-size: 24px;
    }

    .section-fisso-biz,
    .section-mobile-biz {
        padding: 60px 0 50px;
    }
}

@media (max-width: 768px) {
    .biz-offers-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .biz-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 260px;
        padding: 24px 20px 20px;
    }

    .biz-section-title {
        font-size: 22px;
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .biz-highlight-number {
        font-size: 44px;
    }

    .biz-price-amount {
        font-size: 34px;
    }

    .biz-dot {
        width: 20px;
        height: 20px;
        margin-top: 24px;
    }

    .section-fisso-biz,
    .section-mobile-biz {
        padding: 50px 0 40px;
    }

    .section-fisso-biz::before,
    .section-mobile-biz::before {
        background-image: none;
        background-color: #f0f0f2;
    }
}

@media (max-width: 580px) {
    .biz-card {
        flex: 1 1 100%;
        min-width: unset;
    }

    .biz-section-title {
        font-size: 20px;
    }

    .biz-highlight-number {
        font-size: 40px;
    }

    .biz-highlight-unit {
        font-size: 22px;
    }

    .biz-price-amount {
        font-size: 30px;
    }

    .biz-price-cents {
        font-size: 16px;
    }
}

/* ===== BIZ CARD EXTRAS ===== */
/* Ribbon "Best seller" / "Premium" sopra alla card */
.biz-card {
    position: relative;
}

.biz-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6900 0%, #e23e0a 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(226, 62, 10, 0.35);
    white-space: nowrap;
    z-index: 2;
}

.biz-ribbon--premium {
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%);
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.35);
}

/* Sottotitolo introduttivo della sezione */
.biz-section-intro {
    text-align: center;
    font-size: 15px;
    color: var(--text-gray);
    max-width: 760px;
    margin: -24px auto 56px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .biz-section-intro {
        font-size: 14px;
        margin: -16px auto 40px;
        padding: 0 12px;
    }
}

/* Mini-badge list dentro la card */
.biz-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.biz-card-features li {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.biz-card-features li i {
    color: var(--wind-orange);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Sezione note commerciali / condizioni in accordion */
.section-conditions {
    padding: 50px 0 60px;
    background: var(--wind-gray-light);
}

.section-conditions .container {
    max-width: 900px;
}

.conditions-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.conditions-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conditions-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.conditions-item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.conditions-item summary::-webkit-details-marker {
    display: none;
}

.conditions-item summary::after {
    content: "+";
    font-size: 22px;
    color: var(--wind-orange);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.conditions-item[open] summary::after {
    content: "-";
}

.conditions-content {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.conditions-content ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.conditions-content li {
    margin-bottom: 6px;
}

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

.offer-card {
    animation: fadeIn 0.5s ease forwards;
}

.offers-grid .offer-card:nth-child(1) { animation-delay: 0.1s; }
.offers-grid .offer-card:nth-child(2) { animation-delay: 0.2s; }
.offers-grid .offer-card:nth-child(3) { animation-delay: 0.3s; }
.offers-grid .offer-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background-color: var(--wind-gray-light);
}

.thank-you-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 60px 50px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease forwards;
}

.thank-you-icon {
    margin-bottom: 24px;
}

.thank-you-icon i {
    font-size: 72px;
    color: #2E7D32;
}

.thank-you-card h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.thank-you-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    text-align: left;
    background: var(--wind-gray-light);
    padding: 24px 28px;
    border-radius: 14px;
}

.thank-you-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.thank-you-info-item i {
    font-size: 18px;
    color: var(--wind-orange);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.thank-you-info-item a {
    color: var(--wind-orange);
    text-decoration: none;
}

.thank-you-info-item a:hover {
    text-decoration: underline;
}

.thank-you-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wind-orange);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.thank-you-back:hover {
    background: var(--wind-orange-dark);
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .thank-you-card {
        padding: 40px 24px;
    }

    .thank-you-card h1 {
        font-size: 24px;
    }

    .thank-you-icon i {
        font-size: 56px;
    }

    .thank-you-message {
        font-size: 14px;
    }

    .thank-you-info {
        padding: 18px 20px;
    }

    .thank-you-info-item {
        font-size: 14px;
    }
}
/* =========================================================
   Overrides co-brand Energia-Risparmio.it
   Applicati dopo lo stile base per:
   - Gerarchia di brand in navbar/footer (agenzia primaria, WINDTRE secondario)
   - Hero riscritto dal punto di vista dell'agenzia
   - Palette primaria Energia-Risparmio (navy + giallo), arancio WINDTRE come accento
   - Trust strip, sezione "Perché noi", divisore fra sezioni offerte
   ========================================================= */

:root {
    --er-navy: #0d2a57;
    --er-navy-dark: #081d3d;
    --er-navy-light: #1a3d7a;
    --er-yellow: #f5b027;
    --er-yellow-dark: #d69618;
}

/* ===== NAVBAR: logo agenzia primario, WINDTRE co-brand secondario ===== */
.main-nav {
    padding: 12px 0;
    border-bottom: 3px solid var(--er-yellow);
}

.nav-content {
    gap: 20px;
}

.logos {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-er {
    height: 34px;
    width: auto;
    display: block;
}

.cobrand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 18px;
    border-left: 1px solid #e5e5e5;
}

.cobrand-label {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    line-height: 1.2;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.cobrand-label strong {
    color: var(--er-navy);
    font-weight: 700;
}

.main-nav .logo-wind {
    height: 26px;
}

/* Override colore link nav: da arancio WINDTRE a navy agenzia */
.nav-link {
    color: var(--er-navy);
}

.nav-link:hover {
    background-color: rgba(13, 42, 87, 0.08);
    color: var(--er-navy-light);
}

.mobile-menu-btn {
    color: var(--er-navy);
}

.mobile-menu {
    background-color: var(--er-navy);
}

/* ===== HERO: copy e colori agenzia, WINDTRE resta accento ===== */
.hero {
    background:
        linear-gradient(135deg, rgba(247, 249, 252, 0.85) 0%, rgba(238, 242, 248, 0.55) 60%, rgba(238, 242, 248, 0.2) 100%),
        url('Immagini/hero.png') center center / cover no-repeat;
    padding: 70px 0 90px;
}

.hero-content {
    padding-top: 20px;
}

.hero-title {
    color: var(--er-navy);
    font-size: 44px;
    text-shadow: none;
    max-width: 820px;
    margin: 0 auto 20px;
}

.hero-title .brand-wind {
    display: inline;
    font-size: inherit;
    color: var(--wind-orange);
}

.hero-subtitle {
    color: #3a4a65;
    text-shadow: none;
    font-size: 19px;
    max-width: 680px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.hero-cta-primary {
    background: var(--wind-orange);
    color: var(--white);
}

.hero-cta-primary:hover {
    background: var(--wind-orange-dark);
    transform: translateY(-2px);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--er-navy);
    border: 2px solid var(--er-navy);
}

.hero-cta-secondary:hover {
    background: var(--er-navy);
    color: var(--white);
}

/* ===== SFONDI SEZIONI OFFERTE ===== */
.section-fisso-biz::before {
    background-image: url('Immagini/corpo.png');
}

.section-mobile-biz::before {
    background-image: url('Immagini/corpo1.png');
}

/* ===== TITOLI SEZIONI: uniformi al colore dell'hero ===== */
.biz-section-title,
.section-title {
    color: var(--er-navy);
}

/* ===== DIVISORE TRA LE DUE SEZIONI OFFERTE ===== */
.section-divider {
    background: var(--white);
    padding: 28px 0;
    position: relative;
    z-index: 2;
}

.section-divider .container {
    display: flex;
    align-items: center;
    gap: 18px;
}

.section-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 42, 87, 0.18), transparent);
}

.section-divider-ornament {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--er-yellow);
    color: var(--er-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(245, 176, 39, 0.35);
}

@media (max-width: 768px) {
    .section-divider {
        padding: 20px 0;
    }
    .section-divider-ornament {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== TRUST STRIP: proposta di valore agenzia ===== */
.trust-strip {
    background: var(--er-navy);
    color: var(--white);
    padding: 36px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    font-size: 26px;
    color: var(--er-yellow);
    margin-bottom: 4px;
}

.trust-item-value {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

.trust-item-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
}

/* ===== SEZIONE "PERCHÉ NOI" ===== */
.why-us {
    background: var(--white);
    padding: 70px 0;
}

.why-us-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--er-navy);
    margin-bottom: 14px;
}

.why-us-lead {
    text-align: center;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #f7f9fc;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    padding: 28px 24px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 42, 87, 0.08);
    border-color: var(--er-yellow);
}

.why-card i {
    font-size: 28px;
    color: var(--er-yellow);
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 17px;
    color: var(--er-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.why-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.55;
}

/* ===== FOOTER: co-brand + disclaimer legale esplicito ===== */
.footer-logos .footer-logo-er {
    height: 36px;
    margin-bottom: 14px;
    display: block;
}

.footer-cobrand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.footer-cobrand .logo-wind-footer {
    height: 22px;
    opacity: 0.9;
}

.footer-cobrand span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.footer-disclaimer {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 520px;
}

/* ===== FORM HOOK & CTA ===== */
.section-contatti .section-title span,
.why-us-title span {
    color: var(--wind-orange);
}

/* ===== FOOTER: navy al posto del grigio scuro (coerenza palette) ===== */
.footer {
    background-color: var(--er-navy);
}

.footer-contact h4,
.footer-contact i {
    color: var(--er-yellow);
}

/* ===== FORM: identità agenzia (navy) al posto dell'arancio Wind ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--er-navy);
    box-shadow: 0 0 0 3px rgba(13, 42, 87, 0.12);
}

.form-submit {
    background: var(--er-navy);
}

.form-submit:hover {
    background: var(--er-navy-light);
}

.privacy-check input:checked ~ .privacy-checkmark {
    background: var(--er-navy);
    border-color: var(--er-navy);
}

.privacy-check input:focus ~ .privacy-checkmark {
    box-shadow: 0 0 0 3px rgba(13, 42, 87, 0.15);
}

.privacy-label a {
    color: var(--er-navy);
}

.form-success i {
    color: var(--er-navy);
}

/* ===== MICRODETTAGLI: biz-dot e uniformità border-radius ===== */
.biz-dot {
    width: 120px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--er-yellow) 50%, transparent 100%);
    margin: 40px auto 0;
}

.why-card {
    border-radius: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 34px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .cobrand {
        padding-left: 10px;
        gap: 6px;
    }
    .cobrand-label {
        font-size: 9px;
    }
    .main-nav .logo-wind {
        height: 22px;
    }
    .logo-er {
        height: 28px;
    }
    .hero {
        padding: 40px 0 60px;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .why-us {
        padding: 50px 0;
    }
    .why-us-title {
        font-size: 24px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .trust-strip {
        padding: 28px 0;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .trust-item-value {
        font-size: 18px;
    }
    .trust-item-label {
        font-size: 12px;
    }
}
