/* ==========================================================================
   Hero Blocks Plugin � AlignUI-inspired professional hero sections
   All rules are namespaced under `.hb` to avoid theme collisions.
   ========================================================================== */

.hb, .hb *, .hb *::before, .hb *::after {
    box-sizing: border-box;
}

.hb {
    --hb-bg: #FFFFFF;
    --hb-bg-soft: #F8FAFC;
    --hb-ink: #0F172A;
    --hb-ink-soft: #475569;
    --hb-muted: #94A3B8;
    --hb-line: #E2E8F0;
    --hb-line-soft: #EEF2F7;
    --hb-blue: #2563EB;
    --hb-blue-strong: #1D4ED8;
    --hb-blue-soft: #EFF6FF;
    --hb-blue-ink: #1E40AF;
    --hb-green: #10B981;
    --hb-orange: #F97316;
    --hb-yellow: #F59E0B;
    --hb-teal: #14B8A6;
    --hb-red: #EF4444;
    --hb-radius-xl: 22px;
    --hb-radius-lg: 16px;
    --hb-radius-md: 12px;
    --hb-radius-sm: 8px;
    --hb-shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
    --hb-shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --hb-shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.25);
    --hb-font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --hb-font-serif: "Playfair Display", Georgia, serif;

    position: relative;
    padding: clamp(48px, 6vw, 96px) 0 clamp(32px, 5vw, 64px);
    background: var(--hb-bg);
    color: var(--hb-ink);
    font-family: var(--hb-font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.hb-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* ---------- Common atoms ---------- */

.hb-title {
    font-family: var(--hb-font-sans);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--hb-ink);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    margin: 0 0 20px;
}

.hb-title-xl {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hb-serif-italic {
    font-family: var(--hb-font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--hb-ink);
}

.hb-lead {
    color: var(--hb-ink-soft);
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 60ch;
}

.hb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: #F1F5F9;
    border: 1px solid var(--hb-line);
    border-radius: 999px;
    color: var(--hb-ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    box-shadow: var(--hb-shadow-sm);
    transition: transform .2s ease;
}

.hb-pill:hover { transform: translateY(-1px); color: var(--hb-ink); }

.hb-pill-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #DBEAFE;
    color: var(--hb-blue-ink);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.hb-pill-arrow { color: var(--hb-muted); }

/* Buttons */

.hb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--hb-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space: nowrap;
}

.hb-btn:hover { transform: translateY(-1px); }

.hb-btn-dark {
    background: var(--hb-ink);
    color: #fff;
    border-radius: 999px;
    padding: 14px 24px;
    box-shadow: var(--hb-shadow-md);
}

.hb-btn-dark:hover { background: #1E293B; color: #fff; }

.hb-btn-pill { border-radius: 999px; }

.hb-btn-blue {
    background: var(--hb-blue);
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.hb-btn-blue:hover { background: var(--hb-blue-strong); color: #fff; }

.hb-btn-outline {
    background: #fff;
    color: var(--hb-ink);
    border-color: var(--hb-line);
}

.hb-btn-outline:hover { border-color: var(--hb-ink-soft); color: var(--hb-ink); }

.hb-btn-soft {
    background: #F1F5F9;
    color: var(--hb-ink);
}
.hb-btn-soft:hover { background: #E2E8F0; color: var(--hb-ink); }

.hb-btn-lg { padding: 16px 28px; font-size: 1rem; }

/* CTA row */

.hb-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.hb-cta-row--center { justify-content: center; }

/* Avatars + rating */

.hb-avatar-stack {
    display: inline-flex;
}

.hb-avatar-stack .hb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
    background: #E2E8F0;
    box-shadow: var(--hb-shadow-sm);
}

.hb-avatar-stack .hb-avatar:first-child { margin-left: 0; }

.hb-rating-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hb-rating-group--left { justify-content: flex-start; margin-top: 20px; }

.hb-rating-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }

.hb-stars { color: #F59E0B; letter-spacing: 2px; font-size: 0.95rem; }

.hb-rating-sub { color: var(--hb-ink-soft); font-size: 0.85rem; }

.hb-rating-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hb-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #F8FAFC;
    border: 1px solid var(--hb-line);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--hb-ink);
}

.hb-rating-pill strong { color: var(--hb-ink); }

.hb-trustpilot { color: #00B67A; font-size: 1rem; }
.hb-g2 { background: #FF492C; color:#fff; font-weight:700; padding:2px 6px; border-radius:4px; font-size: .7rem; }

/* Brands footer */

.hb-brands-footer {
    margin-top: clamp(48px, 6vw, 72px);
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--hb-line);
}

.hb-brands-heading {
    display: block;
    color: var(--hb-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hb-brands-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 56px);
}

.hb-brand-logo {
    color: var(--hb-muted);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    transition: opacity .18s ease, color .18s ease;
    white-space: nowrap;
}

.hb-brand-logo:hover { opacity: 1; color: var(--hb-ink-soft); }

.hb-brand-logo--img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    padding: 0 8px;
}

.hb-brand-logo--img img {
    max-height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter .18s ease, opacity .18s ease;
}

.hb-brand-logo--img:hover { opacity: 1; }
.hb-brand-logo--img:hover img { filter: none; }

.hb-brands-row--images {
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hb-from-price {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--hb-ink-soft, #334155);
    white-space: nowrap;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}

/* Same type size as .hb-btn-cn � force over theme overrides */
.hb-10 .hb-btn-cn,
.hb-10 .hb-cn-actions .hb-from-price {
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: none;
}
.hb-10 .hb-cn-actions .hb-from-price {
    color: #fff !important;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
}

.hb-11 .hb-from-price,
.hb-12 .hb-from-price {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.hb-brands-footer--inline { margin-top: 40px; }

/* Check list */

.hb-check-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hb-check-list--tight { gap: 8px; margin-bottom: 20px; }

.hb-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--hb-ink);
    font-size: 0.95rem;
}

.hb-check-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hb-blue-soft);
    color: var(--hb-blue);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Split layout used by styles 2..5 */

.hb-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.hb-split--reverse .hb-split-mockup { order: 0; }
.hb-split--reverse .hb-split-text { order: 1; }

.hb-split-text { min-width: 0; }
.hb-split-mockup { min-width: 0; }
.hb-split-mockup--center { display: flex; align-items: center; justify-content: center; }

@media (max-width: 900px) {
    .hb-split { grid-template-columns: 1fr; }
    .hb-split--reverse .hb-split-mockup { order: 0; }
    .hb-split--reverse .hb-split-text { order: 1; }
}

/* ==========================================================================
   Style 1 � Centered gradient hero
   ========================================================================== */

.hb-01 {
    background:
        radial-gradient(1200px 500px at 50% -10%, rgba(37, 99, 235, 0.10), transparent 60%),
        linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 40%);
}

.hb-01::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at top, #000 30%, transparent 70%);
    pointer-events: none;
}

.hb-01 .hb-container { position: relative; }
.hb-01-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.hb-01 .hb-lead { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Style 2 � Split banking dashboard
   ========================================================================== */

.hb-02 {
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 60%);
}

.hb-browser {
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius-lg);
    overflow: hidden;
    box-shadow: var(--hb-shadow-lg);
}

.hb-browser--xl { border-radius: 20px; }

.hb-browser-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--hb-line);
}

.hb-browser-dots { display: flex; gap: 6px; }

.hb-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.hb-dot-r { background: #EF4444; }
.hb-dot-y { background: #F59E0B; }
.hb-dot-g { background: #10B981; }
.hb-dot-orange { background: #F97316; }
.hb-dot-yellow { background: #FBBF24; }
.hb-dot-teal { background: #14B8A6; }

.hb-browser-url {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--hb-ink-soft);
    max-width: 320px;
}

.hb-browser-body { padding: 0; background: #fff; min-height: 320px; }
.hb-browser-body--pad { padding: 16px; }
.hb-browser-img { display: block; width: 100%; height: auto; }
.hb-browser-body .hb-media-video,
.hb-browser-img.hb-media-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

/* Mini dashboard */

.hb-mini-app {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 320px;
}

.hb-mini-sidebar {
    background: #F8FAFC;
    padding: 16px;
    border-right: 1px solid var(--hb-line);
}

.hb-mini-user { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hb-mini-avatar {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
}
.hb-mini-name { font-weight: 700; font-size: 0.9rem; }
.hb-mini-role { font-size: 0.7rem; color: var(--hb-muted); }

.hb-mini-menu { display: flex; flex-direction: column; gap: 4px; }
.hb-mini-menu-item {
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--hb-ink-soft);
    font-size: 0.8rem;
}
.hb-mini-menu-item.is-active { background: #fff; color: var(--hb-ink); font-weight: 600; box-shadow: var(--hb-shadow-sm); }

.hb-mini-main { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.hb-mini-topbar { font-weight: 600; color: var(--hb-ink); }
.hb-mini-widgets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hb-mini-card {
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius-md);
    padding: 12px;
    display: flex; flex-direction: column; gap: 8px;
}
.hb-mini-card-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.75rem; color: var(--hb-ink-soft);
}
.hb-mini-add, .hb-mini-badge { color: var(--hb-blue); font-weight: 600; font-size: 0.7rem; }
.hb-mini-badge { background: #DCFCE7; color: #166534; padding: 2px 6px; border-radius: 999px; }

.hb-mini-visual {
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    display: flex; flex-direction: column; gap: 4px;
}
.hb-mini-status { font-size: 0.65rem; color: #10B981; }
.hb-mini-balance { font-size: 1.1rem; font-weight: 700; }
.hb-mini-card-num { font-size: 0.7rem; letter-spacing: 2px; opacity: 0.7; }

.hb-mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.hb-mini-bars--tall { height: 96px; }
.hb-mini-bar { flex: 1; background: #CBD5E1; border-radius: 3px 3px 0 0; }
.hb-mini-bar--accent { background: var(--hb-green); }
.hb-mini-bar--blue { background: var(--hb-blue); }
.hb-mini-bar--light { background: #DBEAFE; }

@media (max-width: 640px) {
    .hb-mini-app { grid-template-columns: 1fr; }
    .hb-mini-sidebar { display: none; }
    .hb-mini-widgets { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Style 3 � Mobile analytics + email capture
   ========================================================================== */

.hb-03 { background: linear-gradient(180deg, #FFFFFF, #F8FAFC); }

.hb-phone {
    width: 320px;
    max-width: 100%;
    background: #0F172A;
    border-radius: 32px;
    padding: 12px;
    box-shadow: var(--hb-shadow-lg);
    color: #fff;
}
.hb-phone-img {
    width: 320px; max-width: 100%;
    border-radius: 32px;
    box-shadow: var(--hb-shadow-lg);
}

.hb-phone-bar {
    display: flex; justify-content: space-between; padding: 6px 12px;
    font-size: 0.75rem; color: #fff;
}
.hb-phone-body {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 12px;
    display: flex; flex-direction: column; gap: 10px;
    color: var(--hb-ink);
}
.hb-phone-widget {
    background: #fff;
    border-radius: var(--hb-radius-md);
    padding: 12px;
    display: flex; flex-direction: column; gap: 8px;
    box-shadow: var(--hb-shadow-sm);
}
.hb-phone-widget-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.8rem;
}
.hb-chip {
    background: #F1F5F9; color: var(--hb-ink-soft);
    padding: 2px 8px; border-radius: 999px; font-size: 0.7rem; font-weight: 500;
}
.hb-phone-stat {
    font-size: 1.4rem; font-weight: 700; color: var(--hb-ink);
    display: flex; align-items: baseline; gap: 8px;
}
.hb-delta-up { color: var(--hb-green); font-size: 0.75rem; font-weight: 500; }

.hb-phone-segbar {
    height: 8px; background: #E2E8F0; border-radius: 999px; overflow: hidden;
}
.hb-phone-segbar span {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--hb-blue), #7C3AED);
}

.hb-phone-donut { display: flex; gap: 12px; align-items: center; }
.hb-donut {
    width: 60px; height: 60px; border-radius: 50%;
    background: conic-gradient(#F97316 0 32%, #F59E0B 32% 78%, #14B8A6 78% 100%);
    position: relative; flex-shrink: 0;
}
.hb-donut::after {
    content:""; position:absolute; inset:12px; background:#fff; border-radius:50%;
}
.hb-donut-legend {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 4px; font-size: 0.7rem;
}
.hb-donut-legend .hb-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    margin-right: 6px; vertical-align: middle;
}

.hb-phone-hbars {
    display: flex; flex-direction: column; gap: 4px;
}
.hb-phone-hbars span {
    display: block; height: 8px; border-radius: 4px;
    background: var(--hb-blue);
}
.hb-phone-hbars span:nth-child(2) { background: #93C5FD; }
.hb-phone-hbars span:nth-child(3) { background: #DBEAFE; }

/* Email form */

.hb-email-form { margin-bottom: 20px; }
.hb-email-label {
    display: block; font-size: 0.85rem; color: var(--hb-ink-soft);
    margin-bottom: 8px;
}
.hb-email-wrap {
    position: relative; margin-bottom: 12px;
}
.hb-email-wrap svg {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
}
.hb-email-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--hb-ink);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.hb-email-wrap input:focus {
    outline: none;
    border-color: var(--hb-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ==========================================================================
   Style 4 � Photo + floating widget
   ========================================================================== */

.hb-04 { background: #fff; }

.hb-04-grid { grid-template-columns: 1fr 1.05fr; }

.hb-blue-accent { position: relative; padding-left: 24px; }
.hb-blue-accent::before {
    content: "";
    position: absolute; left: 0; top: 8px; bottom: 40px;
    width: 3px; border-radius: 2px;
    background: linear-gradient(180deg, var(--hb-blue), transparent);
}

.hb-photo-container { position: relative; }
.hb-photo-card {
    position: relative;
    border-radius: var(--hb-radius-xl);
    overflow: visible;
    background: linear-gradient(135deg, #EEF2FF, #F0F9FF);
    aspect-ratio: 4 / 5;
    max-height: 620px;
}
.hb-photo-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--hb-radius-xl);
    display: block;
}
.hb-photo-card > .hb-media-video,
.hb-photo-img.hb-media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--hb-radius-xl);
    display: block;
}
.hb-phone-img.hb-media-video,
.hb-split-mockup > .hb-media-video {
    width: 100%;
    max-width: 320px;
    border-radius: 32px;
    display: block;
    object-fit: cover;
}
.hb-photo-placeholder {
    width: 100%; height: 100%;
    border-radius: var(--hb-radius-xl);
    background:
        radial-gradient(circle at 30% 30%, rgba(37,99,235,0.15), transparent 60%),
        linear-gradient(135deg, #DBEAFE, #F0F9FF);
}

.hb-floating-widget {
    position: absolute;
    right: -12px;
    bottom: 24px;
    width: 280px;
    max-width: 80%;
    background: #fff;
    border-radius: var(--hb-radius-lg);
    padding: 14px;
    box-shadow: var(--hb-shadow-lg);
    display: flex; flex-direction: column; gap: 8px;
    color: var(--hb-ink);
}

@media (max-width: 900px) {
    .hb-photo-card { aspect-ratio: 4 / 3; }
    .hb-floating-widget { right: 16px; bottom: 16px; width: 240px; }
}

/* ==========================================================================
   Style 5 � Banking control center
   ========================================================================== */

.hb-05 {
    background:
        radial-gradient(800px 400px at 90% 20%, rgba(37, 99, 235, 0.08), transparent 60%),
        linear-gradient(180deg, #FFFFFF, #F8FAFF);
}

.hb-banking-dash {
    display: flex; flex-direction: column; gap: 12px;
    color: var(--hb-ink);
}
.hb-bank-user {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 12px;
    background: #F8FAFC;
    border-radius: var(--hb-radius-md);
}
.hb-bank-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
}
.hb-bank-sub { font-size: 0.75rem; color: var(--hb-ink-soft); }

.hb-bank-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hb-bank-box {
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius-md);
    padding: 14px;
    display: flex; flex-direction: column; gap: 10px;
}
.hb-bank-box--wide { grid-column: 1 / -1; }
.hb-bank-box-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.8rem; color: var(--hb-ink);
    font-weight: 600;
}
.hb-blue-link { color: var(--hb-blue); font-size: 0.7rem; }
.hb-sub-link { color: var(--hb-muted); font-size: 0.7rem; }

.hb-virtual-card {
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: #fff;
    padding: 14px;
    border-radius: var(--hb-radius-sm);
    display: flex; flex-direction: column; gap: 4px;
}
.hb-status-active { font-size: 0.7rem; color: #10B981; }
.hb-balance-big { font-size: 1.4rem; font-weight: 700; }
.hb-card-num-row { font-size: 0.75rem; opacity: 0.7; letter-spacing: 2px; }

.hb-gauge {
    position: relative; height: 120px;
    display: flex; align-items: center; justify-content: center;
}
.hb-gauge-arc {
    width: 160px; height: 80px;
    border-radius: 160px 160px 0 0;
    background:
        conic-gradient(from -90deg at 50% 100%, var(--hb-blue) 0deg, var(--hb-blue) 130deg, #E2E8F0 130deg, #E2E8F0 180deg);
    -webkit-mask: radial-gradient(circle at 50% 100%, transparent 44px, #000 45px);
            mask: radial-gradient(circle at 50% 100%, transparent 44px, #000 45px);
}
.hb-gauge-val {
    position: absolute; bottom: 6px;
    display: flex; flex-direction: column; align-items: center;
}
.hb-gauge-lbl { font-size: 0.65rem; color: var(--hb-muted); letter-spacing: 0.1em; }
.hb-gauge-num { font-weight: 700; color: var(--hb-ink); }

.hb-tx-row {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--hb-line-soft);
}
.hb-tx-row:first-of-type { border-top: 0; }
.hb-tx-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.hb-tx-icon--red { background: #EF4444; }
.hb-tx-icon--green { background: #10B981; }
.hb-tx-info { flex: 1; display: flex; flex-direction: column; }
.hb-tx-info strong { font-size: 0.85rem; }
.hb-tx-info span { font-size: 0.75rem; color: var(--hb-ink-soft); }
.hb-tx-amount { color: var(--hb-green); font-weight: 700; }

/* ==========================================================================
   Dark mode
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .hb {
        --hb-bg: #0F172A;
        --hb-bg-soft: #111827;
        --hb-ink: #F1F5F9;
        --hb-ink-soft: #94A3B8;
        --hb-muted: #64748B;
        --hb-line: #1E293B;
        --hb-line-soft: #1E293B;
    }
    .hb-01 { background:
        radial-gradient(1200px 500px at 50% -10%, rgba(37, 99, 235, 0.18), transparent 60%),
        linear-gradient(180deg, #0B1220 0%, #0F172A 40%);
    }
    .hb-01::before { opacity: 0.25; }
    .hb-btn-outline, .hb-btn-soft, .hb-rating-pill,
    .hb-browser, .hb-mini-card, .hb-phone-widget,
    .hb-bank-box, .hb-floating-widget, .hb-pill {
        background: #1E293B;
        border-color: #334155;
        color: var(--hb-ink);
    }
    .hb-browser-head, .hb-bank-user, .hb-mini-sidebar {
        background: #111827;
        border-color: #1E293B;
    }
    .hb-mini-menu-item.is-active { background: #1E293B; color: var(--hb-ink); }
    .hb-brand-logo { color: #475569; }
    .hb-brand-logo:hover { color: var(--hb-ink); }
    .hb-phone-body { background: #111827; }
    .hb-donut::after { background: #1E293B; }
    .hb-email-wrap input { background: #1E293B; color: var(--hb-ink); border-color: #334155; }
}

/* ==========================================================================
   Mobile fine-tuning
   ========================================================================== */

@media (max-width: 640px) {
    .hb { padding-top: 40px; padding-bottom: 32px; }
    .hb-title-xl { font-size: 2.25rem; }
    .hb-cta-row { flex-direction: column; align-items: stretch; }
    .hb-cta-row--center { align-items: center; }
    .hb-btn { justify-content: center; }
    .hb-rating-group { flex-direction: row; }
    .hb-04-grid { grid-template-columns: 1fr; }
    .hb-blue-accent { padding-left: 16px; }
}

/* ==========================================================================
   Hero Block sections � CloudPartner proposal (stats / features / how /
   integrations / cta / brands). Namespaced under .hb-section but reusing
   the .stats / .feat-grid / .how-timeline / .integ-grid / .cta-box /
   .brands-row class names from the original proposal.
   ========================================================================== */

.hb-section {
    --blue: #1a73e8;
    --blue-deep: #1557b0;
    --blue-soft: #eaf2fe;
    --blue-glow: rgba(26,115,232,0.35);
    --navy: #0f1a30;
    --ink: #1a2440;
    --ink-muted: #5b6478;
    --bg: #ffffff;
    --surface: #ffffff;
    --line: #e5e9f2;
    --line-soft: #f0f3f9;
    --radius-sm: 10px;
    --shadow: 0 10px 24px rgba(15,23,42,0.06);
    --shadow-lg: 0 30px 60px -20px rgba(15,23,42,0.25);
    --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    padding: 4.5rem 0;
    font-family: var(--display);
    color: var(--ink);
}

/* Section Theme � colors from Hero Settings (--hb-theme-*-bg/text) */
.hb-section.hb-theme-default {
    background: var(--hb-theme-default-bg, #ffffff);
    color: var(--hb-theme-default-text, #0f172a);
}
.hb-section.hb-theme-gray {
    background: var(--hb-theme-gray-bg, #eef2f7);
    color: var(--hb-theme-gray-text, #0f172a);
}
.hb-section.hb-theme-primary {
    background: var(--hb-theme-primary-bg, #2563eb);
    color: var(--hb-theme-primary-text, #ffffff);
}
.hb-section.hb-theme-default .section-head h2,
.hb-section.hb-theme-gray .section-head h2,
.hb-section.hb-theme-default h2,
.hb-section.hb-theme-gray h2 {
    color: inherit;
}
.hb-section.hb-theme-primary .section-head h2,
.hb-section.hb-theme-primary h2,
.hb-section.hb-theme-primary .section-head p,
.hb-section.hb-theme-primary .hb-graphics__subtitle,
.hb-section.hb-theme-primary .hb-graphics__body,
.hb-section.hb-theme-primary .hb-graphics__body li,
.hb-section.hb-theme-primary .hb-graphics__price-amount {
    color: var(--hb-theme-primary-text, #ffffff);
}
.hb-section.hb-theme-primary .eyebrow {
    color: var(--hb-theme-primary-text, #ffffff);
    background: rgba(255, 255, 255, 0.14);
}
.hb-section.hb-theme-primary .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--hb-theme-primary-text, #ffffff);
}
.hb-section.hb-theme-primary .hb-graphics__price-label {
    color: rgba(255, 255, 255, 0.75);
}
.hb-section.hb-theme-primary .stat-card .label,
.hb-section.hb-theme-primary .brands-label {
    color: rgba(255, 255, 255, 0.85);
}

.hb-section, .hb-section * { box-sizing: border-box; }
.hb-section .container, .hb-section .hb-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}
.hb-section .section-head { max-width: 720px; margin-bottom: 2.5rem; }
.hb-section .section-head.center { text-align: center; margin-inline: auto; }
.hb-section .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}
.hb-section .section-head h2 {
    font-family: var(--display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--navy);
    margin: 0 0 0.85rem;
    text-wrap: balance;
}
.hb-section .section-head p {
    color: var(--ink-muted);
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0;
    text-wrap: pretty;
}

/* Buttons (only if the theme doesn't already ship .btn) */
.hb-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.15rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .15s;
}
.hb-section .btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 8px 18px rgba(26,115,232,0.22);
}
.hb-section .btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.hb-section .btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.hb-section .btn-outline:hover { background: var(--blue); color: #fff; }
.hb-section .btn-lg { padding: 0.9rem 1.4rem; font-size: 0.95rem; }

/* Stats */
.hb-section.stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.hb-section.stats .stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.75rem 1.35rem;
    text-align: center;
}
.hb-section.stats .stat-card .value {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.hb-section.stats .stat-card .label {
    font-size: 0.9rem;
    color: var(--ink-muted);
    font-weight: 600;
}
@media (max-width: 900px) { .hb-section.stats .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hb-section.stats .stats-grid { grid-template-columns: 1fr; } }

/* Features (AlignUI: cards / steps / bento / list / minimal) */
.hb-section.features { padding: 5rem 0; }
.hb-section.features.alt { background: #f7fbff; border-block: 1px solid var(--line-soft); }
.hb-section.features .section-head.center { text-align: center; margin-bottom: 2.25rem; }
.hb-section.features .hb-features__cta { text-align: center; margin-top: 2rem; }

.hb-feat-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
}
.hb-feat-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
.hb-feat-icon svg,
.hb-feat-icon i,
.hb-feat-icon .icon {
    width: 18px;
    height: 18px;
    font-size: 18px;
}
/* Media logos: no gray/blue badge behind the image */
.hb-feat-icon--image {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent !important;
    border-radius: 0;
}
.hb-feat-icon--soft { background: #f1f5f9; color: #475569; }
.hb-feat-icon--orange { background: #fff7ed; color: #ea580c; }
.hb-feat-icon--red { background: #fef2f2; color: #ef4444; }
.hb-feat-icon--blue { background: #eff6ff; color: #2563eb; }
.hb-feat-icon--purple { background: #f3e8ff; color: #9333ea; }
.hb-feat-icon--pink { background: #fce7f3; color: #ec4899; }
.hb-feat-icon--green { background: #ecfdf5; color: #059669; }
.hb-feat-icon--image.hb-feat-icon--soft,
.hb-feat-icon--image.hb-feat-icon--orange,
.hb-feat-icon--image.hb-feat-icon--red,
.hb-feat-icon--image.hb-feat-icon--blue,
.hb-feat-icon--image.hb-feat-icon--purple,
.hb-feat-icon--image.hb-feat-icon--pink,
.hb-feat-icon--image.hb-feat-icon--green {
    background: transparent !important;
}

/* Icon / logo size (shortcode size=sm|md|lg) */
.hb-features--size-sm .hb-feat-icon:not(.hb-feat-icon--image) { width: 32px; height: 32px; border-radius: 8px; }
.hb-features--size-sm .hb-feat-icon:not(.hb-feat-icon--image) svg,
.hb-features--size-sm .hb-feat-icon:not(.hb-feat-icon--image) i,
.hb-features--size-sm .hb-feat-icon:not(.hb-feat-icon--image) .icon { width: 16px; height: 16px; font-size: 16px; }
.hb-features--size-sm .hb-feat-icon--image img { width: 36px; height: 36px; }

.hb-features--size-md .hb-feat-icon:not(.hb-feat-icon--image) { width: 44px; height: 44px; }
.hb-features--size-md .hb-feat-icon:not(.hb-feat-icon--image) svg,
.hb-features--size-md .hb-feat-icon:not(.hb-feat-icon--image) i,
.hb-features--size-md .hb-feat-icon:not(.hb-feat-icon--image) .icon { width: 22px; height: 22px; font-size: 22px; }
.hb-features--size-md .hb-feat-icon--image img { width: 56px; height: 56px; }

.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) { width: 64px; height: 64px; border-radius: 16px; }
.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) svg,
.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) i,
.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) .icon { width: 32px; height: 32px; font-size: 32px; }
.hb-features--size-lg .hb-feat-icon--image img { width: 88px; height: 88px; }

/* Minimal centered � logos/icons read larger by default */
.hb-features--minimal .hb-feat-minimal__item .hb-feat-icon { margin-bottom: 1.25rem; }
.hb-features--minimal.hb-features--size-sm .hb-feat-icon--image img { width: 48px; height: 48px; }
.hb-features--minimal.hb-features--size-md .hb-feat-icon--image img { width: 72px; height: 72px; }
.hb-features--minimal.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) {
  width: 80px; height: 80px; border-radius: 20px;
}
.hb-features--minimal.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) svg,
.hb-features--minimal.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) i,
.hb-features--minimal.hb-features--size-lg .hb-feat-icon:not(.hb-feat-icon--image) .icon {
  width: 40px; height: 40px; font-size: 40px;
}
.hb-features--minimal.hb-features--size-lg .hb-feat-icon--image img { width: 112px; height: 112px; }
.hb-features--minimal.hb-features--size-lg .hb-feat-minimal__item h3 { font-size: 1.2rem; }
.hb-features--minimal.hb-features--size-lg .hb-feat-minimal__item p { font-size: 0.95rem; }

.hb-features.has-bg {
  border-block: none;
}

/* cards � Feat 01 / SiteLock grid */
.hb-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.hb-feat-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform .2s ease, box-shadow .2s ease;
}
.hb-feat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.hb-feat-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
    color: #0f172a;
}
.hb-feat-card p { font-size: 0.88rem; color: #475569; margin: 0; line-height: 1.5; }

/* steps � Feat 02 */
.hb-feat-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.hb-feat-steps--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-steps--3 { grid-template-columns: repeat(3, 1fr); }
.hb-feat-steps--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-step {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}
.hb-feat-step__num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.hb-feat-step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    color: #0f172a;
}
.hb-feat-step p { font-size: 0.88rem; color: #475569; margin: 0; line-height: 1.5; }

/* bento � Feat 03 */
.hb-feat-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.hb-feat-bento__col { display: flex; flex-direction: column; gap: 1.25rem; }
.hb-feat-bento__card {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-align: left;
    flex-grow: 1;
}
.hb-feat-bento__card--tall { display: flex; flex-direction: column; justify-content: flex-start; min-height: 100%; }
.hb-feat-bento__card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    color: #0f172a;
}
.hb-feat-bento__card p { font-size: 0.88rem; color: #475569; margin: 0; line-height: 1.5; }

/* list � compact icon rows */
.hb-feat-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1.75rem;
}
.hb-feat-list--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-list--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-list__item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    text-align: left;
}
.hb-feat-list__item .hb-feat-icon { margin-bottom: 0; }
.hb-feat-list__copy h3 {
    font-size: 1.02rem;
    font-weight: 800;
    margin: 0 0 0.3rem;
    color: #0f172a;
}
.hb-feat-list__copy p { font-size: 0.88rem; color: #475569; margin: 0; line-height: 1.5; }

/* minimal � soft centered tiles */
.hb-feat-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hb-feat-minimal--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-minimal--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-minimal__item { text-align: center; padding: 0.5rem 0.75rem; }
.hb-feat-minimal__item .hb-feat-icon { margin-left: auto; margin-right: auto; }
.hb-feat-minimal__item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: #0f172a;
}
.hb-feat-minimal__item p { font-size: 0.88rem; color: #475569; margin: 0; line-height: 1.5; }

/* Legacy class aliases (old feat-grid markup) */
.hb-section.features .feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.hb-section.features .feat-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hb-section.features .feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.hb-section.features .feat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    transition: transform .2s, box-shadow .2s;
}
.hb-section.features .feat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.hb-section.features .feat-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid; place-items: center;
    background: #eff6ff;
    color: #2563eb;
    margin-bottom: 1rem;
}
.hb-section.features .feat-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
    color: #0f172a;
}
.hb-section.features .feat-card p { font-size: 0.88rem; color: #475569; margin: 0; line-height: 1.5; }

@media (max-width: 900px) {
    .hb-feat-grid,
    .hb-feat-grid--4,
    .hb-feat-steps,
    .hb-feat-steps--4,
    .hb-feat-bento,
    .hb-feat-list,
    .hb-feat-list--4,
    .hb-feat-minimal,
    .hb-feat-minimal--4,
    .hb-feat-lagom,
    .hb-feat-lagom--4,
    .hb-feat-sitelock,
    .hb-feat-sitelock--4,
    .hb-feat-security,
    .hb-feat-security--4,
    .hb-feat-metrics,
    .hb-feat-metrics--4,
    .hb-section.features .feat-grid,
    .hb-section.features .feat-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .hb-feat-photo { grid-template-columns: 1fr; }
    .hb-feat-tabs__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .hb-feat-grid,
    .hb-feat-grid--2,
    .hb-feat-grid--4,
    .hb-feat-steps,
    .hb-feat-steps--2,
    .hb-feat-steps--3,
    .hb-feat-steps--4,
    .hb-feat-bento,
    .hb-feat-list,
    .hb-feat-list--2,
    .hb-feat-list--4,
    .hb-feat-minimal,
    .hb-feat-minimal--2,
    .hb-feat-minimal--4,
    .hb-feat-lagom,
    .hb-feat-lagom--2,
    .hb-feat-lagom--4,
    .hb-feat-sitelock,
    .hb-feat-sitelock--2,
    .hb-feat-sitelock--4,
    .hb-feat-security,
    .hb-feat-security--2,
    .hb-feat-security--4,
    .hb-feat-metrics,
    .hb-feat-metrics--2,
    .hb-feat-metrics--4,
    .hb-section.features .feat-grid,
    .hb-section.features .feat-grid--2,
    .hb-section.features .feat-grid--4 { grid-template-columns: 1fr; }
}

/* Feat 03 bento chart */
.hb-feat-bento__chart {
    display: flex; align-items: flex-end; gap: 6px;
    height: 90px; margin-top: 24px;
    background: #fff; padding: 12px;
    border-radius: 12px; border: 1px solid #e2e8f0;
}
.hb-feat-bento__chart .b { flex-grow: 1; border-radius: 3px; background: #dbeafe; }
.hb-feat-bento__chart .b1 { height: 40%; }
.hb-feat-bento__chart .b2 { height: 75%; }
.hb-feat-bento__chart .b3 { height: 60%; }
.hb-feat-bento__chart .b4 { height: 100%; background: #2563eb; }

/* Feat 04 / 05 � photo split */
.hb-feat-photo {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.hb-feat-photo__frame {
    width: 100%;
    max-width: 420px;
    height: 420px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #f1f5f9;
}
.hb-feat-photo__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hb-feat-photo__pill {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 1rem;
}
.hb-feat-photo__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 0.75rem;
    text-align: left;
}
.hb-feat-photo__desc { color: #475569; margin: 0 0 1.5rem; line-height: 1.6; }
.hb-feat-photo__list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.hb-feat-photo__list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.hb-feat-photo__check {
    width: 20px; height: 20px; border-radius: 50%;
    background: #2563eb; color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
    font-size: 0.7rem;
}
.hb-feat-photo__check .hb-feat-icon { width: auto; height: auto; margin: 0; background: transparent; }
.hb-feat-photo__text { display: flex; flex-direction: column; gap: 0.15rem; font-weight: 600; font-size: 0.95rem; color: #0f172a; }
.hb-feat-photo__text span { font-weight: 400; color: #475569; font-size: 0.88rem; }
.hb-feat-photo__cta { margin: 0; }

/* Feat 05 FAQ */
.hb-feat-faq { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.25rem; }
.hb-feat-faq__item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.hb-feat-faq__head {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: none;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #0f172a;
}
.hb-feat-faq__icon { font-size: 1.2rem; transition: transform .2s; }
.hb-feat-faq__item.is-open .hb-feat-faq__icon { transform: rotate(45deg); }
.hb-feat-faq__body { padding: 0 18px 14px; font-size: 0.85rem; color: #475569; line-height: 1.5; }
.hb-feat-faq__body p { margin: 0; }

/* Feat 06 Lagom */
.hb-feat-lagom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}
.hb-feat-lagom--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-lagom--3 { grid-template-columns: repeat(3, 1fr); }
.hb-feat-lagom--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-lagom__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    text-align: left;
    transition: all .2s ease;
}
.hb-feat-lagom__card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}
.hb-feat-lagom__card h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 0.4rem; color: #0f172a; }
.hb-feat-lagom__card p { font-size: 0.85rem; color: #475569; margin: 0; line-height: 1.5; }

/* Feat 07 Tabs */
.hb-feat-tabs__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
}
.hb-feat-tabs__btn {
    background: #f1f5f9;
    border: none;
    padding: 10px 20px;
    border-radius: 9999px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all .2s ease;
}
.hb-feat-tabs__btn.is-active,
.hb-feat-tabs__btn:hover { background: #2563eb; color: #fff; }
.hb-feat-tabs__btn-icon .hb-feat-icon {
    width: 22px; height: 22px; margin: 0; border-radius: 6px;
    background: rgba(255,255,255,0.2);
}
.hb-feat-tabs__btn:not(.is-active) .hb-feat-tabs__btn-icon .hb-feat-icon { background: #e2e8f0; }
.hb-feat-icon--tab { margin-bottom: 0 !important; }
.hb-feat-tabs__panels {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.25rem;
}
.hb-feat-tabs__panel { display: none; }
.hb-feat-tabs__panel.is-active { display: block; }
.hb-feat-tabs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}
.hb-feat-tabs__copy h3 { font-size: 1.6rem; font-weight: 800; margin: 0 0 0.6rem; color: #0f172a; }
.hb-feat-tabs__copy p { color: #475569; line-height: 1.6; margin: 0 0 1rem; }
.hb-feat-tabs__badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    background: #eff6ff;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 9999px;
}
.hb-feat-tabs__graphic {
    min-height: 180px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hb-feat-tabs__graphic--0 { background: linear-gradient(135deg, #1e293b, #0f172a); }
.hb-feat-tabs__graphic--1 { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.hb-feat-tabs__graphic--2 { background: linear-gradient(135deg, #9333ea, #db2777); }
.hb-feat-icon--tab-lg {
    width: auto !important; height: auto !important;
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 12px;
    margin: 0 !important;
}
.hb-feat-icon--tab-lg.hb-feat-icon--image { background: transparent !important; padding: 0; }
.hb-feat-icon--tab-lg img { width: 48px; height: 48px; }

/* Feat 08 SiteLock orbit */
.hb-feat-sitelock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hb-feat-sitelock--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-sitelock--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-sitelock__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hb-feat-sitelock__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
    border-color: #2563eb;
}
.hb-feat-sitelock__card h3 { font-size: 1.15rem; font-weight: 800; color: #0f172a; margin: 0 0 0.75rem; }
.hb-feat-sitelock__card p { font-size: 0.88rem; color: #64748b; line-height: 1.6; margin: 0; }
.hb-feat-orbit {
    position: relative;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.hb-feat-orbit__ring {
    position: absolute; inset: 0;
    border: 2px dashed #93c5fd;
    border-radius: 50%;
    animation: hbFeatOrbit 20s linear infinite;
}
@keyframes hbFeatOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hb-feat-orbit__inner {
    position: relative; z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    color: #fff;
    overflow: hidden;
}
.hb-feat-icon--orbit {
    width: auto !important; height: auto !important;
    margin: 0 !important;
    background: transparent !important;
    color: #fff !important;
}
.hb-feat-icon--orbit img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.hb-feat-icon--orbit svg,
.hb-feat-icon--orbit i { width: 22px; height: 22px; font-size: 22px; color: #fff; }

/* Feat 09 Security */
.hb-feat-security {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hb-feat-security--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-security--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-security__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all .25s ease;
}
.hb-feat-security__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.hb-feat-security__card--highlight {
    border-color: #c084fc;
    background: linear-gradient(180deg, #faf5ff, #fff);
}
.hb-feat-security__card h3 { font-size: 1.2rem; font-weight: 800; color: #0f172a; margin: 0 0 0.5rem; }
.hb-feat-security__card p { font-size: 0.9rem; color: #475569; line-height: 1.55; margin: 0 0 1.5rem; flex-grow: 1; }
.hb-feat-security__pill {
    font-size: 0.75rem; font-weight: 700;
    background: #eff6ff; color: #2563eb;
    padding: 4px 12px; border-radius: 9999px;
}
.hb-feat-security__pill--purple { background: #f3e8ff; color: #9333ea; }
.hb-feat-security__pill--green { background: #dcfce7; color: #16a34a; }
.hb-feat-icon--sec-blue { background: #eff6ff; color: #2563eb; border-radius: 14px; width: 44px; height: 44px; }
.hb-feat-icon--sec-purple { background: #f3e8ff; color: #9333ea; border-radius: 14px; width: 44px; height: 44px; }
.hb-feat-icon--sec-green { background: #dcfce7; color: #16a34a; border-radius: 14px; width: 44px; height: 44px; }

/* Feat 10 Metrics */
.hb-feat-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hb-feat-metrics--2 { grid-template-columns: repeat(2, 1fr); }
.hb-feat-metrics--4 { grid-template-columns: repeat(4, 1fr); }
.hb-feat-metrics__card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    text-align: center;
}
.hb-feat-metrics__card--highlight {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.hb-feat-metrics__val {
    font-size: 2.8rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    line-height: 1;
}
.hb-feat-metrics__card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    color: #0f172a;
}
.hb-feat-metrics__card p { font-size: 0.88rem; color: #475569; margin: 0; }

/* How it works */
.hb-section.how { padding: 5rem 0; background: #f7fbff; border-block: 1px solid var(--line-soft); }
.hb-section.how .how-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.hb-section.how .how-step {
    background: linear-gradient(180deg, #fff, #f8fbff);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.75rem 1.35rem;
    position: relative;
}
.hb-section.how .how-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(26,115,232,0.25);
}
.hb-section.how .how-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    color: var(--navy);
}
.hb-section.how .how-step p { font-size: 0.92rem; color: var(--ink-muted); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .hb-section.how .how-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hb-section.how .how-timeline { grid-template-columns: 1fr; } }

/* Integrations */
.hb-section.integrations { padding: 5rem 0; }
.hb-section.integrations.integrations--no-title { padding-top: 3rem; padding-bottom: 3rem; }
.hb-section.integrations .integ-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

/* Kill gray shadows from theme / global card rules */
.hb-section.integrations .integ-item,
.hb-section.integrations .integ-item:hover,
.hb-section.integrations .integ-item:focus,
.hb-section.integrations .integ-strip__item,
.hb-section.integrations .integ-strip__item:hover,
.hb-section.integrations .integ-icon,
.hb-section.integrations .integ-icon img,
.hb-section.integrations .integ-strip__icon img {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

.hb-section.integrations .integ-item {
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy, #1e2a4a);
    transition: border-color .15s, transform .15s;
}
.hb-section.integrations .integ-item .integ-name {
    display: block;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.hb-section.integrations .integ-item span.integ-icon,
.hb-section.integrations .integ-item .integ-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 0.65rem;
    border-radius: 10px;
    background: transparent;
    color: var(--blue, #1a73e8);
    font-weight: 800;
    box-shadow: none !important;
}
.hb-section.integrations .integ-item .integ-icon--image {
    background: transparent !important;
    padding: 0;
    overflow: hidden;
}
.hb-section.integrations .integ-item .integ-icon--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
}

/* Style 1: boxed � white card, NO gray shadow / soft glow */
.hb-section.integrations.integrations--boxed .integ-item,
.hb-section.integrations .integ-item--boxed {
    background: #fff !important;
    border: 1px solid #e6ebf2 !important;
    border-radius: 14px;
    padding: 1.25rem 0.75rem;
    box-shadow: none !important;
}
.hb-section.integrations.integrations--boxed .integ-item:hover,
.hb-section.integrations .integ-item--boxed:hover {
    border-color: #c5d4e8 !important;
    box-shadow: none !important;
    transform: none;
}

/* Style 2: plain � logos only, no card, no shadow */
.hb-section.integrations.integrations--plain .integ-grid--plain {
    gap: 1.75rem 1.25rem;
}
.hb-section.integrations.integrations--plain .integ-item,
.hb-section.integrations .integ-item--plain {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0.35rem !important;
    box-shadow: none !important;
    color: transparent;
    font-size: 0;
}
.hb-section.integrations.integrations--plain .integ-item:hover,
.hb-section.integrations .integ-item--plain:hover {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: translateY(-2px);
}
.hb-section.integrations.integrations--plain .integ-item .integ-icon,
.hb-section.integrations .integ-item--plain .integ-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.hb-section.integrations.integrations--plain .integ-item .integ-name,
.hb-section.integrations .integ-item--plain .integ-name {
    display: none !important;
}

/* Style 3: strip � compact logos only */
.hb-section.integrations .integ-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    padding: 0.5rem 0;
}
.hb-section.integrations .integ-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    opacity: 0.85;
    transition: opacity .2s, transform .2s;
}
.hb-section.integrations .integ-strip__item:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: none !important;
}
.hb-section.integrations .integ-strip__icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 40px;
    background: transparent !important;
    box-shadow: none !important;
}
.hb-section.integrations .integ-strip__icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: none !important;
}
.hb-section.integrations .integ-strip__fallback {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-soft, #e8f1fc);
    color: var(--blue, #1a73e8);
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: none !important;
}
.hb-section.integrations .integ-strip__name {
    display: none !important;
}

@media (max-width: 900px) { .hb-section.integrations .integ-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) {
    .hb-section.integrations .integ-grid { grid-template-columns: repeat(2, 1fr); }
    .hb-section.integrations .integ-strip { gap: 0.75rem 1.1rem; }
}

/* CTA */
.hb-section.cta-block { padding: 5rem 0; }
.hb-section .cta-box {
    border-radius: 24px;
    padding: 3.25rem 2.5rem;
    background:
        radial-gradient(circle at 90% 20%, rgba(255,255,255,0.15), transparent 40%),
        linear-gradient(125deg, #1e2a4a 0%, #1a4f9c 55%, #1a73e8 100%);
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}
.hb-section .cta-box--center {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}
.hb-section .cta-box--split { grid-template-columns: 1fr 1fr; }
.hb-section .cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 0.65rem;
    color: #fff;
}
.hb-section .cta-box p { opacity: 0.88; max-width: 480px; font-size: 1.05rem; margin: 0; line-height: 1.5; }
.hb-section .cta-box .cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hb-section .cta-box .btn-primary {
    background: #fff;
    color: var(--blue-deep);
    border-color: #fff;
    box-shadow: none;
}
.hb-section .cta-box .btn-primary:hover { background: var(--blue-soft); border-color: var(--blue-soft); }
.hb-section .cta-box .btn-outline {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    background: transparent;
}
.hb-section .cta-box .btn-outline:hover { background: #fff; color: var(--blue-deep); border-color: #fff; }
.hb-section.cta-block--soft .cta-box {
    background: var(--blue-soft);
    color: var(--navy);
}
.hb-section.cta-block--soft .cta-box h2 { color: var(--navy); }
.hb-section.cta-block--soft .cta-box p { color: var(--ink-muted); opacity: 1; }
.hb-section.cta-block--soft .cta-box .btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.hb-section.cta-block--soft .cta-box .btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
@media (max-width: 720px) {
    .hb-section .cta-box, .hb-section .cta-box--split { grid-template-columns: 1fr; text-align: left; }
    .hb-section .cta-box p { max-width: none; }
}

/* Brands */
.hb-section.brands { padding: 2.5rem 0; }
.hb-section.brands .brands-label {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 600;
    margin: 0 0 1.25rem;
}
.hb-section.brands .brands-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
    opacity: 0.85;
}
.hb-section.brands .brand-item {
    font-weight: 700;
    font-size: 1.05rem;
    color: #6b7589;
    letter-spacing: -0.02em;
}
.hb-section.brands .brand-item--img img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Price compare table */
.hb-section.price-compare {
    padding: 5rem 0;
    background: #f7fbff;
    border-block: 1px solid var(--line-soft);
}
/* The card chrome lives on the wrapper: `overflow:hidden` on the <table> itself
   made the table its own scroll container, so narrow screens squeezed the columns
   and the last one could never be reached. */
.hb-section.price-compare .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.hb-section.price-compare .compare-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #fff;
}
.hb-section.price-compare .compare-table th,
.hb-section.price-compare .compare-table td {
    padding: 1rem 1.15rem;
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.92rem;
}
.hb-section.price-compare .compare-table th {
    background: #f7fbff;
    font-weight: 700;
    color: var(--navy);
}
.hb-section.price-compare .compare-table td:not(:first-child),
.hb-section.price-compare .compare-table th:not(:first-child) {
    text-align: center;
}
.hb-section.price-compare .compare-table tr:last-child td { border-bottom: none; }
.hb-section.price-compare .compare-table .yes { color: #16a34a; font-weight: 700; }
.hb-section.price-compare .compare-table .no { color: #b0b8c6; }

/* Plans */
.hb-section.plans { padding: 5rem 0; }
.hb-section.plans .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.hb-section.plans .plan {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.85rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}
.hb-section.plans .plan.featured {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, #fff 0%, #f3f8ff 100%);
}
.hb-section.plans .plan-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}
.hb-section.plans .plan h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--navy);
}
.hb-section.plans .plan > p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0 0 1.25rem;
}
.hb-section.plans .plan-price {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    margin: 0 0 0.25rem;
    line-height: 1;
}
.hb-section.plans .plan-price span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0;
}
.hb-section.plans .plan-note {
    font-size: 0.8rem;
    color: #8a94a8;
    margin: 0 0 1.5rem;
}
.hb-section.plans .plan ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0 0 1.75rem;
    flex: 1;
}
.hb-section.plans .plan li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--ink);
}
.hb-section.plans .plan li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #16a34a;
    margin-top: 2px;
}
@media (max-width: 900px) { .hb-section.plans .plans-grid { grid-template-columns: 1fr; } }


/* FAQ � AlignUI styles */
.hb-section.faq { padding: 5rem 0; }
.hb-faq .section-head.center { text-align: center; margin-bottom: 2rem; }
.hb-faq .section-head:not(.center) { text-align: left; margin-bottom: 2rem; }
.hb-faq-stack { display: flex; flex-direction: column; gap: 12px; }
.hb-faq-stack--narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.hb-faq-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; transition: border-color .2s, box-shadow .2s, background .2s; }
.hb-faq-item:hover { border-color: #cbd5e1; }
.hb-faq-item.is-open { background: #fff; border-color: #2563eb; box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08); }
.hb-faq-item__head { width: 100%; padding: 16px 22px; background: transparent; border: none; font: inherit; font-size: 0.96rem; font-weight: 700; color: #0f172a; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; }
.hb-faq-item__q { flex: 1; }
.hb-faq-item__num { color: #94a3b8; font-weight: 600; font-size: 0.9rem; flex-shrink: 0; }
.hb-faq-item__icon { font-size: 1.25rem; color: #94a3b8; flex-shrink: 0; transition: transform .25s, color .25s; }
.hb-faq-item.is-open .hb-faq-item__icon { transform: rotate(45deg); color: #2563eb; }
.hb-faq-item__body { padding: 0 22px 18px; text-align: left; }
.hb-faq-item__a { font-size: 0.9rem; color: #475569; line-height: 1.6; }
.hb-faq-num-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; color: #94a3b8; text-transform: uppercase; text-align: left; margin: 0.5rem 0 0.15rem; }
.hb-faq-split { display: grid; grid-template-columns: 300px 1fr; gap: 2.25rem; align-items: start; }
.hb-faq-advisor { background: #fff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 16px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05); }
.hb-faq-advisor__photo { position: relative; border-radius: 18px; overflow: hidden; height: 280px; margin-bottom: 16px; background: #f1f5f9; }
.hb-faq-advisor__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hb-faq-advisor__online { position: absolute; top: 14px; left: 14px; width: 10px; height: 10px; border-radius: 50%; background: #10b981; border: 2px solid #fff; }
.hb-faq-advisor__tag { position: absolute; bottom: 14px; left: 14px; right: 14px; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.hb-faq-advisor__tag strong { display: block; font-size: 0.95rem; font-weight: 800; }
.hb-faq-advisor__tag span { font-size: 0.75rem; opacity: .9; }
.hb-faq-advisor__cta h4 { font-size: 0.85rem; color: #475569; font-weight: 600; margin: 0 0 2px; }
.hb-faq-advisor__cta h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 6px; color: #0f172a; }
/* Was #94a3b8 at 0.78rem — 2.3:1 on the gray band, and this is the copy that
   invites the question. Muted ink at a readable size instead. */
.hb-faq-advisor__cta p { font-size: 0.875rem; line-height: 1.55; color: #475569; margin: 0 0 1rem; }
.hb-faq-advisor__btn { width: 100%; justify-content: center; }
.hb-faq-filter__pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; background: #f1f5f9; padding: 6px; border-radius: 9999px; max-width: 720px; margin: 0 auto 1.75rem; }
.hb-faq-filter__pill { background: transparent; border: none; padding: 8px 18px; border-radius: 9999px; font: inherit; font-size: 0.85rem; font-weight: 700; color: #475569; cursor: pointer; }
.hb-faq-filter__pill.is-active, .hb-faq-filter__pill:hover { background: #2563eb; color: #fff; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); }
.hb-faq-looking { text-align: center; margin-top: 1.75rem; font-size: 0.85rem; color: #475569; }
.hb-faq-looking a { color: #2563eb; font-weight: 700; }
.hb-faq-grouped { display: flex; flex-direction: column; gap: 2rem; }
.hb-faq-group { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; padding-bottom: 1.75rem; border-bottom: 1px solid #f1f5f9; }
.hb-faq-group:last-child { border-bottom: 0; padding-bottom: 0; }
.hb-faq-group__info h3 { font-size: 1.15rem; font-weight: 800; color: #0f172a; margin: 0 0 0.25rem; }
.hb-faq-group__items { display: flex; flex-direction: column; gap: 10px; }
.hb-faq-contact-bar { margin-top: 1.5rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; color: #475569; }
.hb-faq-contact-bar__email { color: #2563eb; font-weight: 800; }
.hb-faq-kb__search { max-width: 720px; margin: 0 auto 2rem; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 14px 18px; box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04); }
.hb-faq-kb__icon { color: #94a3b8; display: flex; }
.hb-faq-kb__input { flex: 1; border: none; outline: none; font: inherit; font-size: 0.95rem; background: transparent; color: #0f172a; }
.hb-faq-kb__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hb-faq-kb__card { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 1.5rem; text-align: left; transition: border-color .2s, box-shadow .2s; }
.hb-faq-kb__card:hover { border-color: #2563eb; box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1); }
.hb-faq-kb__cat { display: inline-block; font-size: 0.72rem; font-weight: 700; color: #2563eb; background: #eff6ff; padding: 2px 10px; border-radius: 9999px; margin-bottom: 0.75rem; }
.hb-faq-kb__card h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 0.4rem; color: #0f172a; }
.hb-faq-kb__card p { font-size: 0.88rem; color: #475569; margin: 0; line-height: 1.5; }
.hb-faq-grid { display: grid; gap: 12px; text-align: left; }
.hb-faq-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hb-faq-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hb-faq--dark-section { background: #0f172a; color: #e2e8f0; }
.hb-faq--dark-section .section-head h2, .hb-faq--dark-section .eyebrow { color: #fff; }
.hb-faq--dark-section .section-head p { color: #94a3b8; }
.hb-faq-stack--dark .hb-faq-item { background: #1e293b; border-color: #334155; }
.hb-faq-stack--dark .hb-faq-item.is-open { border-color: #3b82f6; background: #1e293b; box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15); }
.hb-faq-stack--dark .hb-faq-item__head, .hb-faq-stack--dark .hb-faq-item__q { color: #f8fafc; }
.hb-faq-stack--dark .hb-faq-item__a { color: #94a3b8; }
.hb-faq-stack--dark .hb-faq-item__icon { color: #64748b; }
.hb-faq-stack--dark .hb-faq-item.is-open .hb-faq-item__icon { color: #60a5fa; }
.hb-faq-feedback { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding-top: 12px; border-top: 1px solid #e2e8f0; font-size: 0.82rem; color: #64748b; }
.hb-faq-feedback__btn { background: #f1f5f9; border: none; border-radius: 9999px; padding: 4px 12px; font: inherit; font-size: 0.78rem; font-weight: 700; color: #475569; cursor: pointer; }
.hb-faq-feedback__btn.is-voted, .hb-faq-feedback__btn:hover { background: #dbeafe; color: #2563eb; }
@media (max-width: 900px) {
  .hb-faq-split, .hb-faq-group { grid-template-columns: 1fr; }
  .hb-faq-kb__grid, .hb-faq-grid--2, .hb-faq-grid--3 { grid-template-columns: 1fr; }
}

/* Content (rich text) */
.hb-section.content-section { padding: 5rem 0; }
.hb-section.content-section .content-body {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 760px;
}
.hb-section.content-section .content-body--full { margin: 0 auto; }
.hb-section.content-section .content-body h1,
.hb-section.content-section .content-body h2,
.hb-section.content-section .content-body h3,
.hb-section.content-section .content-body h4 {
    color: var(--navy);
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    line-height: 1.25;
}
.hb-section.content-section .content-body h2 { font-size: 1.6rem; }
.hb-section.content-section .content-body h3 { font-size: 1.3rem; }
.hb-section.content-section .content-body h4 { font-size: 1.1rem; }
.hb-section.content-section .content-body p { margin: 0 0 1rem; }
.hb-section.content-section .content-body ul,
.hb-section.content-section .content-body ol { padding-left: 1.5rem; margin: 0 0 1rem; }
.hb-section.content-section .content-body li { margin-bottom: 0.5rem; }
.hb-section.content-section .content-body a { color: var(--blue); text-decoration: underline; }
.hb-section.content-section .content-body strong { font-weight: 700; color: var(--navy); }

.hb-section.content-section .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hb-section.content-section .content-split--reverse {
    grid-template-columns: 1fr 1fr;
}
.hb-section.content-section .content-split--reverse .content-media { order: 2; }
.hb-section.content-section .content-media {
    border-radius: 18px;
    overflow: hidden;
    background: var(--blue-soft);
}
.hb-section.content-section .content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (max-width: 900px) {
    .hb-section.content-section .content-split,
    .hb-section.content-section .content-split--reverse { grid-template-columns: 1fr; }
    .hb-section.content-section .content-split--reverse .content-media { order: 0; }
}

/* Newsletter */
.hb-section.newsletter { padding: 4rem 0; }
.hb-section.newsletter .news-box {
    background: linear-gradient(125deg, #1e2a4a 0%, #1a4f9c 55%, #1a73e8 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}
.hb-section.newsletter .news-box h2 {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.hb-section.newsletter .news-box p { opacity: 0.88; margin: 0; font-size: 0.95rem; }
.hb-section.newsletter .news-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.35rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}
.hb-section.newsletter .news-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}
.hb-section.newsletter .news-form input[type="email"]::placeholder { color: rgba(255,255,255,0.6); }
.hb-section.newsletter .news-form button {
    background: #fff;
    color: var(--blue-deep);
    border: 0;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
}
.hb-section.newsletter .news-form button:hover { background: var(--blue-soft); }
@media (max-width: 720px) {
    .hb-section.newsletter .news-box { grid-template-columns: 1fr; }
    .hb-section.newsletter .news-form { flex-direction: column; }
}

/* ==========================================================================
   AlignUI 06 to 12 � Google Workspace / Cloud Hosting Heroes
   ========================================================================== */

/* Text color utilities (Google-brand highlights) */
.hb .hb-hl-blue { color: #1a73e8; font-weight: 800; }
.hb .hb-hl-green { color: #34a853; font-weight: 800; }
.hb .hb-hl-red { color: #ea4335; font-weight: 800; }
.hb .hb-hl-yellow { color: #fbbc04; font-weight: 800; }
.hb .hb-hl-multi {
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    font-weight: 800;
}
.hb .hb-hl-gemini {
    background: linear-gradient(90deg, #1A73E8, #9333EA, #DB2777);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    font-weight: 800;
}

/* Shared GW grid � hb-06/07/08 */
.hb-06, .hb-07, .hb-08 { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.hb-06 .hb-gw-grid, .hb-07 .hb-gw-grid, .hb-08 .hb-gw-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 40px; align-items: center;
}
.hb-07 .hb-gw-grid--text-only {
    grid-template-columns: 1fr;
    max-width: 720px;
}
.hb-gw-text { display: flex; flex-direction: column; align-items: flex-start; }
.hb-gw-icons-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hb-gw-app-icon { font-size: 1.4rem; }
.hb-gw-gemini-icon {
    background: linear-gradient(135deg, #1A73E8, #9333EA);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    font-weight: 900;
}
.hb-gw-title {
    font-family: var(--hb-font-sans);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.14;
    color: #202124; margin: 0 0 16px;
}
.hb-gw-sub {
    font-size: 1.02rem; color: #5f6368; line-height: 1.6;
    max-width: 480px; margin: 0 0 28px;
}
.hb-gw-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hb-btn-gw-blue {
    display: inline-flex; align-items: center; justify-content: center;
    background: #1a73e8; color: #fff !important;
    font-size: 0.95rem; font-weight: 600;
    padding: 13px 28px; border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(26,115,232,0.2);
    transition: background .18s, transform .18s, box-shadow .18s;
}
.hb-btn-gw-blue:hover {
    background: #1557b0; color: #fff;
    box-shadow: 0 4px 12px rgba(26,115,232,0.3);
    transform: translateY(-1px);
}
.hb-btn-gw-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: #1a73e8 !important;
    font-size: 0.95rem; font-weight: 600;
    padding: 12px 22px; border-radius: 999px;
    text-decoration: none;
    border: 1.5px solid #c5d4e8;
    transition: border-color .18s, background .18s, color .18s;
}
.hb-btn-gw-ghost:hover {
    border-color: #1a73e8;
    background: #e8f1fc;
    color: #1557b0 !important;
}
.hb-gw-app-icon--img {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
}
.hb-gw-app-icon--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.hb-gw-trial { font-size: 0.8rem; color: #70757a; margin-top: 10px; display: block; }
.hb-gw-visual { display: flex; justify-content: center; }
.hb-composition {
    position: relative; width: 400px; height: 400px;
    display: flex; align-items: center; justify-content: center;
}
.hb-float-card {
    position: absolute;
    background: #fff; border-radius: 18px; padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,232,240,0.8);
    z-index: 10;
}

/* Style 6 � photo arch + contract + glass apps */
.hb-06 .hb-photo-arch {
    width: 320px; height: 380px;
    border-radius: 160px 160px 32px 32px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.hb-06 .hb-photo-arch img,
.hb-06 .hb-photo-arch .hb-media-video { width: 100%; height: 100%; object-fit: cover; }
.hb-06 .hb-contract-card { top: 15px; left: -20px; width: 200px; }
.hb-06 .hb-card-top { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; margin-bottom: 8px; }
.hb-06 .hb-pdf-badge { background: #fee2e2; color: #ef4444; font-size: 0.65rem; padding: 1px 5px; border-radius: 4px; }
.hb-06 .hb-doc-title { color: #202124; }
.hb-06 .hb-signature-box { padding-top: 4px; }
.hb-06 .hb-sig-label { font-size: 0.65rem; color: #5f6368; display: block; margin-bottom: 4px; }
.hb-06 .hb-glass-apps {
    bottom: 40px; right: -15px;
    background: rgba(255,255,255,0.78); backdrop-filter: blur(12px);
    display: flex; flex-direction: column; gap: 12px;
    padding: 16px 14px; border-radius: 24px;
}
.hb-06 .hb-app-chip { font-size: 1rem; }

/* Style 7 � clean photo, no float boxes */
.hb-07 .hb-07-photo {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border: 0 !important;
    border-radius: 0;
    overflow: visible;
    box-shadow: none !important;
    background: transparent;
}
.hb-07 .hb-07-photo img,
.hb-07 .hb-07-photo .hb-media-video {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    display: block;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.hb-07 .hb-07-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}
.hb-07 .hb-07-checks li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #3c4043;
}
.hb-07 .hb-gw-cta-row .hb-from-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #202124;
}

/* Style 8 � video call frame + speech bubble + privacy card */
.hb-08 .hb-speech-bubble { top: -10px; right: 10px; width: 220px; }
.hb-08 .hb-bubble-head { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: #202124; margin-bottom: 6px; }
.hb-08 .hb-video-frame {
    position: relative; width: 320px; height: 280px;
    border: 4px solid #4285f4; border-radius: 24px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.hb-08 .hb-video-frame img,
.hb-08 .hb-video-frame .hb-media-video { width: 100%; height: 100%; object-fit: cover; }
.hb-08 .hb-mic-badge {
    position: absolute; top: 14px; right: 14px;
    width: 28px; height: 28px; border-radius: 50%;
    background: #188038;
    display: flex; align-items: center; justify-content: center;
}
.hb-08 .hb-cursor-tag {
    position: absolute; font-size: 0.7rem; font-weight: 700;
    color: #fff; padding: 3px 10px; border-radius: 999px;
}
.hb-08 .hb-cursor-orange { right: 20px; top: 120px; background: #ea580c; }
.hb-08 .hb-cursor-green { left: 40px; bottom: 20px; background: #16a34a; }
.hb-08 .hb-privacy-card { bottom: -20px; right: -25px; width: 240px; }
.hb-08 .hb-privacy-head { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: #1a73e8; margin-bottom: 4px; }
.hb-08 .hb-privacy-desc { font-size: 0.72rem; color: #5f6368; line-height: 1.35; margin: 0; }
.hb-08 .hb-gemini-star-float { position: absolute; top: -20px; right: -20px; font-size: 2.2rem; color: #1a73e8; }

/* Style 9 � isometric centered banner */
.hb-09 { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.hb-09 .hb-center-wrap { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.hb-09 .hb-center-title { font-size: clamp(2rem, 3.5vw, 2.6rem); text-align: center; }
.hb-09 .hb-center-sub { margin: 0 auto 28px; text-align: center; max-width: none; }
.hb-09 .hb-center-cta { justify-content: center; }
.hb-09 .hb-iso-banner {
    display: flex; align-items: flex-end; justify-content: space-around;
    height: 220px; padding: 20px; border-radius: 20px;
    background: radial-gradient(circle at 50% 100%, rgba(26,115,232,0.08), transparent 70%);
}
.hb-09 .hb-iso-cube {
    width: 120px; height: 140px;
    background: linear-gradient(135deg, #1A73E8, #1557B0);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 10px 24px rgba(26,115,232,0.3);
}
.hb-09 .hb-iso-building, .hb-09 .hb-iso-server {
    width: 70px; height: 110px;
    background: #d2e3fc; border-radius: 8px;
}

/* Style 10 � Cloud Next dark theme (same visual mass as Hero 1) */
.hb-10 { padding: 0; background: #121316; color: #fff; }
.hb-10 .hb-cn-content {
    position: relative;
    min-height: clamp(720px, 82vh, 920px);
    padding: clamp(96px, 11vw, 160px) 0 clamp(80px, 9vw, 120px);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hb-10 .hb-cn-bg { position: absolute; inset: 0; }
.hb-10 .hb-cn-bg img,
.hb-10 .hb-cn-bg .hb-media-video { width: 100%; height: 100%; object-fit: cover; object-position: right center; opacity: 0.45; }
.hb-10 .hb-cn-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #121316 45%, rgba(18,19,22,0.6) 80%, transparent);
}
.hb-10 .hb-cn-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 48px; align-items: center;
    width: 100%;
}
.hb-10 .hb-cn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.hb-10 .hb-cn-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
    color: #fff; margin: 0 0 22px;
}
.hb-10 .hb-cn-underline { border-bottom: 4px solid #f97316; }
.hb-10 .hb-cn-sub { font-size: 1.15rem; color: #cbd5e1; line-height: 1.6; max-width: 640px; margin: 0 0 36px; }
.hb-10 .hb-cn-cta-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 36px;
}
.hb-10 .hb-cn-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.hb-10 .hb-cn-secondary {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.35;
}
.hb-10 a.hb-cn-secondary:hover {
    color: #fff;
    text-decoration: underline;
}
.hb-10 .hb-btn-cn {
    display: inline-flex; background: #0075ff; color: #fff !important;
    font-size: 1.125rem; font-weight: 800;
    padding: 16px 36px; border-radius: 999px;
    text-decoration: none; transition: background .2s, box-shadow .2s;
}
.hb-10 .hb-btn-cn:hover { background: #0062d6; box-shadow: 0 4px 14px rgba(0,117,255,0.4); }
.hb-10 .hb-cn-eco {
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
    padding: 8px 16px; border-radius: 6px;
    font-size: 0.75rem; color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    flex: 0 0 auto;
    align-self: flex-start;
    box-sizing: border-box;
}
.hb-10 .hb-cn-eco--top {
    margin: 0 0 20px;
}
.hb-10 .hb-cn-eco span {
    white-space: nowrap;
}
.hb-10 .hb-cn-avatar--image {
    overflow: hidden;
    padding: 0;
    background: transparent;
}
.hb-10 .hb-cn-avatar--image img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 50%;
    display: block;
}
.hb-10 .hb-cn-review { display: flex; flex-direction: column; gap: 4px; }
.hb-10 .hb-cn-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.hb-10 .hb-cn-quote { display: flex; align-items: center; gap: 12px; }
.hb-10 .hb-cn-avatar {
    position: relative; width: 34px; height: 34px; border-radius: 50%;
    background: #475569; color: #fff; font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.hb-10 .hb-g-mini {
    position: absolute; bottom: -2px; right: -2px;
    background: #4285f4; color: #fff; font-size: 0.55rem;
    width: 14px; height: 14px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hb-10 .hb-cn-quote-body { font-size: 0.84rem; font-style: italic; color: #f8fafc; display: block; }
.hb-10 .hb-cn-quote-author { font-size: 0.72rem; color: #94a3b8; display: block; }
.hb-10 .hb-cn-stamp { display: flex; justify-content: flex-end; }
.hb-10 .hb-cn-seal {
    width: 140px; height: 140px; border: 2px dashed rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 10px;
    background: rgba(0,0,0,0.2); backdrop-filter: blur(4px);
}
.hb-10 .hb-cn-seal-since { font-size: 0.65rem; color: #94a3b8; letter-spacing: 2px; }
.hb-10 .hb-cn-seal-year { font-size: 1.4rem; font-weight: 900; color: #fff; }
.hb-10 .hb-cn-seal-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.3); margin: 4px 0; }
.hb-10 .hb-cn-seal-services span { display: block; font-size: 0.6rem; color: #cbd5e1; text-transform: uppercase; line-height: 1.2; }

/* Avatars 1/2/3 side by side � image only, no circle/border */
.hb-10 .hb-cn-avatar-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.hb-10 .hb-cn-avatar-row__item {
    display: block;
    width: auto;
    height: auto;
    max-width: 120px;
    border-radius: 0;
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
    flex: 0 0 auto;
}
.hb-10 .hb-cn-avatar-row__item img {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    display: block;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}
.hb-10 .hb-cn-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.35rem;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    color: #e2e8f0;
}
.hb-10 .hb-cn-checks li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #f1f5f9;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}
.hb-10 .hb-cn-checks .hb-check-icon {
    width: auto;
    height: auto;
    background: transparent;
    color: #34d399;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
    line-height: 1;
}

/* Headline email + typing cursor (shared 11 & 12) */
.hb-headline-email {
    font-family: inherit; font-size: inherit; font-weight: inherit;
    margin-left: 8px; display: inline;
    transition: color .25s ease, text-shadow .25s ease;
}
.hb-headline-email.hb-email-old {
    color: #f87171;
    text-decoration: line-through;
    text-shadow: none;
}
.hb-headline-email.hb-email-deleting {
    color: #fbbf24;
    text-decoration: none;
    text-shadow: none;
}
.hb-headline-email.hb-email-new {
    color: #4ade80;
    text-decoration: none;
    text-shadow: 0 0 16px rgba(74,222,128,0.5);
}
.hb-typing-cursor {
    font-family: inherit; font-size: inherit; color: #f97316;
    font-weight: 800; margin-left: 2px;
    animation: hbBlinkCursor 0.8s infinite;
}
@keyframes hbBlinkCursor { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Pill/badge icon (styles 11 & 12) */
.hb .hb-badge-icon { font-size: 1em; margin-right: 4px; }

/* Circular image badge (styles 11 & 12 � replaces static Samsung block when avatar_1 is uploaded) */
.hb-badge-image-circle {
    width: 140px; height: 140px; border-radius: 50%;
    background: #0f172a;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.1);
}
.hb-badge-image-circle img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}

/* Style 11 � Purple Reseller (same visual mass as Hero 1) */
.hb-11 { padding: 0; background: linear-gradient(135deg, #4C1D95, #831843); color: #fff; }
.hb-11 .hb-purple-content {
    position: relative;
    min-height: clamp(720px, 82vh, 920px);
    padding: clamp(96px, 11vw, 160px) 0 clamp(80px, 9vw, 120px);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hb-11 .hb-purple-bg { position: absolute; inset: 0; }
.hb-11 .hb-purple-bg img,
.hb-11 .hb-purple-bg .hb-media-video { width: 100%; height: 100%; object-fit: cover; object-position: right center; opacity: 0.35; }
.hb-11 .hb-purple-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #4C1D95 50%, rgba(76,29,149,0.7) 80%, transparent);
}
.hb-11 .hb-purple-inner { position: relative; z-index: 2; width: 100%; }
.hb-11 .hb-purple-badge { font-size: 0.85rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hb-11 .hb-purple-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.18; margin: 0 0 24px; color: #fff;
}
.hb-11 .hb-purple-underline { border-bottom: 4px solid #f97316; }
.hb-11 .hb-purple-sub { font-size: 1.1rem; color: #e9d5ff; line-height: 1.65; max-width: 760px; margin: 0 0 40px; }
.hb-11 .hb-purple-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.hb-11 .hb-purple-cta { display: flex; flex-direction: column; gap: 8px; }
.hb-11 .hb-guarantee { font-size: 0.85rem; font-weight: 700; color: #fff; }
.hb-11 .hb-btn-purple {
    display: inline-flex; background: #0075ff; color: #fff !important;
    font-weight: 800; font-size: 1rem;
    padding: 16px 32px; border-radius: 999px; text-decoration: none;
}
.hb-11 .hb-price-note { font-size: 0.78rem; opacity: 0.85; }
.hb-11 .hb-purple-badges-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.hb-11 .hb-p-rating-card {
    background: #fff; color: #0f172a;
    padding: 14px 14px; border-radius: 10px; width: 128px; text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex; flex-direction: column;
}
.hb-11 .hb-p-stars { color: #f59e0b; font-size: 0.72rem; margin-bottom: 4px; }
.hb-11 .hb-p-top-label { font-size: 0.62rem; color: #64748b; }
.hb-11 .hb-p-rating-card strong { font-size: 0.72rem; color: #0f172a; line-height: 1.25; }

/* Style 12 � Steel Blue VPS (same visual mass as Hero 1) */
.hb-12 { padding: 0; background: #1E4D6B; color: #fff; }
.hb-12 .hb-steel-content {
    position: relative;
    min-height: clamp(720px, 82vh, 920px);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hb-12 .hb-steel-bg { position: absolute; inset: 0; z-index: 1; }
.hb-12 .hb-steel-bg img,
.hb-12 .hb-steel-bg .hb-media-video { width: 100%; height: 100%; object-fit: cover; object-position: right center; opacity: 0.35; }
.hb-12 .hb-steel-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #1E4D6B 50%, rgba(30,77,107,0.6) 80%, transparent);
}
.hb-12 .hb-steel-inner {
    position: relative; z-index: 2;
    padding: clamp(96px, 11vw, 160px) 0 clamp(80px, 9vw, 120px);
    width: 100%;
}
.hb-12 .hb-steel-badge { font-size: 0.85rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 20px; }
.hb-12 .hb-steel-row {
    display: grid; grid-template-columns: 1.3fr 0.7fr;
    gap: 48px; align-items: center;
}
.hb-12 .hb-steel-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.18; margin: 0 0 24px; color: #fff;
}
.hb-12 .hb-steel-underline { border-bottom: 4px solid #f97316; }
.hb-12 .hb-steel-sub { font-size: 1.1rem; color: #e2e8f0; line-height: 1.65; max-width: 720px; margin: 0 0 36px; }
.hb-12 .hb-steel-cta-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.hb-12 .hb-trustpilot-badge { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.hb-12 .hb-tp-stars { background: #00b67a; color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; }
.hb-12 .hb-tp-brand { font-weight: 700; }
.hb-12 .hb-vps-btn-group { display: flex; flex-direction: column; gap: 6px; }
.hb-12 .hb-btn-steel {
    display: inline-flex; background: #0f172a; color: #fff !important;
    font-weight: 800; font-size: 1rem;
    padding: 16px 28px; border-radius: 8px; text-decoration: none;
}
.hb-12 .hb-sla-text { font-size: 0.78rem; opacity: 0.9; }
.hb-12 .hb-steel-right { display: flex; justify-content: flex-end; }
.hb-12 .hb-samsung-badge {
    width: 140px; height: 140px; border-radius: 50%;
    background: #0f172a; color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hb-12 .hb-brand-sub { font-size: 0.58rem; letter-spacing: 1px; color: #94a3b8; font-weight: 700; }
.hb-12 .hb-brand-main { font-size: 0.78rem; color: #fff; margin: 2px 0; }
.hb-12 .hb-steel-ticker {
    position: relative; z-index: 3;
    background: #f97316; color: #fff;
    padding: 14px 20px; text-align: center; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* Responsive fallback for all GW/CN/Purple/Steel heroes */
@media (max-width: 992px) {
    .hb-06 .hb-gw-grid, .hb-07 .hb-gw-grid, .hb-08 .hb-gw-grid,
    .hb-10 .hb-cn-grid, .hb-11 .hb-purple-bottom, .hb-12 .hb-steel-row {
        grid-template-columns: 1fr;
    }
    .hb-composition { width: 100%; max-width: 360px; margin: 0 auto; height: 380px; }
    .hb-10 .hb-cn-stamp, .hb-12 .hb-steel-right { justify-content: flex-start; }
    .hb-10 .hb-cn-content,
    .hb-11 .hb-purple-content,
    .hb-12 .hb-steel-content {
        min-height: clamp(560px, 70vh, 720px);
        padding-top: clamp(64px, 8vw, 96px);
        padding-bottom: clamp(56px, 7vw, 80px);
    }
    .hb-12 .hb-steel-inner {
        padding-top: clamp(64px, 8vw, 96px);
        padding-bottom: clamp(56px, 7vw, 80px);
    }
}

/* ============================================================
   Embedded contact form (Blocks plugin form inside the hero)
   Positions: right (default), left, center.
   ============================================================ */
.hb-with-form {
    display: grid;
    gap: 32px;
    align-items: start;
    margin: 0 auto;
    max-width: 1240px;
    padding: 40px 20px;
}
.hb-with-form__hero > * { margin-top: 0 !important; }
.hb-with-form__slot {
    background: var(--hb-surface, #fff);
    border: 1px solid var(--hb-border, #e5e7eb);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.hb-with-form__slot > * { margin-top: 0; }

.hb-with-form--right { grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr); }
.hb-with-form--left  { grid-template-columns: minmax(320px, 1fr) minmax(0, 1.4fr); }
.hb-with-form--left  .hb-with-form__hero { order: 2; }
.hb-with-form--left  .hb-with-form__slot { order: 1; }

.hb-with-form--center { grid-template-columns: 1fr; }
.hb-with-form--center .hb-with-form__slot {
    max-width: 720px;
    justify-self: center;
    width: 100%;
    margin-top: -20px; /* pull slightly up so it overlaps the hero footer */
}

/* Trim inner CTA-form paddings so it looks native inside the slot */
.hb-with-form__slot .cp-block,
.hb-with-form__slot .blocks-form,
.hb-with-form__slot section { padding: 0 !important; background: transparent !important; }

@media (max-width: 992px) {
    .hb-with-form--right,
    .hb-with-form--left { grid-template-columns: 1fr; }
    .hb-with-form--left .hb-with-form__hero { order: 1; }
    .hb-with-form--left .hb-with-form__slot { order: 2; }
}

/* ===== Key Features (Lagom KF 01�06) ===== */
.hb-kf { margin-top: 0.5rem; }
.hb-kf__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.hb-kf__tab {
  background: #f1f5f9;
  border: none;
  padding: 10px 18px;
  border-radius: 9999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all .2s ease;
}
.hb-kf__tab.is-active,
.hb-kf__tab:hover { background: #2563eb; color: #fff; }

.hb-kf__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
/* Image position � shortcode only; grid areas beat DOM order */
.hb-kf--media-right .hb-kf__split,
.hb-key-features--media-right .hb-kf__split {
  grid-template-areas: "copy media";
}
.hb-kf--media-left .hb-kf__split,
.hb-key-features--media-left .hb-kf__split {
  grid-template-areas: "media copy";
}
.hb-kf__split > .hb-kf__media { grid-area: media; }
.hb-kf__split > .hb-kf__copy,
.hb-kf__split > .hb-kf__stack,
.hb-kf__split > .hb-kf__acc { grid-area: copy; }

.hb-kf__desc { font-size: 1.05rem; color: #475569; line-height: 1.6; margin: 0 0 1.25rem; }
.hb-kf__badge {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.hb-kf__checks { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; }
.hb-kf__checks li { display: flex; gap: 0.65rem; align-items: flex-start; font-weight: 600; color: #0f172a; font-size: 0.92rem; }
.hb-kf__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.hb-kf__media { position: relative; min-height: 220px; }
.hb-kf__media-panel { transition: opacity .2s ease; }
.hb-kf__frame {
  border-radius: 20px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  aspect-ratio: 4 / 3;
}
.hb-kf__frame--empty { background: linear-gradient(135deg, #eff6ff, #f8fafc); min-height: 240px; }
.hb-kf__img,
.hb-kf__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Shortcode option: with / without box � ONLY the graphic frame (list items keep boxes) */
.hb-key-features--img-box-no .hb-kf__frame,
.hb-key-features--box-no .hb-kf__frame {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.hb-key-features--img-box-no .hb-kf__frame--empty,
.hb-key-features--box-no .hb-kf__frame--empty {
  background: transparent !important;
  border-radius: 0 !important;
  min-height: 180px;
}
.hb-key-features--img-box-no .hb-kf--illustration .hb-kf__frame,
.hb-key-features--box-no .hb-kf--illustration .hb-kf__frame {
  border-style: none !important;
  background: transparent !important;
}
.hb-kf__stack { display: flex; flex-direction: column; gap: 0.85rem; }
.hb-kf__box,
.hb-kf__border,
.hb-kf__indicator {
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: all .2s ease;
  background: #fff;
  color: inherit;
}
.hb-kf__box {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.hb-kf__box.is-active,
.hb-kf__box:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}
.hb-kf__border {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  background: transparent;
}
.hb-kf__border.is-active {
  border-color: #2563eb;
  background: #eff6ff;
}
.hb-kf__indicator {
  border: 0;
  border-left: 3px solid #e2e8f0;
  border-radius: 0;
  padding: 0.85rem 0 0.85rem 1.15rem;
  background: transparent;
}
.hb-kf__indicator.is-active { border-left-color: #2563eb; }
.hb-kf__box h3,
.hb-kf__border h3,
.hb-kf__indicator h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}
.hb-kf__box p,
.hb-kf__border p,
.hb-kf__indicator p {
  margin: 0;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}
.hb-kf__indicator:not(.is-active) p { display: none; }

.hb-kf__acc { display: flex; flex-direction: column; gap: 0.5rem; }
.hb-kf__acc-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.hb-kf__acc-item.is-active {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1);
}
.hb-kf__acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
}
.hb-kf__acc-icon { font-size: 1.2rem; color: #2563eb; line-height: 1; }
.hb-kf__acc-body { padding: 0 1.15rem 1rem; font-size: 0.9rem; color: #475569; line-height: 1.55; }
.hb-kf__acc-body p { margin: 0 0 0.65rem; }
.hb-kf__cta { margin: 1.25rem 0 0; }

.hb-kf--illustration .hb-kf__frame {
  background: radial-gradient(circle at 30% 20%, #dbeafe, #f8fafc 55%);
  border-style: dashed;
}

.hb-feat-photo--media-right .hb-feat-photo__media { order: 2; }
.hb-feat-photo--media-right .hb-feat-photo__copy { order: 1; }
.hb-feat-photo--media-left .hb-feat-photo__media { order: 1; }
.hb-feat-photo--media-left .hb-feat-photo__copy { order: 2; }

@media (max-width: 900px) {
  .hb-kf__split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    grid-template-areas:
      "copy"
      "media" !important;
  }
  .hb-kf--media-left .hb-kf__split,
  .hb-key-features--media-left .hb-kf__split {
    grid-template-areas:
      "media"
      "copy" !important;
  }
  .hb-feat-photo--media-right .hb-feat-photo__media,
  .hb-feat-photo--media-left .hb-feat-photo__media,
  .hb-feat-photo--media-right .hb-feat-photo__copy,
  .hb-feat-photo--media-left .hb-feat-photo__copy { order: unset; }
}

/* ==========================================================================
   Graphics � RS Studio-style text + graphic sections
   ========================================================================== */

.hb-graphics {
  padding: 4.5rem 0;
}

.hb-graphics__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.hb-graphics__stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: stretch;
}
.hb-graphics__head--above {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hb-graphics__subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--hb-ink-soft);
  margin: 0.75rem 0 0;
}
.hb-graphics__body {
  margin-top: 1.25rem;
  color: var(--hb-ink-soft);
  line-height: 1.7;
}
.hb-graphics__body ul,
.hb-graphics__body ol {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}
.hb-graphics__body li { margin-bottom: 0.45rem; }

.hb-graphics__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.75rem;
}
.hb-graphics__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-left: 0.25rem;
}
.hb-graphics__price-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hb-muted);
  font-weight: 600;
}
.hb-graphics__price-amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--hb-ink);
  line-height: 1.1;
}

.hb-graphics__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hb-graphics__frame {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.hb-graphics__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Type 1 � illustration: soft gradient stage */
.hb-graphics--illustration .hb-graphics__frame {
  position: relative;
  padding: 2rem;
  border-radius: var(--hb-radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    var(--hb-blue-soft);
  border: 1px solid rgba(37, 99, 235, 0.08);
}
.hb-graphics--illustration .hb-graphics__img {
  filter: drop-shadow(0 18px 32px rgba(15, 23, 42, 0.12));
}

/* Type 2 � container: fixed aspect box */
.hb-graphics--container .hb-graphics__frame {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: var(--hb-radius-lg);
  background: #fff;
  border: 1px solid var(--hb-line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.hb-graphics--container .hb-graphics__img {
  max-height: 100%;
  object-fit: contain;
}
.hb-theme-gray.hb-graphics--container .hb-graphics__frame {
  background: #fff;
}

/* Type 3 � background side (Lagom type-3 left/right) */
.hb-graphics--background .hb-graphics__split--bg-side .hb-graphics__media {
  align-self: stretch;
}
.hb-graphics--background .hb-graphics__split--bg-side .hb-graphics__frame {
  max-width: none;
  height: 100%;
  min-height: 360px;
  padding: 0;
  border: 0;
  border-radius: var(--hb-radius-xl);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.hb-graphics--background .hb-graphics__split--bg-side .hb-graphics__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

/* Type 3 � background center card */
.hb-graphics__bg-wrap {
  position: relative;
  min-height: 420px;
  border-radius: var(--hb-radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hb-graphics__bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hb-graphics__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hb-graphics--layout-left .hb-graphics__bg-img {
  object-position: center left;
}
.hb-graphics__inner--bg {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 2.5rem 2rem;
  margin: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--hb-radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
}
.hb-graphics--layout-right .hb-graphics__inner--bg {
  margin-left: auto;
}
.hb-graphics--layout-left .hb-graphics__inner--bg {
  margin-right: auto;
}
.hb-graphics--layout-center .hb-graphics__inner--bg {
  margin: 2rem auto;
  text-align: center;
}
.hb-graphics--layout-center .hb-graphics__actions {
  justify-content: center;
}

.hb-graphics__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--hb-blue);
}
.hb-graphics__placeholder svg {
  width: 140px;
  height: auto;
}

.hb-graphics--layout-top-center .hb-graphics__media,
.hb-graphics--layout-bottom-center .hb-graphics__media {
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hb-graphics { padding: 3rem 0; }
  .hb-graphics__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hb-graphics__inner--bg {
    max-width: none;
    margin: 1.25rem !important;
  }
  .hb-graphics__bg-wrap { min-height: 360px; }
}
