/* =====================================================
   HERO HÔTELLERIE
===================================================== */

.hero-enterprise--sector {
    position: relative;
    background-image: url("../../images/hotellerie.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: var(--hero-min-height, 85vh);
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-enterprise--sector .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.hero-enterprise--sector h1 {
    max-width: 900px;
}

.hero-enterprise--sector .hero-lead {
    max-width: 640px;
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-enterprise--sector .hero-eyebrow {
    color: rgba(255, 255, 255, 0.85);
}


/* =====================================================
   INTRO VALEUR
===================================================== */

.sector-intro {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, #F1F5F9 0%, #FFFFFF 100%);
}

.sector-intro .container-narrow {
    background: #ffffff;
    padding: 3rem 3.5rem;
    border-radius: 20px;
    box-shadow:
        0 12px 32px rgba(15, 23, 42, 0.06),
        inset 0 0 0 1px #E5E7EB;
}

.sector-intro .lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 1.1rem;
}

.sector-intro p {
    max-width: 720px;
    margin-bottom: 1rem;
}


/* =====================================================
   INTRO — TEXTE + IMAGE
===================================================== */

.sector-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.sector-intro-text p {
    max-width: 520px;
}

.sector-intro-media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}


/* =====================================================
   PREUVE + BÉNÉFICES
===================================================== */

.sector-benefits {
    background: #F9FAFB;
    padding: 1.25rem 0 3.5rem;
}

/* --- Preuve sociale --- */

.sector-proof {
    text-align: center;
    padding-bottom: 0.75rem;
}

.proof-text {
    font-size: 1.05rem;
    margin: 0;
    color: var(--text-dark);
}

.proof-connector {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

/* --- Header bénéfices --- */

.benefits-header {
    max-width: 760px;
    margin: 1rem auto 0.9rem;
    text-align: center;
}

.benefits-header h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    letter-spacing: -0.015em;
}

.benefits-header p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* --- Cartes --- */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}


/* =====================================================
   POURQUOI VERDANT
===================================================== */

.why-verdant-hotel {
    position: relative;
    padding: 6rem 0;
    background: url("../../images/hotel-room-dark.jpg") center / cover no-repeat;
    color: #ffffff;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.85)
    );
}

.why-verdant-hotel .container {
    position: relative;
    z-index: 2;
}

.why-header {
    max-width: 720px;
    margin-bottom: 3.5rem;
}

.why-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.why-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 0;
}


/* =====================================================
   GRID — POURQUOI VERDANT
===================================================== */

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

.why-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
    .benefits-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .sector-intro-grid {
        grid-template-columns: 1fr;
    }

    .sector-intro-media {
        order: -1;
    }

    .hero-enterprise--sector {
        min-height: var(--hero-min-height, 85vh);
    }
}

@media (max-width: 640px) {
    .sector-intro {
        padding: 3.5rem 0 2rem;
    }

    .sector-intro .container-narrow {
        padding: 2rem 1.75rem;
    }

    .sector-benefits {
        padding: 1.1rem 0 2.75rem;
    }

    .benefits-header h2 {
        font-size: 1.6rem;
    }
}

/* =====================================================
 POURQUOI VERDANT — CENTRAGE
===================================================== */

.why-header {
    max-width: 900px;          /* un peu plus large pour le centrage */
    margin: 0 auto 3.5rem;     /* centre horizontalement */
    text-align: center;        /* centre le texte */
}

/* =====================================================
 TECHNOLOGIE — PUISSANCE THERMOSTATS
===================================================== */

.verdant-power {
    padding: 6rem 0;
    background: linear-gradient(
        to bottom,
        #f6f8f9,
        #ffffff
    );
}

.power-header {
    max-width: 760px;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2E7D32;
    font-weight: 600;
}

.power-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.power-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- Grille --- */

.power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Cartes --- */

.power-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    border: 1px solid #eef1f4;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.power-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

.power-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.power-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* --- Responsive --- */

@media (max-width: 1024px) {
    .power-grid {
        grid-template-columns: 1fr;
    }

    .verdant-power {
        padding: 4.5rem 0;
    }
}

/* =====================================================
 TECHNOLOGIE — ICÔNES CARTES
===================================================== */

.power-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.power-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =====================================================
 TECHNOLOGIE — HEADER CENTRÉ
===================================================== */

.power-header {
    max-width: 900px;
    margin: 0 auto 3.5rem auto; /* centre le bloc */
    text-align: center;         /* centre le texte */
}

<div class="benefit-card">
    <div class="benefit-icon">
        <!-- Icône automatisation -->
        <svg viewBox="0 0 24 24" aria-hidden="true">
            <circle cx="12" cy="12" r="3"/>
            <path d="M19.4 15a1.6 1.6 0 0 0 .3 1.7l.1.1-1.6 2.8-0.2-.1a1.6 1.6 0 0 0-1.9.4l-.1.1a1.6 1.6 0 0 1-2.7-1.1V19a1.6 1.6 0 0 0-1.3-1.6h-.2a1.6 1.6 0 0 1 0-3.2h.2A1.6 1.6 0 0 0 13 11V10.9a1.6 1.6 0 0 1 2.7-1.1l.1.1a1.6 1.6 0 0 0 1.9.4l.2-.1 1.6 2.8-.1.1a1.6 1.6 0 0 0-.3 1.7Z"/>
        </svg>
    </div>
    <h3>Automatisation intelligente</h3>
    <p>
        Algorithmes brevetés et détection
        d’occupation en temps réel.
    </p>
</div>
.benefit-card:hover .benefit-icon {
    transform: translateY(-2px);
    transition: transform 0.25s ease;
}


/* =====================================================
 BÉNÉFICES — ICÔNES (CORRECTION)
===================================================== */

.benefit-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: none !important;          /* ⬅️ empêche le remplissage noir */
    stroke: currentColor !important;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =====================================================
 INTÉGRATIONS — DESIGN
===================================================== */

.hotel-integrations {
    padding: 6rem 0;
    background: #ffffff;
}

.integrations-header {
    max-width: 760px;
    margin-bottom: 3.5rem;
}

.integrations-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.integrations-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- Grille --- */

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Cartes --- */

.integration-card {
    background: #F9FAFB;
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.integration-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.integration-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.integration-card p:last-child {
    margin-bottom: 0;
}

/* --- Icônes --- */

.integration-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.integration-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Responsive --- */

@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .hotel-integrations {
        padding: 4.5rem 0;
    }
}

/* =====================================================
 INTÉGRATIONS — HEADER CENTRÉ
===================================================== */

.integrations-header {
    max-width: 900px;
    margin: 0 auto 3.5rem auto; /* centre le bloc */
    text-align: center;         /* centre le texte */
}

.integrations-header .section-eyebrow {
    display: inline-block;
}


/* =====================================================
 VERDANT PLUS — SERVICE PREMIUM
===================================================== */

.verdant-plus {
    padding: 6rem 0;
    background: linear-gradient(
        180deg,
        #F8FAFC 0%,
        #FFFFFF 100%
    );
}

/* Header */
.plus-header {
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.plus-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.plus-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Grille */
.plus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Cartes */
.plus-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.plus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.plus-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.plus-card p:last-child {
    margin-bottom: 0;
}

/* Icônes */
.plus-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.plus-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Carte mise en avant */
.plus-card-highlight {
    background: linear-gradient(
        180deg,
        #F0FDF4 0%,
        #FFFFFF 100%
    );
    border-color: #BBF7D0;
}

/* Responsive */
@media (max-width: 1024px) {
    .plus-grid {
        grid-template-columns: 1fr;
    }

    .verdant-plus {
        padding: 4.5rem 0;
    }
}
/* =====================================================
 VERDANT PLUS — BACKGROUND PREMIUM (RECOMMANDÉ)
===================================================== */

.verdant-plus {
    padding: 6rem 0;
    background: linear-gradient(
        180deg,
        #F0FDF4 0%,
        #FFFFFF 100%
    );
}

/* =====================================================
 FAQ HÔTELLERIE — DESIGN PREMIUM
===================================================== */

.hotel-faq {
    padding: 6rem 0;
    background: linear-gradient(
        180deg,
        #F8FAFC 0%,
        #FFFFFF 100%
    );
}

/* Header */
.faq-header {
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.faq-header h2 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.faq-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Liste */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

/* Item */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

/* Question */
.faq-item summary {
    cursor: pointer;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    list-style: none;
    position: relative;
}

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

/* Icône + / - */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #2E7D32;
}

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

/* Réponse */
.faq-item p {
    padding: 0 2rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 640px) {
    .faq-item summary {
        padding: 1.25rem 1.5rem;
    }

    .faq-item p {
        padding: 0 1.5rem 1.25rem;
    }
}

/* =====================================================
 FAQ HÔTELLERIE — BACKGROUND NOIR PREMIUM
===================================================== */

.hotel-faq {
    padding: 6rem 0;
    background: linear-gradient(
        180deg,
        #0F172A 0%,
        #020617 100%
    );
    color: #ffffff;
}

/* Header */
.hotel-faq .faq-header h2 {
    color: #ffffff;
}

.hotel-faq .faq-lead {
    color: rgba(255, 255, 255, 0.85);
}

/* Cartes FAQ */
.hotel-faq .faq-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Questions */
.hotel-faq .faq-item summary {
    color: #ffffff;
}

/* Icône + / - */
.hotel-faq .faq-item summary::after {
    color: #4ADE80; /* vert Verdant */
}

/* Réponses */
.hotel-faq .faq-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* Espacement mobile */
@media (max-width: 640px) {
    .hotel-faq {
        padding: 4.5rem 0;
    }
}
.hotel-faq::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    margin: 3rem auto 0;
    border-radius: 2px;
}
/* =====================================================
 CTA FINAL — DESIGN PREMIUM
===================================================== */

.hotel-cta-final {
    padding: 6rem 0;
    background: linear-gradient(
        180deg,
        #020617 0%,
        #0F172A 100%
    );
    color: #ffffff;
}

.cta-final-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-inner h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.cta-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Bouton */
.cta-actions {
    margin-bottom: 1.25rem;
}

.btn-large {
    padding: 1.1rem 2.75rem;
    font-size: 1.05rem;
    border-radius: 999px;
}

/* Micro-réassurance */
.cta-reassurance {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 640px) {
    .hotel-cta-final {
        padding: 4.5rem 0;
    }

    .cta-final-inner h2 {
        font-size: 1.9rem;
    }

    .cta-lead {
        font-size: 1.05rem;
    }
}


.one-line-title {
  white-space: nowrap;
}
<h1 class="one-line-title">
  Augmentez vos économies avec Energywell Plus
</h1>
.one-line-title {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .one-line-title {
    white-space: normal;
  }
}


.hero-title-single-line {
  white-space: nowrap;
}
.hero-title-single-line {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}


.sector-benefits {
    padding: 0.75rem 0 3rem;
}

.benefits-header {
    margin: 0.75rem auto 0.5rem;
}

.benefits-grid {
    margin-top: 0.75rem;
}
.why-header::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin: 1.25rem auto 0;
    background: rgba(255,255,255,0.35);
    border-radius: 2px;
}


.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;          /* centre horizontalement */
    display: flex;               /* centre le SVG */
    align-items: center;         /* vertical */
    justify-content: center;     /* horizontal */
    color: #2E7D32;
}
.power-icon,
.integration-icon,
.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.08);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Centrage parfait des icônes dans les cartes */
.benefit-icon,
.integration-icon,
.power-icon,
.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.benefit-icon,
.integration-icon,
.power-icon,
.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

/* =====================================================
   BÉNÉFICES — TEXTE CENTRÉ
===================================================== */

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

.benefit-card h3 {
    margin-left: auto;
    margin-right: auto;
}

.benefit-card p {
    margin-left: auto;
    margin-right: auto;
}
.integration-card,
.plus-card,
.power-card {
    text-align: center;
}
.benefit-card h3 {
    margin-top: 0.75rem;
}

.benefit-card p {
    margin-top: 0.5rem;
}


.why-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.why-lead {
  max-width: 760px;
  margin: 0.75rem auto 0; /* centre horizontalement le sous-texte */
  text-align: center;
}
.why-lead {
  margin-top: 0.5rem;
}


.why-card {
  text-align: center;
}
.why-card p {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}
.power-header,
.integrations-header,
.plus-header,
.faq-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.benefit-card,
.integration-card,
.plus-card {
  text-align: center;
}
.benefit-card p,
.integration-card p,
.plus-card p {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}
.hotel-faq .faq-header {
  text-align: center;
}
.benefit-card,
.integration-card,
.plus-card,
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.power-header,
.power-header-text {
    text-align: center;
}

.power-lead,
.power-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.plus-header,
.plus-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.integrations-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.integrations-header {
    text-align: center;
}

.integrations-lead {
    margin-left: auto;
    margin-right: auto;
}
.hero-enterprise .hero-overlay {
  background: rgba(255, 255, 255, 0.15);
}

/* =====================================================
   HEADER — STRUCTURE BLOQUÉE (FINAL)
===================================================== */
.header-main {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    height: 72px;
    min-height: 72px;
}

.header-container {
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}

.header-nav a {
    flex-shrink: 0;
}

@media (min-width: 1600px) {
    .header-container {
        padding-left: 48px;
        padding-right: 48px;
    }
}


.hero {
  min-height: 100svh; /* moderne */
  /* ou */
  min-height: -webkit-fill-available;
}


/* === FIX HERO MOBILE VISIBILITY === */
@media (max-width: 768px) {
  .hero p,
  .hero h1 + p,
  .hero .subtitle,
  .hero-description {
    color: #0b1c2d !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
