:root {
    --primary-purple: #1D4ED8;
    --secondary-green: #16A34A;
    --accent-aqua: #0EA5E9;
    --light-bg: #F8FAFB;
    --white: #FFFFFF;
    --dark-text: #1F2937;
    --light-text: #6B7280;
    --border-light: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    --glass-bg:         rgba(255, 255, 255, 0.60);
    --glass-bg-strong:  rgba(255, 255, 255, 0.78);
    --glass-border:     rgba(255, 255, 255, 0.62);
    --glass-blur:       blur(20px) saturate(180%);
    --glass-blur-sm:    blur(12px) saturate(160%);
    --glass-specular:   inset 0 1px 0 rgba(255, 255, 255, 0.92), inset 0 -1px 0 rgba(255, 255, 255, 0.22);
    --glass-shadow:     0 8px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: linear-gradient(160deg, #EFF6FF 0%, #F0FDF4 100%) fixed;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(160deg, #EFF6FF 0%, #F0FDF4 100%) fixed;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.875rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

body {
    padding-top: 82px;
}

.sbh-site-nav {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), var(--glass-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.sbh-site-nav .container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
}

.sbh-site-nav-logo {
    flex-shrink: 0;
}

.sbh-site-nav-logo img {
    display: block;
    height: 50px;
    width: auto;
}

.sbh-site-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.sbh-site-nav-menu > li {
    position: relative;
    display: flex;
    align-items: center;
}

.sbh-site-nav-menu > li.sbh-site-nav-mobile-actions {
    display: none;
}

.sbh-site-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.sbh-site-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-aqua));
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sbh-site-nav-menu > li > a:hover {
    color: var(--primary-purple);
}

.sbh-site-nav-menu > li > a:hover::after,
.sbh-site-nav-menu > li.active > a::after {
    opacity: 1;
}

.sbh-site-nav-caret {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    opacity: 0.7;
}

.nav-new-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-green));
    color: #fff;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: 0.3rem;
    line-height: 1.4;
    position: relative;
    top: -1px;
}

.sbh-site-nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    padding-top: 0.75rem;
    list-style: none;
    margin: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.sbh-site-nav-submenu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

@media (hover: hover) and (pointer: fine) {
    .sbh-site-nav-has-submenu:hover .sbh-site-nav-submenu,
    .sbh-site-nav-has-submenu:focus-within .sbh-site-nav-submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.sbh-site-nav-has-submenu.sbh-submenu-open .sbh-site-nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sbh-site-nav-submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-text);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    white-space: normal;
    transition: background 0.15s ease, color 0.15s ease;
}

.sbh-site-nav-submenu li a:hover {
    background: rgba(29, 78, 216, 0.07);
    color: var(--primary-purple);
    border-radius: 0.25rem;
}

.sbh-site-nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.sbh-nav-support {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: transparent;
    border: 1.5px solid var(--accent-aqua);
    color: var(--accent-aqua);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sbh-nav-support:hover {
    background: var(--accent-aqua);
    color: var(--white);
}

.sbh-nav-cta {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.sbh-site-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 0.375rem;
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-left: auto;
    cursor: pointer;
    padding: 0.35rem 0.6rem;
    line-height: 1;
    transition: background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.sbh-site-nav-toggle:hover {
    background: var(--light-bg);
}

.sbh-site-nav-toggle .fa-bars { display: inline; }
.sbh-site-nav-toggle .fa-times { display: none; }
.sbh-site-nav-toggle[aria-expanded="true"] .fa-bars { display: none; }
.sbh-site-nav-toggle[aria-expanded="true"] .fa-times { display: inline; }

@media (max-width: 1200px) and (min-width: 946px) {
    .sbh-nav-support-label {
        display: none;
    }
    .sbh-nav-support {
        width: 2.4rem;
        height: 2.4rem;
        padding: 0;
        border-radius: 0.5rem;
        justify-content: center;
    }
}

@media (max-width: 945px) {
    .sbh-site-nav-toggle {
        display: block;
    }

    .sbh-site-nav-actions {
        display: none;
    }

    .sbh-site-nav .container {
        flex-wrap: nowrap;
        padding: 0.75rem 1rem;
        position: relative;
    }

    .sbh-site-nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 1rem;
        border-top: 1px solid var(--border-light);
    }

    .sbh-site-nav.sbh-nav-open .sbh-site-nav-menu {
        display: flex !important;
    }

    .sbh-site-nav-menu > li {
        width: 100%;
        display: block;
        position: static;
    }

    .sbh-site-nav-menu > li > a {
        display: block;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        white-space: normal;
    }

    .sbh-site-nav-menu > li > a:hover {
        background-color: var(--light-bg);
        color: var(--primary-purple);
    }

    .sbh-site-nav-menu > li > a::after {
        display: none !important;
    }

    .sbh-site-nav-has-submenu .sbh-site-nav-submenu,
    .sbh-site-nav-has-submenu:hover .sbh-site-nav-submenu,
    .sbh-site-nav-has-submenu:focus-within .sbh-site-nav-submenu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .sbh-site-nav-has-submenu.sbh-submenu-open .sbh-site-nav-submenu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        height: auto !important;
        overflow: visible !important;
        background: var(--light-bg) !important;
        border-radius: 0 !important;
        padding: 0.25rem 0 !important;
    }

    .sbh-site-nav-has-submenu.sbh-submenu-open .sbh-site-nav-submenu li a {
        padding: 0.6rem 1.5rem 0.6rem 2.5rem !important;
        font-size: 0.9rem !important;
    }

    .sbh-site-nav-has-submenu.sbh-submenu-open .sbh-site-nav-caret {
        transform: rotate(180deg);
    }

    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions {
        display: block;
        padding: 0;
    }

    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions:first-of-type {
        margin-top: 0.5rem;
        border-top: 1px solid var(--border-light);
        padding-top: 0.25rem;
    }

    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions > a.btn {
        margin: 0.5rem 1rem;
        width: calc(100% - 2rem);
        display: block;
        text-align: center;
        border-radius: 0.5rem !important;
    }

    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions > a.sbh-nav-contact-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background-color: var(--light-bg);
        color: var(--dark-text);
        font-size: 1rem;
    }

    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions > a.sbh-nav-contact-mobile:hover {
        background-color: var(--accent-aqua);
        color: var(--white);
    }

    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions > a.btn-primary,
    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions > a.btn-primary:hover,
    .sbh-site-nav-menu > li.sbh-site-nav-mobile-actions > a.btn-primary:active {
        color: var(--white);
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-green));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent-aqua);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.sbh-panel {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.06);
}

.sbh-panel-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-aqua));
    color: var(--white);
}

.sbh-panel-bar-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.sbh-panel-bar-label i {
    opacity: 0.9;
}

.sbh-panel-bar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sbh-panel-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.sbh-panel-bar-btn:hover {
    background: rgba(255, 255, 255, 0.32);
    color: var(--white);
}

.sbh-panel-body {
    padding: 1.5rem;
}

.main-content {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 1.5rem 0;
    background: transparent;
}

.section-alt {
    background: rgba(255, 255, 255, 0.50);
}

.hero {
    padding: 3.5rem 0 2.5rem;
    background: transparent;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(29, 78, 216,.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(22, 163, 74,.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(29, 78, 216,.08);
    color: var(--primary-purple);
    border: 1px solid rgba(29, 78, 216,.22);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero h1 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.hero h1 span { color: var(--primary-purple); }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.hero-trust i { color: var(--secondary-green); }

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-container {
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.slider-viewport {
    overflow: hidden;
    min-height: 300px;
}

.slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    width: 100%;
    height: 100%;
    will-change: transform;
}

.slider-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--white);
}

.slider-slide.feature-intro         { background-color: #EEF4FF; }
.slider-slide.feature-hosting        { background-color: #EFFDF8; }
.slider-slide.feature-email          { background-color: #F5F0FF; }
.slider-slide.feature-nvme           { background-color: #FFFBEB; }
.slider-slide.feature-plesk          { background-color: #EBF8FC; }
.slider-slide.feature-environmental  { background-color: #EDFBF3; }

.slider-content {
    max-width: 620px;
}

.slider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    color: var(--primary-purple);
}

.feature-intro .slider-icon          { color: var(--secondary-green); }
.feature-hosting .slider-icon        { color: var(--accent-aqua); }
.feature-email .slider-icon          { color: var(--primary-purple); }
.feature-nvme .slider-icon           { color: #D97706; }
.feature-plesk .slider-icon          { color: var(--accent-aqua); }
.feature-environmental .slider-icon  { color: var(--secondary-green); }

.slider-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.slider-description {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.slider-controls {
    position: relative;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 0.9rem 1rem;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dot:hover {
    background-color: rgba(29, 78, 216, 0.35);
}

.slider-dot.active {
    background: var(--primary-purple);
    width: 28px;
    border-radius: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.25rem;
    margin-top: 0;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-aqua);
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 0.6rem;
    color: var(--primary-purple);
}

.features-grid .feature-card:nth-child(3n+2) .feature-icon {
    color: var(--accent-aqua);
}
.features-grid .feature-card:nth-child(3n) .feature-icon {
    color: var(--secondary-green);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--dark-text);
}

.sbh-features-item:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}
@media (min-width: 820px) {
    .sbh-features-item {
        border-bottom: none !important;
    }
}

.h-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.h-timeline-track {
    position: relative;
    padding: 0 0.75rem;
    margin-bottom: 2.25rem;
}

.h-timeline-line {
    position: absolute;
    top: 0.85rem;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background: var(--border-light);
    border-radius: 2px;
    z-index: 0;
}

.h-timeline-nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.h-timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline-offset: 4px;
}

.h-timeline-dot {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-purple);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.h-timeline-node:hover .h-timeline-dot {
    background: rgba(29, 78, 216, 0.2);
    transform: scale(1.2);
}

.h-timeline-node.active .h-timeline-dot {
    background: var(--primary-purple);
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(29, 78, 216, 0.18);
}

.h-timeline-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--light-text);
    transition: color 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.h-timeline-node.active .h-timeline-label {
    color: var(--primary-purple);
}

.h-timeline-panels {
    display: grid;
}

.h-timeline-panel {
    grid-row: 1;
    grid-column: 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.75rem 2rem;
    transition: opacity 0.35s ease;
}

.h-timeline-panel.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    animation: htFadeIn 0.4s ease;
}

@keyframes htFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.h-timeline-panel h3 {
    margin-bottom: 1.25rem;
    color: var(--dark-text);
    overflow-wrap: break-word;
}

.h-timeline-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    align-items: start;
}

.h-timeline-panel-inner--text-only {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.h-timeline-text p {
    color: var(--light-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.h-timeline-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.h-timeline-image--duo {
    grid-template-columns: 1fr 1fr;
}

.h-timeline-image-overlap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.h-timeline-image-overlap > *:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    z-index: 1;
}

.h-timeline-image-overlap > *:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 72%;
    z-index: 2;
}

.h-timeline-image-overlap > *:last-child .timeline-img-frame {
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.h-timeline-image-overlap figure {
    margin: 0;
}

.h-timeline-image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.h-timeline-image-pair figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.h-timeline-image-pair figcaption {
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.h-timeline-convergence {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.h-timeline-convergence-sources {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.h-timeline-convergence-source,
.h-timeline-convergence-result {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.h-timeline-convergence-source figcaption,
.h-timeline-convergence-result figcaption {
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.h-timeline-convergence-arrow {
    font-size: 1.5rem;
    color: var(--primary-purple);
    flex-shrink: 0;
    opacity: 0.6;
}

.h-timeline-convergence-result {
    flex: none;
    width: 45%;
}

.timeline-screenshot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-screenshot--fit {
    object-fit: contain;
}

.timeline-img-frame {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 800px) {
    .h-timeline-panel-inner {
        grid-template-columns: 1fr;
    }
    .h-timeline-convergence-sources {
        flex-direction: column;
    }
    .h-timeline-image-overlap {
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .h-timeline-panel {
        padding: 1.25rem 1rem;
    }
    .h-timeline-label {
        display: none;
    }
    .h-timeline-track {
        padding: 0 0.25rem;
    }
    .h-timeline-line {
        left: 0.25rem;
        right: 0.25rem;
        top: 0.75rem;
    }
    .h-timeline-image-overlap {
        max-width: 90%;
    }
    .h-timeline-image--duo,
    .h-timeline-image-pair {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-section {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-section h2 {
    margin-bottom: 1rem;
}

.pricing-intro {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-aqua));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover,
.sbh-plan-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-aqua);
}

.sbh-plan-hover {
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    border-width: 3px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.15);
}

.pricing-card:not(.featured) {
    align-self: start;
}

@media (min-width: 650px) and (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    .pricing-card,
    .pricing-card.featured,
    .pricing-card:not(.featured) {
        display: grid !important;
        grid-template-columns: 210px 1fr !important;
        grid-template-rows: 1fr auto !important;
        column-gap: 1.75rem !important;
        align-items: start !important;
        align-self: auto !important;
        flex-direction: unset;
    }
    .pricing-card-top {
        grid-column: 1;
        grid-row: 1;
    }
    .pricing-card-features {
        grid-column: 2;
        grid-row: 1 / 3;
        min-width: 0;
    }
    .plan-cta {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        margin-top: 1rem;
        align-self: end;
    }
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--light-text);
}

.plan-description {
    color: var(--light-text);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
}

.plan-features li {
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--secondary-green);
    font-weight: bold;
}

.plan-cta {
    width: 100%;
    margin-top: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-aqua);
}

.blog-date {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.blog-excerpt {
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-card-content {
    padding: 1.5rem;
}

.read-more {
    color: var(--primary-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

.footer {
    background: linear-gradient(135deg, var(--dark-text), var(--primary-purple));
    color: var(--white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-section a:hover {
    color: var(--accent-aqua);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-aqua);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--white);
}

.footer-copyright {
    flex-basis: 100%;
    min-width: 200px;
    margin: 0;
    color: var(--white);
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-shrink: 0;
    width: 100%;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-payment-icons:hover {
    opacity: 1;
}

.footer-payment-icons i {
    font-size: 1.75rem;
}

.footer-nominet-logo {
    height: 34px;
    opacity: 0.7;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.footer-nominet-logo:hover {
    opacity: 1;
}

.footer-bottom p {
    color: var(--white);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .section {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .slider-slide {
        padding: 2.5rem 1.25rem;
    }

    .slider-title {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .plan-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-cta,
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .slider-slide {
        padding: 2rem 1rem;
    }

    .slider-icon {
        font-size: 3rem;
    }

    .slider-title {
        font-size: 1.25rem;
    }
}

.sbh-email-slider {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-areas:
        "nav stage"
        "nav caption";
    gap: 0 1.75rem;
    align-items: start;
}

.sbh-email-slider-nav {
    grid-area: nav;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.sbh-email-tab {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.6rem 0.85rem;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0 0.5rem 0.5rem 0;
    background: transparent;
    color: var(--light-text);
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sbh-email-tab-icon {
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
    margin-top: 0.15rem;
    font-size: 0.85rem;
    opacity: 0.55;
    transition: opacity 0.2s, color 0.2s;
}

.sbh-email-tab-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sbh-email-tab-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark-text);
    line-height: 1.3;
    transition: color 0.2s;
}

.sbh-email-tab-desc {
    font-size: 0.8rem;
    color: var(--light-text);
    line-height: 1.5;
    margin-top: 0.3rem;
    display: none;
}

.sbh-email-tab:hover {
    background: var(--light-bg);
    border-left-color: var(--border-light);
}

.sbh-email-tab:hover .sbh-email-tab-icon {
    opacity: 0.85;
}

.sbh-email-tab.active {
    border-left-color: var(--primary-purple);
    background: rgba(29, 78, 216, 0.06);
}

.sbh-email-tab.active .sbh-email-tab-icon {
    opacity: 1;
    color: var(--primary-purple);
}

.sbh-email-tab.active .sbh-email-tab-title {
    color: var(--primary-purple);
}

.sbh-email-tab.active .sbh-email-tab-desc {
    display: none;
}

.sbh-email-slider-stage {
    grid-area: stage;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sbh-email-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sbh-email-slide.active {
    opacity: 1;
    visibility: visible;
}

.sbh-email-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sbh-email-slide-caption {
    grid-area: caption;
    font-size: 0.875rem;
    color: var(--light-text);
    line-height: 1.5;
    padding-top: 0.65rem;
}

.sbh-flex-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 450px) {
    .sbh-flex-plan-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 820px) {
    .sbh-email-slider {
        grid-template-columns: 1fr;
        grid-template-areas:
            "nav"
            "stage"
            "caption";
        gap: 0.85rem 0;
    }
    .sbh-email-slider-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    .sbh-email-tab {
        width: auto;
        border-left: none;
        border: 1.5px solid var(--border-light);
        border-radius: 2rem;
        padding: 0.45rem 0.9rem;
        gap: 0.4rem;
    }
    .sbh-email-tab.active {
        border-color: var(--primary-purple);
        background: var(--primary-purple);
    }
    .sbh-email-tab.active .sbh-email-tab-icon,
    .sbh-email-tab.active .sbh-email-tab-title {
        color: #fff;
        opacity: 1;
    }
}

@media (max-width: 500px) {
    .sbh-email-tab-title {
        font-size: 0.8rem;
    }
    .sbh-email-tab {
        padding: 0.4rem 0.75rem;
        gap: 0.35rem;
    }
    .sbh-email-tab-icon {
        font-size: 0.75rem;
    }
}
