/* =========================================================
   SciatiEase — Custom Stylesheet
   Mobirise structure preserved, ZERO Mobirise dependencies
   - Blue title sections (info3)
   - Offer banner (red highlight)
   - Pricing cards with BEST VALUE flag
   - Same Roboto font as BackBiome
   ========================================================= */

:root {
    --se-primary:    #0d4f8b;
    --se-primary-d:  #093a68;
    --se-primary-l:  #1a6bb0;
    --se-secondary:  #2a8a3e;     /* CTA green like Mobirise btn-secondary */
    --se-secondary-d:#1e6c2e;
    --se-danger:     #e7352c;
    --se-danger-d:   #c12822;
    --se-warning:    #f5b400;
    --se-text:       #232323;
    --se-text-soft:  #4f5460;
    --se-muted:      #6f7689;
    --se-bg-soft:    #f5f7fb;
    --se-border:     #e2e6ee;
    --se-success:    #2cb673;
    --se-blue-band-bg: linear-gradient(90deg, #0d4f8b 0%, #1a6bb0 50%, #0d4f8b 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* =========================================================
   BASE TYPOGRAPHY (Mobirise mbr-fonts-style)
   ========================================================= */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--se-text);
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

.mbr-fonts-style { font-family: 'Roboto', sans-serif; }
p { font-family: 'Roboto', sans-serif; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

/* =========================================================
   MOBIRISE DISPLAY UTILITIES (display-1 → display-7)
   ========================================================= */
.display-1 { font-size: 2.6rem; font-weight: 700; line-height: 1.2; }
.display-2 { font-size: 2rem;   font-weight: 700; line-height: 1.25; }
.display-3 { font-size: 1.6rem; font-weight: 600; line-height: 1.3; }
.display-4 { font-size: 1.05rem; font-weight: 500; line-height: 1.5; }
.display-5 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
.display-7 { font-size: 1.05rem; font-weight: 400; line-height: 1.7; }
@media (max-width: 991px) {
    .display-1 { font-size: 2.1rem; }
    .display-2 { font-size: 1.6rem; }
    .display-5 { font-size: 1.25rem; }
}
@media (max-width: 576px) {
    .display-1 { font-size: 1.6rem; }
    .display-2 { font-size: 1.3rem; }
    .display-5 { font-size: 1.1rem; }
}

/* =========================================================
   GENERIC HELPERS
   ========================================================= */
.align-center { text-align: center; }
.text-primary { color: var(--se-primary) !important; }
.text-white { color: #fff !important; }
.text-black { color: #1a1a1a !important; }
.mbr-black { color: #1a1a1a; }
.mbr-white { color: #fff; }
.mbr-text { color: var(--se-text); }
.mbr-section-title, .mbr-section-subtitle, .card-title { color: var(--se-text); }
img { max-width: 100%; height: auto; }
a { transition: color 0.2s ease; }
.w-100 { width: 100%; }
.mbr-iconfont { font-style: normal; }
.mbr-iconfont-btn { margin-right: 0.45rem; }

/* =========================================================
   BUTTONS (Mobirise btn-secondary / btn-primary / btn-danger)
   ========================================================= */
.btn {
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border-width: 2px;
}
.btn-secondary {
    background: var(--se-secondary);
    border-color: var(--se-secondary);
    color: #fff !important;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: var(--se-secondary-d);
    border-color: var(--se-secondary-d);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(42, 138, 62, 0.35);
}
.btn-primary {
    background: var(--se-primary);
    border-color: var(--se-primary);
    color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--se-primary-d);
    border-color: var(--se-primary-d);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(13, 79, 139, 0.35);
}
.btn-danger {
    background: var(--se-danger);
    border-color: var(--se-danger);
    color: #fff !important;
    font-weight: 700;
}
.btn-danger:hover, .btn-danger:focus {
    background: var(--se-danger-d);
    border-color: var(--se-danger-d);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(231, 53, 44, 0.4);
}
.mbr-section-btn { display: inline-block; }
.mbr-section-btn .btn { margin: 0.25rem 0.4rem 0.25rem 0; }
.navbar-buttons.mbr-section-btn { display: flex; }

/* =========================================================
   NAVBAR (menu menu2) — proper sticky working
   ========================================================= */
.menu.menu2 {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
}
.navbar-dropdown {
    background: #fff;
    border-bottom: 1px solid var(--se-border);
    padding: 0.85rem 0;
    box-shadow: 0 2px 8px rgba(13, 79, 139, 0.06);
    transition: box-shadow 0.25s ease;
}
.navbar-dropdown.scrolled { box-shadow: 0 4px 14px rgba(13, 79, 139, 0.12); }
.navbar-dropdown .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.navbar-brand { flex-shrink: 0; margin: 0; padding: 0; }
.navbar-brand .navbar-caption {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 1.6rem !important;
    color: var(--se-primary) !important;
    text-decoration: none;
    letter-spacing: -0.5px;
    line-height: 1;
}
.navbar-brand .navbar-caption:hover { color: var(--se-primary-d) !important; }

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}
.navbar-nav.nav-dropdown {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-item .nav-link {
    color: var(--se-text) !important;
    font-weight: 600;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.95rem !important;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}
.nav-item .nav-link:hover {
    color: var(--se-primary) !important;
    background: rgba(13, 79, 139, 0.06);
}
.nav-item .nav-link.active { color: var(--se-primary) !important; }
.nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--se-primary);
    border-radius: 2px;
}

.navbar-toggler {
    display: none;
    border: none;
    background: transparent;
    padding: 0.5rem;
    cursor: pointer;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }
.hamburger {
    width: 26px;
    height: 22px;
    position: relative;
    display: block;
}
.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--se-primary);
    border-radius: 2px;
    left: 0;
    transition: 0.25s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2), .hamburger span:nth-child(3) { top: 9px; }
.hamburger span:nth-child(4) { top: 18px; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1),
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(4) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { transform: rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) { transform: rotate(-45deg); }

.navbar-buttons.mbr-section-btn {
    display: flex;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.navbar-buttons .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.92rem;
}

@media (max-width: 1199px) {
    .nav-item .nav-link { padding: 0.5rem 0.65rem !important; font-size: 0.9rem !important; }
}
@media (max-width: 991px) {
    .navbar-toggler { display: block; }
    .navbar-dropdown .container { flex-wrap: wrap; }
    .navbar-collapse {
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin-top: 0.5rem;
    }
    .navbar-collapse.show {
        max-height: 600px;
        opacity: 1;
        padding: 0.85rem 0 0.25rem;
        border-top: 1px solid var(--se-border);
    }
    .navbar-nav.nav-dropdown { flex-direction: column; width: 100%; gap: 0; }
    .navbar-nav.nav-dropdown .nav-item { width: 100%; border-bottom: 1px solid var(--se-border); }
    .navbar-nav.nav-dropdown .nav-item:last-child { border-bottom: none; }
    .nav-item .nav-link {
        padding: 0.85rem 0.5rem !important;
        font-size: 1rem !important;
        border-radius: 0;
    }
    .nav-item .nav-link:hover { background: var(--se-bg-soft); }
    .nav-item .nav-link.active::after { display: none; }
    .navbar-buttons.mbr-section-btn { margin: 0.85rem 0 0.25rem; width: 100%; }
    .navbar-buttons .btn { width: 100%; padding: 0.75rem 1rem; }
}

/* =========================================================
   OFFER BANNER (after menu — high impact, keyword-targeted)
   Matches the uploaded reference image
   ========================================================= */
.offer-banner-section {
    background: #fff;
    padding: 1.4rem 0 1.2rem;
    border-bottom: 1px solid var(--se-border);
    text-align: center;
}
.offer-banner-text {
    max-width: 1100px;
    margin: 0 auto;
}
.offer-line-1 {
    font-size: 1.85rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    letter-spacing: -0.3px;
    line-height: 1.25;
}
.offer-line-1 .highlight {
    color: var(--se-danger);
}
.offer-line-2 {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--se-danger);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.25;
}
@media (max-width: 991px) {
    .offer-line-1, .offer-line-2 { font-size: 1.35rem; }
}
@media (max-width: 576px) {
    .offer-banner-section { padding: 1rem 0; }
    .offer-line-1, .offer-line-2 { font-size: 1.05rem; }
}

/* =========================================================
   HEADER14 — Hero
   ========================================================= */
.header14 {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f4f8fc 0%, #e8f1fa 100%);
}
.header14 .image-wrapper { text-align: center; }
.header14 .image-wrapper img {
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(13, 79, 139, 0.18);
}
.header14 .text-wrapper { padding: 0 1rem; }
.header14 h1.mbr-section-title {
    color: var(--se-primary-d);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}
.hero-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.85rem 0;
    color: var(--se-text-soft);
    font-size: 1rem;
}
.hero-rating .rating-stars { color: var(--se-warning); font-size: 1.1rem; }
.hero-rating .rating-text strong { color: var(--se-primary-d); }

.hero-price-strip {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #fff8e6;
    border: 1px solid #ffe7a0;
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    margin: 0.4rem 0 0.5rem;
    font-size: 0.95rem;
}
.hero-price-strip .price-was { color: var(--se-text-soft); }
.hero-price-strip .price-was strike { color: var(--se-muted); }
.hero-price-strip .price-now { color: var(--se-danger); font-weight: 800; font-size: 1.1rem; }
.hero-price-strip .price-save {
    background: var(--se-danger);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .header14 { padding: 2.25rem 0; }
    .header14 .image-wrapper { margin-bottom: 1.5rem; }
    .header14 .image-wrapper img { max-width: 320px; margin: 0 auto; }
    .header14 .text-wrapper { padding: 0; }
}

/* =========================================================
   INFO3 — TITLE BANDS (BLUE — every title gets one)
   ========================================================= */
.info3 {
    background: var(--se-blue-band-bg);
    padding: 2.5rem 0;
}
.info3 .card { background: transparent; border: none; }
.info3 .card-wrapper { background: transparent; }
.info3 .card-box { background: transparent; }
.info3 .card-title {
    color: #ffffff !important;
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    letter-spacing: -0.3px;
}
.info3 .mbr-text {
    color: rgba(255,255,255,0.92) !important;
    margin: 0.5rem 0 0;
}
.info3 .card-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    margin: 0.85rem auto 0;
}
@media (max-width: 768px) {
    .info3 { padding: 1.75rem 0; }
    .info3 .card-title { font-size: 1.4rem; }
}

/* =========================================================
   GALLERY3 — Trust badges row
   ========================================================= */
.gallery3 {
    padding: 3rem 0;
    background-color: var(--se-bg-soft);
}
.gallery3 .item { margin-bottom: 1.5rem; }
.gallery3 .item-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--se-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery3 .item-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(13, 79, 139, 0.10);
}
.gallery3 .item-img img {
    max-height: 110px;
    margin: 0 auto 1rem;
    object-fit: contain;
    display: block;
}
.gallery3 .item-title {
    color: var(--se-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.gallery3 .item-content p {
    font-size: 0.95rem;
    color: var(--se-text-soft);
    margin: 0;
}

/* =========================================================
   IMAGE2 — image+text rows
   ========================================================= */
.image2 { padding: 3rem 0; background: #fff; }
.image2 .image-wrapper img {
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(13, 79, 139, 0.12);
}
.image2 .text-wrapper {
    padding-left: 1rem;
}
.image2 .mbr-text { color: var(--se-text-soft); line-height: 1.75; }

@media (max-width: 991px) {
    .image2 .text-wrapper { padding-left: 0; padding-top: 1.5rem; }
}

/* =========================================================
   CONTENT5 — text content blocks
   ========================================================= */
.content5 {
    padding: 2.5rem 0 3rem;
    background: #fff;
}
.content5 .mbr-section-subtitle {
    color: var(--se-text);
    line-height: 1.75;
}
.content5 .mbr-text {
    color: var(--se-text-soft);
    line-height: 1.75;
}
.content5 strong { color: var(--se-text); }

/* =========================================================
   TEAM1 — Reviews + Pricing row
   ========================================================= */
.team1 { padding: 2rem 0 3rem; background: #fff; }

/* Default review-card style */
.team1 .item-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--se-border);
    box-shadow: 0 4px 12px rgba(13, 79, 139, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team1 .item-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(13, 79, 139, 0.12);
}
.team1 .image-wrap img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--se-primary);
    padding: 3px;
    background: #fff;
    margin: 0 auto 1rem;
    display: block;
}
.team1 .card-title {
    color: var(--se-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.team1 .mbr-role {
    color: var(--se-muted);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}
.team1 .card-text {
    color: var(--se-text-soft);
    font-style: italic;
    text-align: left;
    line-height: 1.7;
}

/* Pricing block override — completely different look */
.team1.pricing-block {
    background: linear-gradient(180deg, var(--se-bg-soft) 0%, #fff 100%);
    padding: 3rem 0 3.5rem;
}
.team1.pricing-block .item-wrapper { display: none; } /* not used in pricing */

.price-card {
    background: #fff;
    border: 2px solid var(--se-border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 28px rgba(13, 79, 139, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(13, 79, 139, 0.15);
    border-color: var(--se-primary);
}
.price-card.best-value {
    border-color: var(--se-primary);
    border-width: 3px;
    transform: scale(1.04);
    box-shadow: 0 18px 38px rgba(13, 79, 139, 0.22);
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.price-card.best-value:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 24px 48px rgba(13, 79, 139, 0.28);
}
.best-flag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--se-warning) 0%, #ff9933 100%);
    color: #1a1a1a;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 14px rgba(245, 180, 0, 0.4);
    white-space: nowrap;
}
.price-head { margin-bottom: 0.85rem; }
.price-pack {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--se-primary-d);
    margin: 0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.price-supply {
    font-size: 0.82rem;
    color: var(--se-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 0.25rem;
}
.price-img-wrap {
    margin: 0.5rem 0 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.price-img-wrap img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(13, 79, 139, 0.18));
    transition: transform 0.3s ease;
}
.price-card:hover .price-img-wrap img { transform: translateY(-4px); }
.price-tag {
    margin: 0.5rem 0 0.85rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
}
.price-tag .price-now {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--se-primary);
    line-height: 1;
}
.price-per {
    color: var(--se-muted);
    font-size: 0.95rem;
    font-weight: 600;
}
.price-totals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 0.85rem;
    background: var(--se-bg-soft);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    flex-wrap: wrap;
}
.price-totals .strike {
    text-decoration: line-through;
    color: var(--se-muted);
    font-weight: 500;
}
.price-totals .now {
    color: var(--se-primary-d);
    font-weight: 800;
}
.price-cta {
    width: 100%;
    padding: 0.85rem 1rem !important;
    font-size: 1rem !important;
    margin-top: auto;
}
.price-perks {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--se-border);
    font-size: 0.82rem;
    color: var(--se-text-soft);
    font-weight: 600;
}
.price-foot {
    color: var(--se-text-soft);
    font-size: 0.95rem !important;
    margin: 0;
}
.price-foot strong { color: var(--se-primary-d); }

@media (max-width: 991px) {
    .price-card.best-value { transform: none; }
    .price-card.best-value:hover { transform: translateY(-6px); }
    .price-card { padding: 1.5rem 1.25rem 1.25rem; }
    .price-tag .price-now { font-size: 2.2rem; }
    .price-img-wrap { min-height: 160px; }
    .price-img-wrap img { max-height: 180px; }
}

/* =========================================================
   TEAM2 — Bonuses (horizontal row cards)
   ========================================================= */
.team2 { padding: 2rem 0 3rem; background: var(--se-bg-soft); }
.team2 .item { margin-bottom: 1.25rem; }
.team2 .item-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid var(--se-border);
    box-shadow: 0 4px 12px rgba(13, 79, 139, 0.05);
}
.team2 .image-wrapper img {
    border-radius: 10px;
    width: 100%;
}
.team2 .card-title {
    color: var(--se-primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.team2 .card-subtitle { color: var(--se-danger); font-weight: 600; }
.team2 .mbr-text { color: var(--se-text-soft); }

/* =========================================================
   FEATURES24 — Trust 3-card
   ========================================================= */
.features24 {
    padding: 3rem 0;
    background: #fff;
}
.features24 .card-title {
    color: var(--se-primary-d);
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.features24 .item.mbr-flex {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--se-bg-soft);
    border-radius: 14px;
    padding: 1.5rem !important;
    margin-bottom: 1rem;
    border: 1px solid var(--se-border);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.features24 .item.mbr-flex:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(13, 79, 139, 0.10);
    background: #fff;
}
.features24 .icon-wrap { flex-shrink: 0; width: auto !important; }
.features24 .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--se-primary), var(--se-primary-l));
    color: #fff !important;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 6px 14px rgba(13, 79, 139, 0.25);
}
.features24 .icon-title {
    color: var(--se-primary) !important;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.features24 .mbr-text { color: var(--se-text-soft) !important; margin: 0; font-size: 0.97rem; }

/* =========================================================
   FEATURES17 — Guarantee
   ========================================================= */
.features17 {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fff 0%, #fff8e6 100%);
    border-top: 1px solid var(--se-border);
    border-bottom: 1px solid var(--se-border);
}
.features17 .image-wrapper { text-align: center; }
.features17 .image-wrapper img { max-width: 240px; }
.features17 .card-title {
    color: var(--se-primary-d);
    font-weight: 800;
    margin-bottom: 1rem;
}
.features17 .mbr-text { color: var(--se-text-soft); }
@media (max-width: 991px) {
    .features17 .col-12.col-lg-4 { text-align: center; margin-bottom: 1rem; }
}

/* =========================================================
   IMAGE3 — Centered image
   ========================================================= */
.image3 { padding: 1.75rem 0; background: #fff; }
.image3 .image-wrapper { text-align: center; }
.image3 .image-wrapper img {
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(13, 79, 139, 0.12);
}

/* =========================================================
   HEADER6 — Final red CTA banner
   ========================================================= */
.header6 {
    background: linear-gradient(135deg, var(--se-danger) 0%, var(--se-danger-d) 100%);
    color: #fff;
    padding: 3rem 0 3.5rem;
    text-align: center;
    position: relative;
}
.header6 .mbr-section-title {
    color: #fff !important;
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.header6 .mbr-section-title strike { opacity: 0.75; }

/* =========================================================
   FAQ (custom bb-faq from BackBiome)
   ========================================================= */
.bb-faq-section {
    padding: 1.5rem 0 4rem;
    background: var(--se-bg-soft);
}
.bb-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}
.bb-faq-item {
    background: #fff;
    border: 1px solid var(--se-border);
    border-radius: 12px;
    margin-bottom: 0.85rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(13, 79, 139, 0.04);
    transition: box-shadow 0.25s ease;
}
.bb-faq-item:hover { box-shadow: 0 8px 18px rgba(13, 79, 139, 0.08); }
.bb-faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 1.15rem 1.25rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}
.bb-faq-question:hover { background: var(--se-bg-soft); color: var(--se-primary); }
.bb-faq-question-text {
    font-weight: 700;
    font-size: 1rem;
    color: inherit;
}
.bb-faq-arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: inherit;
    transition: transform 0.25s ease;
}
.bb-faq-arrow svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.bb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    background: var(--se-bg-soft);
    padding: 0 1.25rem;
}
.bb-faq-answer p {
    color: var(--se-text-soft);
    line-height: 1.75;
    margin: 0;
}
.bb-faq-item.bb-active .bb-faq-question {
    background: var(--se-primary);
    color: #fff;
}
.bb-faq-item.bb-active .bb-faq-arrow { transform: rotate(180deg); }
.bb-faq-item.bb-active .bb-faq-answer {
    max-height: 700px;
    padding: 1.15rem 1.25rem 1.25rem;
}

/* =========================================================
   FOOTER (footer3)
   ========================================================= */
.footer3 {
    background: #0a2c4d;
    padding: 2.5rem 0 1.5rem;
    color: #d4dfee;
}
.footer3 .row-links {
    width: 100%;
    text-align: center;
}
.footer3 .foot-menu {
    list-style: none;
    padding: 0;
    margin: 0 auto 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.4rem;
}
.footer3 .foot-menu-item a {
    color: #d4dfee !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer3 .foot-menu-item a:hover {
    color: #fff !important;
    text-decoration: underline;
}
.footer3 .row-links + .row-links {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.85rem;
}
.footer3 .row-copirayt {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.85rem;
    margin-top: 0.5rem;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1029;
    padding: 0.6rem 0.85rem;
    background: rgba(15, 17, 21, 0.95);
    border-top: 1px solid rgba(231, 53, 44, 0.3);
    backdrop-filter: blur(10px);
}
.sticky-cta .btn {
    width: 100%;
    border-radius: 50px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

/* =========================================================
   LEGAL / SUB-PAGES (shared layout)
   ========================================================= */
.legal-page {
    padding: 3rem 0 4rem;
    background: var(--se-bg-soft);
}
.legal-page h2 {
    font-size: 1.4rem;
    color: var(--se-primary-d);
    font-weight: 800;
    border-bottom: 2px solid var(--se-primary);
    display: inline-block;
    padding-bottom: 0.3rem;
    margin: 1.75rem 0 0.75rem;
}
.legal-page h3 {
    font-size: 1.1rem;
    color: var(--se-primary);
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
}
.legal-page p {
    color: var(--se-text-soft);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.legal-page ul { padding-left: 1.4rem; margin-bottom: 1.25rem; }
.legal-page ul li { color: var(--se-text-soft); margin-bottom: 0.5rem; line-height: 1.65; }
.legal-page a {
    color: var(--se-primary);
    text-decoration: underline;
    font-weight: 500;
}
.legal-page a:hover { color: var(--se-primary-d); }
.legal-updated {
    background: #fff;
    border-left: 4px solid var(--se-primary);
    padding: 0.85rem 1.1rem;
    border-radius: 0 8px 8px 0;
    color: var(--se-text);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 10px rgba(13, 79, 139, 0.05);
}
.contact-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--se-border);
    margin: 1.5rem 0;
    box-shadow: 0 6px 16px rgba(13, 79, 139, 0.06);
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--se-border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row i {
    color: var(--se-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.contact-row strong { color: var(--se-text); font-weight: 700; }

/* =========================================================
   FADE IN
   ========================================================= */
.fade-init {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-init.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE FINAL
   ========================================================= */
@media (max-width: 576px) {
    .footer3 .foot-menu { gap: 0.3rem 0.9rem; }
    .footer3 .foot-menu-item a { font-size: 0.88rem; }
    .header14 h1 { font-size: 1.5rem; }
    .header6 .mbr-section-title { font-size: 1.3rem; }
    .features24 .item.mbr-flex { flex-direction: column; gap: 0.75rem; }
}
