/* ==========================================================================
   Reset & Base
   ========================================================================== */
.landing-page.weebly * {
    box-sizing: border-box;
}

/* w-hidden: used by WHMCS store templates to hide non-active billing cycles */
.w-hidden {
    display: none !important;
}

/* HM changes: Hide the WHMCS page header/breadcrumb on store landing pages */
.tt-page-header {
    display: none !important;
}

.landing-page.weebly {
    font-family: var(--hm-sp-body-font);
    color: var(--hm-sp-faq-q);
    line-height: 1.6;
}

/* ==========================================================================
   HM changes: Hero Section — full-width dark banner, two-column layout
   ========================================================================== */
.landing-page.weebly .hero {
    background: var(--hm-sp-hero-bg);
    padding: 0px 0 46px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern overlay */
.landing-page.weebly .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,213,190,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,213,190,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Top-right glow blob */
.landing-page.weebly .hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,213,190,0.14) 0%, transparent 65%);
    pointer-events: none;
}

.landing-page.weebly .hero .container {
    position: relative;
    z-index: 1;
}

/* Two-column inner wrapper */
.landing-page.weebly .hero .hm-hero-inner {
    display: flex;
    align-items: center;
    gap: 56px;
}

.landing-page.weebly .hero .hm-hero-left {
    flex: 1 1 0;
    min-width: 0;
}

.landing-page.weebly .hero .hm-hero-right {
    flex: 0 0 48%;
    max-width: 48%;
}

.landing-page.weebly .hero .hm-hero-right img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.38), 0 8px 24px rgba(0,0,0,0.22);
    display: block;
}

.landing-page.weebly .hero h2 {
    font-family: var(--hm-sp-heading-font);
    color: var(--hm-sp-hero-text);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.13;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
    text-align: left;
}

.landing-page.weebly .hero h3 {
    color: var(--hm-sp-hero-sub);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 32px;
    max-width: 480px;
    line-height: 1.6;
    text-align: left;
}

.landing-page.weebly .hero .hm-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.landing-page.weebly .hero .hm-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hm-sp-hero-accent);
    color: #111827;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: var(--hm-sp-btn-radius);
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.2s, transform 0.15s;
}

.landing-page.weebly .hero .hm-hero-btn-primary:hover {
    background: #00c0ad;
    transform: translateY(-1px);
    text-decoration: none;
    color: #111827;
}

/* HM changes: Outline secondary CTA button */
.landing-page.weebly .hero .hm-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: var(--hm-sp-btn-radius);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.28);
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.landing-page.weebly .hero .hm-hero-btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

.landing-page.weebly .hero .hm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    margin: 0 auto 20px;
}

.landing-page.sitebuilder .hero {
    margin-top: 0px;
}

.landing-page.sitebuilder .hero .hm-hero-right img {
    margin-top: 32px;
}

/* ==========================================================================
   HM changes: Professional sticky sub-navigation
   ========================================================================== */
.landing-page.weebly .hm-subnav {
    background: rgba(255,255,255,0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hm-sp-nav-border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-page.weebly .hm-subnav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.landing-page.weebly .hm-snav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hm-sp-nav-text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
}

.landing-page.weebly .hm-snav-link:hover {
    background: #f3f4f6;
    color: var(--hm-sp-nav-hover);
    text-decoration: none;
}

.landing-page.weebly .hm-snav-link.active {
    background: var(--hm-sp-nav-active-color);
    color: #ffffff;
    border-color: var(--hm-sp-nav-active-color);
    text-decoration: none;
}

.landing-page.weebly .hm-snav-link svg {
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.landing-page.weebly .hm-snav-link:hover svg,
.landing-page.weebly .hm-snav-link.active svg {
    opacity: 1;
}

/* ==========================================================================
   HM changes: Generic section chrome
   ========================================================================== */
.landing-page.weebly .content-block {
    padding: 88px 0;
}

.landing-page.weebly .content-block:nth-child(even) {
    background: var(--hm-sp-section-alt);
}

.landing-page.weebly .hm-section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hm-sp-hero-accent);
    margin-bottom: 10px;
}

.landing-page.weebly .hm-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hm-sp-pricing-header);
    margin: 0 auto 14px;
    max-width: 580px;
    line-height: 1.22;
}

.landing-page.weebly .hm-section-sub {
    text-align: center;
    color: var(--hm-sp-faq-a);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 52px;
    line-height: 1.6;
}

/* ==========================================================================
   HM changes: Overview / Introduction section (image + text)
   ========================================================================== */
.landing-page.weebly .image-standout.content-block {
    background: var(--hm-sp-section-white);
}

.landing-page.weebly .content-block.image-standout .lead {
    font-size: 1.1rem;
    color: var(--hm-sp-faq-a);
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.7;
}

.landing-page.weebly .content-block.image-standout .row {
    align-items: center;
    gap: 0;
}

.landing-page.weebly .content-block.image-standout img {
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
    width: 100%;
    display: block;
}

.landing-page.weebly .content-block.image-standout h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--hm-sp-pricing-header);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.landing-page.weebly .content-block.image-standout p {
    color: var(--hm-sp-faq-a);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   HM changes: Features grid — icon cards
   ========================================================================== */
.landing-page.weebly .content-block.features {
    background: var(--hm-sp-section-alt);
}

.landing-page.weebly .content-block.features .row {
    row-gap: 24px;
}

.landing-page.weebly .feature {
    background: var(--hm-sp-card-bg);
    border: 1px solid var(--hm-sp-card-border);
    border-radius: 14px;
    padding: 28px 24px 24px;
    text-align: center;
    box-shadow: var(--hm-sp-card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-page.weebly .feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--hm-sp-card-shadow-hover);
}

.landing-page.weebly .feature .icon {
    width: 64px;
    height: 64px;
    background: var(--hm-sp-card-icon-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    flex-shrink: 0;
}

.landing-page.weebly .feature .icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    filter: grayscale(1) brightness(0.3);
}

.landing-page.weebly .feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hm-sp-pricing-header);
    margin: 0 0 8px;
    line-height: 1.3;
}

.landing-page.weebly .feature p {
    font-size: 0.85rem;
    color: var(--hm-sp-faq-a);
    margin: 0;
    line-height: 1.55;
}

.landing-page .content-block {
    margin: 0px;
}

/* ==========================================================================
   HM changes: Pricing section — full-width dark background (Lagom style)
   ========================================================================== */
.landing-page.weebly .content-block.pricing {
    background: var(--hm-sp-section-dark);
    padding: 88px 0 100px;
}

/* Pricing section title */
.landing-page.weebly .hm-pricing-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 36px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Billing cycle toggle */
.landing-page.weebly .btn-group {
    background: var(--hm-sp-section-alt);
    border-radius: 10px;
    padding: 4px;
    display: inline-flex;
    gap: 2px;
}

.landing-page.weebly .btn-group .btn {
    background: transparent;
    border: none;
    border-radius: 7px;
    color: var(--hm-sp-faq-a);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    box-shadow: none !important;
}

.landing-page.weebly .btn-group .btn.active,
.landing-page.weebly .btn-group .btn:focus {
    background: var(--hm-sp-btn-primary-bg);
    color: var(--hm-sp-btn-primary-text);
}

/* Dark-bg overrides for billing toggle inside the pricing section */
.landing-page.weebly .content-block.pricing .btn-group {
    background: rgba(255,255,255,0.1);
    margin-bottom: 8px;
}

.landing-page.weebly .content-block.pricing .btn-group .btn {
    color: rgba(255,255,255,0.6);
}

.landing-page.weebly .content-block.pricing .btn-group .btn.active,
.landing-page.weebly .content-block.pricing .btn-group .btn:focus {
    background: #ffffff;
    color: #111827;
}

/* Currency selector on dark bg */
.landing-page.weebly .content-block.pricing .currency-selector {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.8);
}

/* Centered billing controls wrapper */
.landing-page.weebly .hm-pricing-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
}

.landing-page.weebly .hm-pricing-controls .currency-selector {
    min-width: 220px;
    font-size: 0.8rem;
}

/* Free/Lite plan banner */
.landing-page.weebly .weebly-lite-plan {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.08);
}

.landing-page.weebly .weebly-lite-plan h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.landing-page.weebly .weebly-lite-plan h5 {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 400;
    margin: 0 0 10px;
}

.landing-page.weebly .weebly-lite-plan p {
    color: #6b7280;
    font-size: 0.88rem;
    margin: 0;
}

.landing-page.weebly .weebly-lite-plan .pricing {
    float: none;
    text-align: right;
}

.landing-page.weebly .weebly-lite-plan .pricing .pricing-text {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1;
}

/* Plan cards — clean, borderless white cards on dark bg */
.landing-page.weebly .row.weebly-plans {
    row-gap: 28px;
    align-items: stretch;
}

.landing-page.weebly .pricing-item {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.landing-page.weebly .pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.24), 0 2px 8px rgba(0,0,0,0.1);
}

.landing-page.weebly .pricing-item.hm-featured {
    outline: 2px solid var(--hm-sp-hero-accent);
    outline-offset: -2px;
}

/* Clean header (no dark bg) */
.landing-page.weebly .pricing-item .header {
    background: transparent;
    padding: 32px 28px 16px;
    text-align: center;
}

.landing-page.weebly .pricing-item .header h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    margin: 0 0 6px;
    letter-spacing: 0;
}

.landing-page.weebly .pricing-item .header h5 {
    font-size: 0.8rem;
    font-weight: 400;
    color: #9ca3af;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.landing-page.weebly .pricing-item .price {
    text-align: center;
    padding: 8px 28px 24px;
    border-bottom: none;
}

.landing-page.weebly .pricing-item .price .pricing-text {
    font-size: 2.6rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    display: block;
}

.landing-page.weebly .pricing-item .feature-heading {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #111827;
    text-align: center;
    padding: 20px 28px 8px;
}

.landing-page.weebly .pricing-item ul {
    list-style: none;
    margin: 0;
    padding: 0 28px 8px;
    flex: 1;
    text-align: center;
}

.landing-page.weebly .pricing-item ul li {
    font-size: 0.875rem;
    color: #6b7280;
    padding: 6px 0;
    position: static;
    line-height: 1.4;
}

.landing-page.weebly .pricing-item ul li::before {
    display: none;
}

/* Pricing CTA button — light blue ghost */
.landing-page.weebly .pricing-item .btn-signup,
.landing-page.weebly .btn-signup {
    display: block;
    margin: auto 28px 28px;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    width: calc(100% - 56px);
}

.landing-page.weebly .pricing-item .btn-signup:hover,
.landing-page.weebly .btn-signup:hover {
    background: rgba(59, 130, 246, 0.18);
    color: #1d4ed8;
    transform: none;
    text-decoration: none;
}

.landing-page.weebly .pricing-item form {
    margin-top: auto;
}

.landing-page.weebly .weebly-lite-plan .btn-signup {
    display: inline-block;
    margin: 0;
    width: auto;
    padding: 12px 28px;
    flex-shrink: 0;
}

/* ==========================================================================
   HM changes: FAQ section — full-width accordion
   ========================================================================== */
.landing-page.weebly .content-block.faq {
    background: #ffffff;
    padding: 100px 0;
}

.landing-page.weebly .content-block.faq h3.text-center {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 56px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Accordion list */
.landing-page.weebly .hm-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.landing-page.weebly .hm-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.landing-page.weebly .hm-faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

/* Question row */
.landing-page.weebly .hm-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    color: #374151;
    font-weight: 400;
    gap: 20px;
    line-height: 1.5;
}

.landing-page.weebly .hm-faq-q:focus,
.landing-page.weebly .hm-faq-q:focus-visible {
    outline: none;
    box-shadow: none;
}

.landing-page.weebly .hm-faq-q:hover {
    color: #111827;
}

/* + icon */
.landing-page.weebly .hm-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #9ca3af;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    transition: transform 0.22s ease;
    display: block;
    font-style: normal;
}

.landing-page.weebly .hm-faq-item.open .hm-faq-icon {
    transform: rotate(45deg);
}

/* Answer panel */
.landing-page.weebly .hm-faq-a {
    display: none;
    padding: 0 0 22px;
}

.landing-page.weebly .hm-faq-item.open .hm-faq-a {
    display: block;
}

.landing-page.weebly .hm-faq-a p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   HM changes: Trust / footer strip
   ========================================================================== */
.landing-page.weebly .content-block.trusted-by {
    background: var(--hm-sp-section-dark);
    padding: 40px 0;
}

.landing-page.weebly .content-block.trusted-by img {
    filter: brightness(0) invert(1);
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

.landing-page.weebly .content-block.trusted-by .text-right {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 767px) {
    .landing-page.weebly .hero {
        padding: 56px 0 48px;
    }

    .landing-page.weebly .hero .hm-hero-inner {
        flex-direction: column-reverse;
        gap: 36px;
    }

    .landing-page.weebly .hero .hm-hero-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .landing-page.weebly .hero h2 {
        font-size: 2.1rem;
        letter-spacing: -0.02em;
    }

    .landing-page.weebly .hero h3 {
        font-size: 1rem;
    }

    .landing-page.weebly .hm-snav-label {
        display: none;
    }

    .landing-page.weebly .hm-snav-link {
        padding: 10px 14px;
    }

    .landing-page.weebly .hm-pricing-title {
        font-size: 1.7rem;
    }

    .landing-page.weebly .content-block {
        padding: 56px 0;
    }

    .landing-page.weebly .hm-section-title {
        font-size: 1.55rem;
    }

    .landing-page.weebly .weebly-lite-plan {
        flex-direction: column;
        text-align: center;
    }

    .landing-page.weebly .weebly-lite-plan .pricing {
        text-align: center;
    }

    .landing-page.weebly .content-block.trusted-by .text-right {
        justify-content: center;
        margin-top: 16px;
    }
}

/* ==========================================================================
   HM changes: Site Builder store page — sitebuilder-specific styles
   Uses the shared .landing-page.weebly design system; overrides accent color.
   ========================================================================== */

/* Site Builder accent — tracks template --primary so theme changes propagate here */
.landing-page.sitebuilder {
    --hm-sp-accent:           var(--primary, #111827);
    --hm-sp-accent-pale:      var(--bg-lifted, #f4f5f7);
    --hm-sp-accent-lifted:    var(--primary-lifted, #1f2937);
    --hm-sp-hero-accent:      var(--teal-400, #00d5be);
    --hm-sp-nav-active-line:  var(--hm-sp-accent);
    --hm-sp-nav-active-color: var(--text, #111827);
    --hm-sp-tick-color:       var(--hm-sp-accent);
    --hm-sp-btn-primary-bg:   var(--hm-sp-accent);
    --hm-sp-btn-primary-hover:var(--hm-sp-accent-lifted);
}

/* Primary CTA button — full shape for every context on the page */
.landing-page.sitebuilder .hm-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--hm-sp-btn-primary-bg);
    color: var(--hm-sp-btn-primary-text, #ffffff);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 32px;
    border-radius: var(--hm-sp-btn-radius, 8px);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.landing-page.sitebuilder .hm-hero-btn-primary:hover {
    background: var(--hm-sp-btn-primary-hover);
    color: var(--hm-sp-btn-primary-text, #ffffff);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.16);
}

/* Hero button — use hero-accent (bright teal) so it pops on the dark hero bg */
.landing-page.sitebuilder .hero .hm-hero-btn-primary {
    background: var(--hm-sp-hero-accent);
    color: #111827;
}
.landing-page.sitebuilder .hero .hm-hero-btn-primary:hover {
    background: var(--hm-sp-hero-accent);
    filter: brightness(1.1);
    color: #111827;
}

/* Eyebrow */
.landing-page.sitebuilder .hm-section-eyebrow {
    color: var(--hm-sp-accent);
}

/* ── Overview ───────────────────────────────────────────────────────── */
.landing-page.sitebuilder .hm-sb-overview {
    background: var(--hm-sp-section-alt);
    padding: 88px 0;
}
.landing-page.sitebuilder .hm-sb-overview-body {
    row-gap: 48px;
}
.landing-page.sitebuilder .hm-sb-overview-text {
    padding-right: 40px;
}
.landing-page.sitebuilder .hm-sb-overview-title {
    text-align: left;
    margin-top: 12px;
    margin-bottom: 20px;
}
/* Decorative image wrapper */
.landing-page.sitebuilder .hm-sb-overview-illo {
    position: relative;
    padding: 20px 0 20px 24px;
}
.landing-page.sitebuilder .hm-sb-overview-illo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 45%, rgba(0,0,0,0.04) 0%, transparent 65%);
    border-radius: 28px;
    z-index: 0;
    pointer-events: none;
}
.landing-page.sitebuilder .hm-sb-overview-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    display: block;
    border-radius: 16px;
    border: 1px solid var(--border-muted);
    background: var(--white);
}
/* Checkmark benefit list */
.landing-page.sitebuilder .hm-sb-overview-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.landing-page.sitebuilder .hm-sb-overview-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.925rem;
    font-weight: 600;
    color: #111827;
}
.landing-page.sitebuilder .hm-sb-overview-checks li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--hm-sp-accent-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E") center/11px no-repeat;
}
.landing-page.sitebuilder .hm-sb-lead {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 16px;
}
.landing-page.sitebuilder .hm-sb-body {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.landing-page.sitebuilder .hm-sb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hm-sp-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.2s;
}
.landing-page.sitebuilder .hm-sb-link:hover {
    gap: 10px;
    text-decoration: none;
}

/* ── Feature tabs ───────────────────────────────────────────────────── */
.landing-page.sitebuilder .hm-sb-features-section {
    background: var(--hm-sp-section-alt);
}

.landing-page.sitebuilder .hm-sb-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 28px 0 32px;
}

.landing-page.sitebuilder .hm-sb-tab {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #374151;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    white-space: nowrap;
}
.landing-page.sitebuilder .hm-sb-tab:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}
.landing-page.sitebuilder .hm-sb-tab.active {
    background: var(--hm-sp-accent);
    color: #fff;
    border-color: var(--hm-sp-accent);
}

.landing-page.sitebuilder .hm-sb-tab-pane {
    display: none;
}
.landing-page.sitebuilder .hm-sb-tab-pane.active {
    display: block;
}

.landing-page.sitebuilder .hm-sb-tagline {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 28px;
}

.landing-page.sitebuilder .hm-sb-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border-muted);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    height: calc(100% - 20px);
}
.landing-page.sitebuilder .hm-sb-feature-card:hover {
    box-shadow: var(--hm-sp-card-shadow-hover);
    transform: translateY(-2px);
    border-color: var(--hm-sp-accent-pale);
}
/* Icon box — top of card */
.landing-page.sitebuilder .hm-sb-feature-card .hm-sb-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--hm-sp-accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.landing-page.sitebuilder .hm-sb-feature-card .hm-sb-feat-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.landing-page.sitebuilder .hm-sb-feat-title {
    display: block;
    font-weight: 700;
    font-size: 0.925rem;
    color: #111827;
    margin-bottom: 6px;
    line-height: 1.35;
}
.landing-page.sitebuilder .hm-sb-feature-card p {
    font-size: 0.84rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ── Templates ──────────────────────────────────────────────────────── */
.landing-page.sitebuilder .hm-sb-tmpl-tabs {
    margin-bottom: 28px;
}

.landing-page.sitebuilder .hm-sb-tmpl-link {
    display: block;
    text-decoration: none;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-muted);
    transition: box-shadow 0.2s, transform 0.2s;
}
.landing-page.sitebuilder .hm-sb-tmpl-link:hover {
    box-shadow: var(--hm-sp-card-shadow-hover);
    transform: translateY(-3px);
    text-decoration: none;
}

.landing-page.sitebuilder .hm-sb-tmpl-thumb {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: 16/10;
}
.landing-page.sitebuilder .hm-sb-tmpl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}
.landing-page.sitebuilder .hm-sb-tmpl-link:hover .hm-sb-tmpl-thumb img {
    transform: scale(1.04);
}

.landing-page.sitebuilder .hm-sb-tmpl-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.landing-page.sitebuilder .hm-sb-tmpl-name {
    display: block;
    padding: 10px 14px;
    font-weight: 600;
    color: #111827;
    background: #fff;
}

.landing-page.sitebuilder .hm-sb-tmpl-showmore {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
}

.landing-page.sitebuilder .hm-sb-tmpl-more {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    background: #f9fafb;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    margin-bottom: 0;
}
.landing-page.sitebuilder .hm-sb-tmpl-more:hover {
    border-color: var(--hm-sp-accent);
    color: var(--hm-sp-accent);
    text-decoration: none;
}

.landing-page.sitebuilder .hm-sb-tmpl-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hm-sp-accent-pale);
    color: var(--hm-sp-accent);
    font-size: 1.6rem;
    line-height: 1;
}

/* ── Templates CTA callout ──────────────────────────────────────────── */
.landing-page.sitebuilder .hm-sb-tmpl-cta {
    margin-top: 48px;
    background: var(--hm-sp-section-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 36px;
    flex-wrap: wrap;
}
.landing-page.sitebuilder .hm-sb-tmpl-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400, #00d5be);
    flex-shrink: 0;
}
.landing-page.sitebuilder .hm-sb-tmpl-cta-body {
    flex: 1;
    min-width: 200px;
}
.landing-page.sitebuilder .hm-sb-tmpl-cta-body strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.landing-page.sitebuilder .hm-sb-tmpl-cta-body span {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.5;
}
.landing-page.sitebuilder .hm-sb-tmpl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hm-sp-btn-primary-bg);
    color: var(--hm-sp-btn-primary-text, #ffffff);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: var(--hm-sp-btn-radius, 8px);
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.landing-page.sitebuilder .hm-sb-tmpl-cta-btn:hover {
    background: var(--hm-sp-btn-primary-hover);
    color: var(--hm-sp-btn-primary-text, #ffffff);
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── Pricing ────────────────────────────────────────────────────────── */
.landing-page.sitebuilder .hm-sb-pricing-section {
    background: var(--hm-sp-section-dark);
    position: relative;
    overflow: hidden;
}
/* Grid overlay — same pattern as hero */
.landing-page.sitebuilder .hm-sb-pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,213,190,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,213,190,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.landing-page.sitebuilder .hm-sb-pricing-section .container {
    position: relative;
    z-index: 1;
}
.landing-page.sitebuilder .hm-sb-pricing-section .hm-section-eyebrow {
    color: var(--teal-400, #00d5be);
}
.landing-page.sitebuilder .hm-sb-pricing-section .hm-pricing-title {
    color: #fff;
}
.landing-page.sitebuilder .hm-sb-pricing-section .hm-sb-tagline {
    color: rgba(255,255,255,0.65);
}

.landing-page.sitebuilder .hm-sb-plan-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.landing-page.sitebuilder .hm-sb-try-free-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* On dark pricing bg the default accent btn is invisible — force teal */
.landing-page.sitebuilder .hm-sb-try-free-cta .hm-hero-btn-primary {
    background: var(--hm-sp-hero-accent);
    color: #111827;
    border-color: var(--hm-sp-hero-accent);
}
.landing-page.sitebuilder .hm-sb-try-free-cta .hm-hero-btn-primary:hover {
    background: var(--hm-sp-hero-accent);
    filter: brightness(1.1);
    color: #111827;
}

.landing-page.sitebuilder .hm-sb-plan-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px 28px;
    flex: 1 1 200px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-page.sitebuilder .hm-sb-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.landing-page.sitebuilder .hm-sb-plan-featured {
    border-color: var(--hm-sp-accent);
    box-shadow: 0 0 0 2px var(--hm-sp-accent), 0 16px 40px rgba(0,0,0,0.22);
}

.landing-page.sitebuilder .hm-sb-plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-400, #00d5be);
    margin-bottom: 10px;
}
.landing-page.sitebuilder .hm-sb-plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1;
}
.landing-page.sitebuilder .hm-sb-plan-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    flex: 1;
}
.landing-page.sitebuilder .hm-sb-plan-feats li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: #374151;
    padding: 5px 0;
}
.landing-page.sitebuilder .hm-sb-tick { stroke: var(--teal-400, #00d5be); flex-shrink:0; }
.landing-page.sitebuilder .hm-sb-cross { stroke: #9ca3af; flex-shrink:0; }

.landing-page.sitebuilder .hm-sb-plan-btn {
    display: block;
    width: 100%;
    padding: 11px 0;
    border-radius: 8px;
    border: 2px solid var(--hm-sp-accent);
    background: transparent;
    color: var(--hm-sp-accent);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}
.landing-page.sitebuilder .hm-sb-plan-btn:hover {
    background: var(--hm-sp-accent);
    color: #fff;
}
.landing-page.sitebuilder .hm-sb-plan-featured .hm-sb-plan-btn {
    background: var(--hm-sp-accent);
    color: #fff;
}
.landing-page.sitebuilder .hm-sb-plan-featured .hm-sb-plan-btn:hover {
    background: var(--hm-sp-accent-lifted);
}

/* ── Compare ────────────────────────────────────────────────────────── */
.landing-page.sitebuilder .hm-sb-compare-grid {
    margin-top: 36px;
}
.landing-page.sitebuilder .hm-sb-compare-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--hm-sp-card-shadow);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    height: calc(100% - 20px);
}
.landing-page.sitebuilder .hm-sb-compare-card:hover {
    box-shadow: var(--hm-sp-card-shadow-hover);
    transform: translateY(-2px);
    border-color: var(--hm-sp-accent-pale);
}
.landing-page.sitebuilder .hm-sb-compare-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--hm-sp-accent-pale);
    color: var(--hm-sp-accent);
    flex-shrink: 0;
    margin-bottom: 16px;
}
.landing-page.sitebuilder .hm-sb-compare-title {
    display: block;
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.35;
}
.landing-page.sitebuilder .hm-sb-compare-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.65;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .landing-page.sitebuilder .hm-sb-plan-cards {
        flex-direction: column;
        align-items: center;
    }
    .landing-page.sitebuilder .hm-sb-plan-card {
        max-width: 100%;
    }
    .landing-page.sitebuilder .hm-sb-overview-img {
        width: 100%;
        max-width: none;
    }
    .landing-page.sitebuilder .hm-sb-overview-text {
        padding-right: 0;
    }
    .landing-page.sitebuilder .hm-sb-overview-illo {
        padding: 16px 0;
        margin-top: 8px;
    }
    .landing-page.sitebuilder .hm-sb-overview-title {
        text-align: left;
    }
}
