/* ==========================================================================
   GLOBAL LAYOUT AND BODY RESETS
   ========================================================================== */
html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
    background: #ffffff !important;
}

body {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
}

/* ==========================================================================
   DYNAMIC SERVICE PRICING SECTION (.pr-root)
   ========================================================================== */

.pr-root {
    padding: 64px 24px;
    font-family: "Poppins", sans-serif;
}

.pr-top {
    text-align: center;
    margin-bottom: 48px;
}

.pr-badge {
    display: inline-block;
    background: #e1f5ee;
    color: #085041;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pr-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.25;
}

.pr-heading em {
    font-style: italic;
    color: #1d9e75;
}

.pr-currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 999px;
}

.pr-curr-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pr-curr-btn.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 48px;
}

.pr-card {
    position: relative;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    transition: transform 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pr-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: var(--card-accent, #1d9e75);
}

.pr-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-accent, #1d9e75);
}

.pr-card.featured {
    border-color: #1d9e75;
    background: #f0fbf6;
}

.pr-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #1d9e75;
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.pr-plan-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    background: var(--tag-bg, #E6F1FB);
    color: var(--tag-color, #0C447C);
    width: fit-content;
}

.pr-plan-name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.pr-best-for {
    font-size: 15px;
    color: #000000;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pr-best-for::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--card-accent, #1d9e75);
    flex-shrink: 0;
}

.pr-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0 0 20px;
}

.pr-price-block {
    margin-bottom: 22px;
}

.pr-price {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.pr-price span.pr-currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
    color: var(--card-accent, #1d9e75);
}

.pr-price-period {
    font-size: 13.5px;
    color: #000000;
    margin-top: 4px;
}

.pr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex-grow: 1;
}

.pr-features li {
    font-size: 14.5px;
    color: #000000;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.pr-features li i {
    color: var(--card-accent, #1d9e75);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pr-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: 14px 24px;
    border-radius: 12px;
    background: #059669;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.pr-card-btn:hover {
    background: #ffffff;
    color: #111827;
    border-color: #111827;
}

.pr-card.featured .pr-card-btn {
    background: #1d9e75;
    color: #ffffff;
}

.pr-card.featured .pr-card-btn:hover {
    background: #ffffff;
    color: #1d9e75;
    border-color: #1d9e75;
}

.pr-middle-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
}

.pr-cta-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 38px;
    border-radius: 8px;
    color: #fff;
    border: 2px solid #059669;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #059669;
}

.pr-cta-ghost i {
    font-size: 18px;
}

.pr-cta-ghost:hover {
    background: #047857;
    border-color: #047857;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .pr-middle-cta {
        margin-top: 35px;
        padding: 0 20px;
    }

    .pr-cta-ghost {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
    }
}

/* ── Header Brand Logo Sizing & Alignment ── */
.sticky-header .header-nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}

.header-main-logo {
    height: 72px !important;
    max-height: 78px !important;
    width: auto !important;
    object-fit: contain;
    transition: all 0.2s ease;
}

.sticky-header {
    padding: 8px 0 !important;
}

@media (max-width: 1200px) {
    .sticky-header {
        padding: 10px 0 !important;
    }

    .header-main-logo {
        height: 64px !important;
        max-height: 70px !important;
    }

    .mobile-menu-btn {
        width: 46px;
        height: 46px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        color: #0f172a;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
        flex-shrink: 0;
    }

    .mobile-menu-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
        color: #e52027;
    }
}

@media (max-width: 576px) {
    .sticky-header {
        padding: 10px 0 !important;
    }

    .header-main-logo {
        height: 62px !important;
        max-height: 68px !important;
    }

    .mobile-menu-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 19px !important;
    }
}

/* ── Mobile Drawer Currency Card & Buttons ── */
.drawer-currency-card {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
    margin-bottom: 16px !important;
    box-sizing: border-box !important;
}

.drawer-currency-label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 8px !important;
}

.drawer-currency-label i {
    font-size: 11px !important;
    color: #64748b !important;
}

.drawer-currency-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.drawer-page a.drawer-currency-btn,
.drawer-currency-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 42px !important;
    padding: 0 12px !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 0 !important;
    transform: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.drawer-currency-btn img {
    width: 20px !important;
    height: 14px !important;
    min-width: 20px !important;
    max-height: 14px !important;
    object-fit: cover !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    border-radius: 2px !important;
}

.drawer-currency-btn .curr-name,
.drawer-currency-btn span {
    white-space: nowrap !important;
    color: #0f172a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.drawer-page a.drawer-currency-btn.active,
.drawer-currency-btn.active {
    background: #80B621 !important;
    border-color: #80B621 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(128, 182, 33, 0.35) !important;
}

.drawer-currency-btn.active .curr-name,
.drawer-currency-btn.active span {
    color: #ffffff !important;
}

.drawer-page a.drawer-currency-btn:hover,
.drawer-currency-btn:hover {
    border-color: #80B621 !important;
    transform: translateY(-1px) !important;
}

/* ══════════════════════════════════════════════
   ULTRA-PREMIUM MOBILE DRAWER REDESIGN (FULL WIDTH)
══════════════════════════════════════════════ */
.mobile-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border-right: none !important;
    z-index: 999999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transform: translateX(-100%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.35s ease !important;
    will-change: transform;
}

.mobile-drawer.show {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.drawer-header {
    height: 68px !important;
    padding: 0 16px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
}

#drawerBack {
    display: none !important;
    flex-shrink: 0 !important;
}

#drawerBack.show-back {
    display: flex !important;
}

.drawer-header #drawerTitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    line-height: 1.3 !important;
    padding: 0 6px !important;
    word-break: break-word !important;
}

.drawer-header button {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    color: #475569 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.drawer-header button:hover {
    background: #fee2e2 !important;
    color: #e52027 !important;
}

/* Drawer content scroll area */
.mobile-drawer>*:not(.drawer-header) {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer-page {
    padding: 16px 20px 40px !important;
    display: none;
    flex-direction: column;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer-page.active {
    display: flex !important;
}

/* Account header card */
.drawer-account-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 14px;
}

.drawer-account-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.drawer-account-header strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.drawer-account-header small {
    font-size: 12px;
    color: #64748b;
}

/* Menu Links */
.drawer-page a,
.drawer-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 13px 15px !important;
    margin-bottom: 7px !important;
    color: #1e293b !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.drawer-page a:hover,
.drawer-link:hover {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    color: #e52027 !important;
    transform: translateX(3px);
}

.drawer-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fee2e2 !important;
    color: #e52027 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.drawer-link-icon i {
    color: #e52027 !important;
}

.drawer-page a:hover .drawer-link-icon,
.drawer-link:hover .drawer-link-icon {
    background: #e52027 !important;
    color: #ffffff !important;
}

.drawer-page a:hover .drawer-link-icon i,
.drawer-link:hover .drawer-link-icon i {
    color: #ffffff !important;
}

.drawer-chevron {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #f8fafc;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.2s ease;
}

.drawer-link:hover .drawer-chevron {
    background: #fee2e2;
    color: #e52027;
}

/* Premium Sign In CTA */
.drawer-cta-signin {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, #e52027 0%, #c91a20 100%) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    box-shadow: 0 6px 18px rgba(229, 32, 39, 0.28) !important;
    border: none !important;
    transition: all 0.2s ease !important;
    margin-top: 10px !important;
}

.drawer-cta-signin:hover {
    background: linear-gradient(135deg, #c91a20 0%, #a8151a 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(229, 32, 39, 0.38) !important;
}

/* Drawer Footer Info */
.drawer-footer-info {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.drawer-footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    margin-bottom: 6px;
}

.drawer-footer-contact:hover {
    color: #e52027;
}

/* ── Mobile Drawer Backdrop Overlay ── */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
    z-index: 999990 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.mobile-drawer-backdrop.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* ── Hide Floating WhatsApp, Scroll To Top, and Floating Share When Drawer is Open ── */
body.drawer-open {
    overflow: hidden !important;
}

body.drawer-open .whatsapp-float,
body.drawer-open #scrollTopBtn,
body.drawer-open #shareToggle,
body.drawer-open #floatingShareIcons,
body.drawer-open .scroll-top,
body.drawer-open .back-to-top,
body.drawer-open .whatsapp-btn,
body.drawer-open [class*="whatsapp-float"] {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: scale(0.6) !important;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
}

/* ── Mobile Drawer Centered Premium Sign In Button ── */
.drawer-footer-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 14px 0 10px !important;
    box-sizing: border-box !important;
}

.drawer-page a.drawer-cta-signin,
.drawer-cta-signin {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
    min-width: 230px !important;
    max-width: 90% !important;
    height: 48px !important;
    padding: 0 24px !important;
    border-radius: 12px !important;
    background: #80B621 !important;
    border: 1.5px solid #80B621 !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(128, 182, 33, 0.4) !important;
    margin: 0 auto !important;
    transform: none !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.drawer-cta-signin i {
    font-size: 15px !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.drawer-cta-signin span {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.drawer-page a.drawer-cta-signin:hover,
.drawer-cta-signin:hover {
    background: #71a31b !important;
    border-color: #71a31b !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(128, 182, 33, 0.55) !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   BRAND NEW UNIFIED SERVICE HERO SECTION DESIGN SYSTEM (ULTRA-PREMIUM & 100% RESPONSIVE)
   Standardized layout for ALL 38+ AEO, GEO, SEO, SMM, PPC & Digital Marketing Service Pages
   ========================================================================== */

/* ── 1. Master Hero Container ── */
.hero,
.gemini-hero,
.you-hero,
.aim-hero,
.bh,
.bh-hero,
.bing-hero,
.ddg-hero,
.sh,
.mh,
.fbh-section,
.li-hero,
.tw-hero,
.tt-hero,
.ig-hero,
.wa-hero,
.rd-hero,
.yt-hero,
.meta-hero,
.google-hero,
.gmb-hero,
.wi-hero,
.vm-hero,
.rm-hero,
.ls-hero,
.fm-hero,
.bp-hero,
.cl-hero,
.em-hero,
.seo-hero-section {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 520px !important;
    padding: 125px 24px 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 60px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: radial-gradient(circle at 85% 20%, rgba(0, 166, 126, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* ── 2. Content Left Column (Aligned with Sub-sections at 1100px Grid) ── */
.hero>.hero__content,
.hero>.hero-content,
.gemini-hero>.gemini-hero__content,
.you-hero>.you-hero__content,
.aim-hero>.aim-hero__content,
.bh>.bh__content,
.ddg-hero>.ddg-left,
.sh>.sh__content,
.mh>.mh__left,
.fbh-section>.fbh-content,
.li-hero>.li-hero__content,
.tw-hero>.tw-hero__content,
.tt-hero>.tt-hero__content,
.ig-hero>.ig-hero__content,
.wa-hero>.wa-hero__content,
.rd-hero>.rd-hero__content,
.yt-hero>.yt-hero__content,
.meta-hero>.meta-hero__content,
.google-hero>.google-hero__content,
.gmb-hero>.gmb-hero__content,
.wi-hero>.wi-hero__content,
.vm-hero>.vm-hero__content,
.rm-hero>.rm-hero__content,
.ls-hero>.ls-hero__content,
.fm-hero>.fm-hero__content,
.bp-hero>.bp-hero__content,
.cl-hero>.cl-hero__content,
.em-hero>.em-hero__content,
.seo-hero-section>.seo-hero-content {
    flex: 0 1 560px !important;
    width: 560px !important;
    max-width: 560px !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
}

/* ── 3. Visual Right Column (Aligned with Sub-sections at 1100px Grid) ── */
.hero>.hero__illus,
.hero>.hero-illus,
.hero>.aeo-hero__illus,
.gemini-hero>.gemini-hero__illus,
.gemini-hero>.gemini-hero__img-wrap,
.you-hero>.you-hero__illus,
.aim-hero>.aim-hero__illus,
.aim-hero>.aim-hero__img-wrap,
.aim-hero>.aeo-hero__illus,
.bh>.bh__illus,
.bh>.bh__img-wrap,
.ddg-hero>.ddg-right,
.sh>.sh__illus,
.mh>.mh__right,
.mh>.mh__scene,
.fbh-section>.fbh-illus,
.li-hero>.li-hero__illus,
.li-hero>.li-hero__img-wrap,
.tw-hero>.tw-hero__illus,
.tw-hero>.tw-hero__img-wrap,
.tt-hero>.tt-hero__illus,
.tt-hero>.tt-hero__img-wrap,
.ig-hero>.ig-hero__illus,
.ig-hero>.ig-hero__img-wrap,
.wa-hero>.wa-hero__illus,
.wa-hero>.wa-hero__img-wrap,
.rd-hero>.rd-hero__illus,
.rd-hero>.rd-hero__img-wrap,
.yt-hero>.yt-hero__illus,
.yt-hero>.yt-hero__img-wrap,
.meta-hero>.meta-hero__illus,
.meta-hero>.meta-hero__img-wrap,
.google-hero>.google-hero__illus,
.google-hero>.google-hero__img-wrap,
.gmb-hero>.gmb-hero__illus,
.gmb-hero>.gmb-hero__img-wrap,
.wi-hero>.wi-hero__illus,
.wi-hero>.wi-hero__img-wrap,
.vm-hero>.vm-hero__illus,
.vm-hero>.vm-hero__img-wrap,
.rm-hero>.rm-hero__illus,
.rm-hero>.rm-hero__img-wrap,
.ls-hero>.ls-hero__illus,
.ls-hero>.ls-hero__img-wrap,
.fm-hero>.fm-hero__illus,
.fm-hero>.fm-hero__img-wrap,
.bp-hero>.bp-hero__illus,
.bp-hero>.bp-hero__img-wrap,
.cl-hero>.cl-hero__illus,
.cl-hero>.cl-hero__img-wrap,
.em-hero>.em-hero__illus,
.em-hero>.em-hero__img-wrap,
.seo-hero-section>.seo-hero-image,
.seo-hero-section>.aeo-hero__illus {
    flex: 0 1 480px !important;
    width: 480px !important;
    max-width: 480px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
}

/* ── Master Universal Alignment for All Sub-Sections ── */
.about-container,
.faq-container,
.wc-container,
.process-container,
.steps-container {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ── 4. Typography & Title Accents ── */
.hero__title,
.gemini-hero__title,
.you-hero__title,
.aim-hero__title,
.bh__title,
.ddg-title,
.sh__title,
.mh__title,
.fbh-title,
.li-hero__title,
.tw-hero__title,
.tt-hero__title,
.ig-hero__title,
.wa-hero__title,
.rd-hero__title,
.yt-hero__title,
.meta-hero__title,
.google-hero__title,
.gmb-hero__title,
.wi-hero__title,
.vm-hero__title,
.rm-hero__title,
.ls-hero__title,
.fm-hero__title,
.bp-hero__title,
.cl-hero__title,
.em-hero__title,
.seo-hero-title {
    font-size: clamp(34px, 4vw, 50px) !important;
    font-weight: 800 !important;
    line-height: 1.16 !important;
    letter-spacing: -0.025em !important;
    color: #0f172a !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.hero__accent,
.gemini-hero__accent,
.you-hero__accent,
.aim-hero__accent,
.bh__accent,
.ddg-title-accent,
.sh__accent,
.mh__accent,
.fbh-accent,
.ig-hero__accent,
.seo-hero-accent {
    background: linear-gradient(135deg, #00A67E 0%, #0284c7 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}

.hero__desc,
.gemini-hero__desc,
.you-hero__desc,
.aim-hero__desc,
.bh__desc,
.ddg-desc,
.sh__desc,
.mh__desc,
.fbh-desc,
.li-hero__desc,
.tw-hero__desc,
.tt-hero__desc,
.ig-hero__desc,
.wa-hero__desc,
.rd-hero__desc,
.yt-hero__desc,
.meta-hero__desc,
.google-hero__desc,
.gmb-hero__desc,
.wi-hero__desc,
.vm-hero__desc,
.rm-hero__desc,
.ls-hero__desc,
.fm-hero__desc,
.bp-hero__desc,
.cl-hero__desc,
.em-hero__desc,
.seo-hero-desc {
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: #475569 !important;
    max-width: 540px !important;
    margin-bottom: 28px !important;
    font-weight: 450 !important;
}

/* ── 5. Standardized CTA Buttons ── */
.hero__btns,
.hero__cta-row,
.hero__cta,
.gemini-hero__btns,
.you-hero__btns,
.bh__cta-row,
.ddg-actions,
.mh__actions,
.fbh-btn-row,
.seo-hero-btns {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-top: 4px !important;
}

.hero__btn-primary,
.hero__btn,
.gemini-hero__btn-primary,
.gemini-hero__btn,
.you-hero__btn-primary,
.you-hero__btn,
.aim-hero__btn,
.aim-hero__btn-primary,
.bh__btn,
.ddg-btn-primary,
.sh__btn,
.mh__btn-primary,
.fbh-btn,
.seo-hero-btn,
.li-hero__btn,
.tw-hero__btn,
.tt-hero__btn,
.ig-hero__btn,
.wa-hero__btn,
.rd-hero__btn,
.yt-hero__btn,
.meta-hero__btn,
.google-hero__btn,
.gmb-hero__btn,
.wi-hero__btn,
.vm-hero__btn,
.rm-hero__btn,
.ls-hero__btn,
.fm-hero__btn,
.bp-hero__btn,
.cl-hero__btn,
.em-hero__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 32px !important;
    background: linear-gradient(135deg, #00A67E 0%, #059669 100%) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    border: none !important;
    outline: none !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    text-decoration: none !important;
    width: auto !important;
    min-width: 175px !important;
    cursor: pointer !important;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 166, 126, 0.4), 0 8px 10px -6px rgba(0, 166, 126, 0.2) !important;
}

.hero__btn-primary:hover,
.hero__btn:hover,
.gemini-hero__btn-primary:hover,
.gemini-hero__btn:hover,
.you-hero__btn-primary:hover,
.you-hero__btn:hover,
.aim-hero__btn:hover,
.aim-hero__btn-primary:hover,
.bh__btn:hover,
.ddg-btn-primary:hover,
.sh__btn:hover,
.mh__btn-primary:hover,
.fbh-btn:hover,
.seo-hero-btn:hover,
.li-hero__btn:hover,
.tw-hero__btn:hover,
.tt-hero__btn:hover,
.ig-hero__btn:hover,
.wa-hero__btn:hover,
.rd-hero__btn:hover,
.yt-hero__btn:hover,
.meta-hero__btn:hover,
.google-hero__btn:hover,
.gmb-hero__btn:hover,
.wi-hero__btn:hover,
.vm-hero__btn:hover,
.rm-hero__btn:hover,
.ls-hero__btn:hover,
.fm-hero__btn:hover,
.bp-hero__btn:hover,
.cl-hero__btn:hover,
.em-hero__btn:hover {
    background: linear-gradient(135deg, #008765 0%, #047857 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px -5px rgba(0, 166, 126, 0.5) !important;
}

.hero__btn-primary i,
.hero__btn i,
.hero__btn-primary svg,
.hero__btn svg,
.hero__btn-primary span,
.hero__btn span,
.hero__btn-primary .arr,
.hero__btn .arr,
.hero__btn-primary .hero__arr,
.hero__btn .hero__arr,
.gemini-hero__btn span,
.gemini-hero__btn .gemini-hero__arr,
.you-hero__btn span,
.you-hero__btn .you-hero__arr,
.aim-hero__btn span,
.aim-hero__btn .aim-hero__arr,
.bh__btn span,
.bh__btn .bh__arr,
.sh__btn span,
.sh__btn .sh__arr,
.fbh-btn span,
.fbh-btn .fbh-btn-arr,
.seo-hero-btn i,
.seo-hero-btn svg,
.seo-hero-btn span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 17px !important;
    line-height: 1 !important;
    color: #ffffff !important;
    transition: transform 0.25s ease !important;
}

.hero__btn-primary:hover i,
.hero__btn:hover i,
.hero__btn-primary:hover svg,
.hero__btn:hover svg,
.hero__btn-primary:hover span,
.hero__btn:hover span,
.hero__btn-primary:hover .arr,
.hero__btn:hover .arr,
.hero__btn-primary:hover .hero__arr,
.hero__btn:hover .hero__arr,
.gemini-hero__btn:hover span,
.gemini-hero__btn:hover .gemini-hero__arr,
.you-hero__btn:hover span,
.you-hero__btn:hover .you-hero__arr,
.aim-hero__btn:hover span,
.aim-hero__btn:hover .aim-hero__arr,
.bh__btn:hover span,
.bh__btn:hover .bh__arr,
.sh__btn:hover span,
.sh__btn:hover .sh__arr,
.fbh-btn:hover span,
.fbh-btn:hover .fbh-btn-arr,
.seo-hero-btn:hover i,
.seo-hero-btn:hover svg,
.seo-hero-btn:hover span {
    transform: translateX(4px) !important;
}

/* ── 6. Universal Banner Image Presentation (No Cut-off, High Clarity) ── */
.aeo-hero__img,
.hero__img,
.gemini-hero__img,
.aim-hero__img,
.bh__img,
.ddg-hero__img,
.ddg-right img,
.sh__illus img,
.mh__scene img,
.fbh-illus img,
.li-hero__img,
.tw-hero__img,
.tt-hero__img,
.ig-hero__img,
.wa-hero__img,
.rd-hero__img,
.yt-hero__img,
.meta-hero__img,
.google-hero__img,
.gmb-hero__img,
.wi-hero__img,
.vm-hero__img,
.rm-hero__img,
.ls-hero__img,
.fm-hero__img,
.bp-hero__img,
.cl-hero__img,
.em-hero__img,
.seo-hero-img {
    display: block !important;
    width: 100% !important;
    max-width: 440px !important;
    height: auto !important;
    max-height: 380px !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.12)) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero:hover .aeo-hero__img,
.hero:hover .hero__img,
.gemini-hero:hover .gemini-hero__img,
.aim-hero:hover .aim-hero__img,
.bh:hover .bh__img,
.ddg-hero:hover .ddg-hero__img,
.sh:hover .sh__illus img,
.mh:hover .mh__scene img,
.fbh-section:hover .fbh-illus img,
.ig-hero:hover .ig-hero__img,
.seo-hero-section:hover .seo-hero-img {
    transform: scale(1.02) translateY(-4px) !important;
}

/* ── 7. Floating Badges Hidden ── */
.hero__img-wrap .badge,
.hero__illus .badge,
.hero__illus [class*="badge-"],
.hero__img-wrap [class*="badge-"],
.ig-hero__badge,
.ig-hero__badge--likes,
.ig-hero__badge--followers,
.ig-hero__badge--reach {
    display: none !important;
}

/* ── 8. Responsive Tablets & Laptops (max-width: 991px) ── */
@media (max-width: 991px) {

    .hero,
    .gemini-hero,
    .you-hero,
    .aim-hero,
    .bh,
    .bh-hero,
    .bing-hero,
    .ddg-hero,
    .sh,
    .mh,
    .fbh-section,
    .li-hero,
    .tw-hero,
    .tt-hero,
    .ig-hero,
    .wa-hero,
    .rd-hero,
    .yt-hero,
    .meta-hero,
    .google-hero,
    .gmb-hero,
    .wi-hero,
    .vm-hero,
    .rm-hero,
    .ls-hero,
    .fm-hero,
    .bp-hero,
    .cl-hero,
    .em-hero,
    .seo-hero-section {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 115px 28px 45px !important;
        min-height: auto !important;
        max-height: none !important;
        gap: 30px !important;
    }

    .hero>.hero__content,
    .hero>.hero-content,
    .gemini-hero>.gemini-hero__content,
    .you-hero>.you-hero__content,
    .aim-hero>.aim-hero__content,
    .bh>.bh__content,
    .ddg-hero>.ddg-left,
    .sh>.sh__content,
    .mh>.mh__left,
    .fbh-section>.fbh-content,
    .li-hero>.li-hero__content,
    .tw-hero>.tw-hero__content,
    .tt-hero>.tt-hero__content,
    .ig-hero>.ig-hero__content,
    .wa-hero>.wa-hero__content,
    .rd-hero>.rd-hero__content,
    .yt-hero>.yt-hero__content,
    .meta-hero>.meta-hero__content,
    .google-hero>.google-hero__content,
    .gmb-hero>.gmb-hero__content,
    .wi-hero>.wi-hero__content,
    .vm-hero>.vm-hero__content,
    .rm-hero>.rm-hero__content,
    .ls-hero>.ls-hero__content,
    .fm-hero>.fm-hero__content,
    .bp-hero>.bp-hero__content,
    .cl-hero>.cl-hero__content,
    .em-hero>.em-hero__content,
    .seo-hero-section>.seo-hero-content {
        width: 100% !important;
        max-width: 640px !important;
        margin: 0 auto !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero__desc,
    .gemini-hero__desc,
    .you-hero__desc,
    .aim-hero__desc,
    .bh__desc,
    .ddg-desc,
    .sh__desc,
    .mh__desc,
    .fbh-desc,
    .li-hero__desc,
    .tw-hero__desc,
    .tt-hero__desc,
    .ig-hero__desc,
    .wa-hero__desc,
    .rd-hero__desc,
    .yt-hero__desc,
    .meta-hero__desc,
    .google-hero__desc,
    .gmb-hero__desc,
    .wi-hero__desc,
    .vm-hero__desc,
    .rm-hero__desc,
    .ls-hero__desc,
    .fm-hero__desc,
    .bp-hero__desc,
    .cl-hero__desc,
    .em-hero__desc,
    .seo-hero-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero__btns,
    .hero__cta-row,
    .hero__cta,
    .gemini-hero__btns,
    .you-hero__btns,
    .bh__cta-row,
    .ddg-actions,
    .mh__actions,
    .fbh-btn-row,
    .seo-hero-btns {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 12px !important;
    }

    .hero>.hero__illus,
    .hero>.hero-illus,
    .hero>.aeo-hero__illus,
    .gemini-hero>.gemini-hero__illus,
    .gemini-hero>.gemini-hero__img-wrap,
    .you-hero>.you-hero__illus,
    .aim-hero>.aim-hero__illus,
    .aim-hero>.aim-hero__img-wrap,
    .aim-hero>.aeo-hero__illus,
    .bh>.bh__illus,
    .bh>.bh__img-wrap,
    .ddg-hero>.ddg-right,
    .sh>.sh__illus,
    .mh>.mh__right,
    .mh>.mh__scene,
    .fbh-section>.fbh-illus,
    .li-hero>.li-hero__illus,
    .li-hero>.li-hero__img-wrap,
    .tw-hero>.tw-hero__illus,
    .tw-hero>.tw-hero__img-wrap,
    .tt-hero>.tt-hero__illus,
    .tt-hero>.tt-hero__img-wrap,
    .ig-hero>.ig-hero__illus,
    .ig-hero>.ig-hero__img-wrap,
    .wa-hero>.wa-hero__illus,
    .wa-hero>.wa-hero__img-wrap,
    .rd-hero>.rd-hero__illus,
    .rd-hero>.rd-hero__img-wrap,
    .yt-hero>.yt-hero__illus,
    .yt-hero>.yt-hero__img-wrap,
    .meta-hero>.meta-hero__illus,
    .meta-hero>.meta-hero__img-wrap,
    .google-hero>.google-hero__illus,
    .google-hero>.google-hero__img-wrap,
    .gmb-hero>.gmb-hero__illus,
    .gmb-hero>.gmb-hero__img-wrap,
    .wi-hero>.wi-hero__illus,
    .wi-hero>.wi-hero__img-wrap,
    .vm-hero>.vm-hero__illus,
    .vm-hero>.vm-hero__img-wrap,
    .rm-hero>.rm-hero__illus,
    .rm-hero>.rm-hero__img-wrap,
    .ls-hero>.ls-hero__illus,
    .ls-hero>.ls-hero__img-wrap,
    .fm-hero>.fm-hero__illus,
    .fm-hero>.fm-hero__img-wrap,
    .bp-hero>.bp-hero__illus,
    .bp-hero>.bp-hero__img-wrap,
    .cl-hero>.cl-hero__illus,
    .cl-hero>.cl-hero__img-wrap,
    .em-hero>.em-hero__illus,
    .em-hero>.em-hero__img-wrap,
    .seo-hero-section>.seo-hero-image,
    .seo-hero-section>.aeo-hero__illus {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }

    .aeo-hero__img,
    .hero__img,
    .gemini-hero__img,
    .aim-hero__img,
    .bh__img,
    .ddg-hero__img,
    .ddg-right img,
    .sh__illus img,
    .mh__scene img,
    .fbh-illus img,
    .li-hero__img,
    .tw-hero__img,
    .tt-hero__img,
    .ig-hero__img,
    .wa-hero__img,
    .rd-hero__img,
    .yt-hero__img,
    .meta-hero__img,
    .google-hero__img,
    .gmb-hero__img,
    .wi-hero__img,
    .vm-hero__img,
    .rm-hero__img,
    .ls-hero__img,
    .fm-hero__img,
    .bp-hero__img,
    .cl-hero__img,
    .em-hero__img,
    .seo-hero-img {
        max-height: 310px !important;
    }
}

/* ── 9. Responsive Mobile Phones (max-width: 576px) ── */
@media (max-width: 576px) {

    .hero,
    .gemini-hero,
    .you-hero,
    .aim-hero,
    .bh,
    .bh-hero,
    .bing-hero,
    .ddg-hero,
    .sh,
    .mh,
    .fbh-section,
    .li-hero,
    .tw-hero,
    .tt-hero,
    .ig-hero,
    .wa-hero,
    .rd-hero,
    .yt-hero,
    .meta-hero,
    .google-hero,
    .gmb-hero,
    .wi-hero,
    .vm-hero,
    .rm-hero,
    .ls-hero,
    .fm-hero,
    .bp-hero,
    .cl-hero,
    .em-hero,
    .seo-hero-section {
        padding: 110px 20px 40px !important;
        gap: 22px !important;
    }

    .hero__title,
    .gemini-hero__title,
    .you-hero__title,
    .aim-hero__title,
    .bh__title,
    .ddg-title,
    .sh__title,
    .mh__title,
    .fbh-title,
    .li-hero__title,
    .tw-hero__title,
    .tt-hero__title,
    .ig-hero__title,
    .wa-hero__title,
    .rd-hero__title,
    .yt-hero__title,
    .meta-hero__title,
    .google-hero__title,
    .gmb-hero__title,
    .wi-hero__title,
    .vm-hero__title,
    .rm-hero__title,
    .ls-hero__title,
    .fm-hero__title,
    .bp-hero__title,
    .cl-hero__title,
    .em-hero__title,
    .seo-hero-title {
        font-size: clamp(24px, 6.8vw, 32px) !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .hero__desc,
    .gemini-hero__desc,
    .you-hero__desc,
    .aim-hero__desc,
    .bh__desc,
    .ddg-desc,
    .sh__desc,
    .mh__desc,
    .fbh-desc,
    .li-hero__desc,
    .tw-hero__desc,
    .tt-hero__desc,
    .ig-hero__desc,
    .wa-hero__desc,
    .rd-hero__desc,
    .yt-hero__desc,
    .meta-hero__desc,
    .google-hero__desc,
    .gmb-hero__desc,
    .wi-hero__desc,
    .vm-hero__desc,
    .rm-hero__desc,
    .ls-hero__desc,
    .fm-hero__desc,
    .bp-hero__desc,
    .cl-hero__desc,
    .em-hero__desc,
    .seo-hero-desc {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
        margin-bottom: 22px !important;
        max-width: 95% !important;
        text-align: center !important;
    }

    .hero__btns,
    .hero__cta-row,
    .hero__cta,
    .gemini-hero__btns,
    .you-hero__btns,
    .bh__cta-row,
    .ddg-actions,
    .mh__actions,
    .fbh-btn-row,
    .seo-hero-btns {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-bottom: 20px !important;
    }

    .hero__btn-primary,
    .hero__btn,
    .gemini-hero__btn-primary,
    .gemini-hero__btn,
    .you-hero__btn-primary,
    .you-hero__btn,
    .aim-hero__btn,
    .aim-hero__btn-primary,
    .bh__btn,
    .ddg-btn-primary,
    .sh__btn,
    .mh__btn-primary,
    .fbh-btn,
    .seo-hero-btn,
    .li-hero__btn,
    .tw-hero__btn,
    .tt-hero__btn,
    .ig-hero__btn,
    .wa-hero__btn,
    .rd-hero__btn,
    .yt-hero__btn,
    .meta-hero__btn,
    .google-hero__btn,
    .gmb-hero__btn,
    .wi-hero__btn,
    .vm-hero__btn,
    .rm-hero__btn,
    .ls-hero__btn,
    .fm-hero__btn,
    .bp-hero__btn,
    .cl-hero__btn,
    .em-hero__btn {
        width: auto !important;
        min-width: 175px !important;
        max-width: 270px !important;
        padding: 13px 26px !important;
        font-size: 14.5px !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        background: linear-gradient(135deg, #00A67E 0%, #059669 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 6px 18px rgba(0, 166, 126, 0.35) !important;
        margin: 0 auto !important;
    }

    .hero>.hero__illus,
    .hero>.hero-illus,
    .hero>.aeo-hero__illus,
    .gemini-hero>.gemini-hero__illus,
    .gemini-hero>.gemini-hero__img-wrap,
    .you-hero>.you-hero__illus,
    .aim-hero>.aim-hero__illus,
    .aim-hero>.aim-hero__img-wrap,
    .aim-hero>.aeo-hero__illus,
    .bh>.bh__illus,
    .bh>.bh__img-wrap,
    .ddg-hero>.ddg-right,
    .sh>.sh__illus,
    .mh>.mh__right,
    .mh>.mh__scene,
    .fbh-section>.fbh-illus,
    .li-hero>.li-hero__illus,
    .li-hero>.li-hero__img-wrap,
    .tw-hero>.tw-hero__illus,
    .tw-hero>.tw-hero__img-wrap,
    .tt-hero>.tt-hero__illus,
    .tt-hero>.tt-hero__img-wrap,
    .ig-hero>.ig-hero__illus,
    .ig-hero>.ig-hero__img-wrap,
    .wa-hero>.wa-hero__illus,
    .wa-hero>.wa-hero__img-wrap,
    .rd-hero>.rd-hero__illus,
    .rd-hero>.rd-hero__img-wrap,
    .yt-hero>.yt-hero__illus,
    .yt-hero>.yt-hero__img-wrap,
    .meta-hero>.meta-hero__illus,
    .meta-hero>.meta-hero__img-wrap,
    .google-hero>.google-hero__illus,
    .google-hero>.google-hero__img-wrap,
    .gmb-hero>.gmb-hero__illus,
    .gmb-hero>.gmb-hero__img-wrap,
    .wi-hero>.wi-hero__illus,
    .wi-hero>.wi-hero__img-wrap,
    .vm-hero>.vm-hero__illus,
    .vm-hero>.vm-hero__img-wrap,
    .rm-hero>.rm-hero__illus,
    .rm-hero>.rm-hero__img-wrap,
    .ls-hero>.ls-hero__illus,
    .ls-hero>.ls-hero__img-wrap,
    .fm-hero>.fm-hero__illus,
    .fm-hero>.fm-hero__img-wrap,
    .bp-hero>.bp-hero__illus,
    .bp-hero>.bp-hero__img-wrap,
    .cl-hero>.cl-hero__illus,
    .cl-hero>.cl-hero__img-wrap,
    .em-hero>.em-hero__illus,
    .em-hero>.em-hero__img-wrap,
    .seo-hero-section>.seo-hero-image,
    .seo-hero-section>.aeo-hero__illus {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .aeo-hero__img,
    .hero__img,
    .gemini-hero__img,
    .aim-hero__img,
    .bh__img,
    .ddg-hero__img,
    .ddg-right img,
    .sh__illus img,
    .mh__scene img,
    .fbh-illus img,
    .li-hero__img,
    .tw-hero__img,
    .tt-hero__img,
    .ig-hero__img,
    .wa-hero__img,
    .rd-hero__img,
    .yt-hero__img,
    .meta-hero__img,
    .google-hero__img,
    .gmb-hero__img,
    .wi-hero__img,
    .vm-hero__img,
    .rm-hero__img,
    .ls-hero__img,
    .fm-hero__img,
    .bp-hero__img,
    .cl-hero__img,
    .em-hero__img,
    .seo-hero-img {
        width: 100% !important;
        max-width: 280px !important;
        max-height: 210px !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto !important;
    }
}