/* ==========================================================================
   Makere Hosting - Main Stylesheet
   Mobile First | Dark Blue & Sky Blue Palette
   ========================================================================== */

:root {
    --navy-950: #030712;
    --navy-900: #0a1628;
    --navy-800: #0d2137;
    --navy-700: #1e3a5f;
    --navy-600: #2563eb;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-300: #7dd3fc;
    --sky-200: #bae6fd;
    --sky-100: #e0f2fe;

    --primary: var(--navy-800);
    --primary-dark: var(--navy-900);
    --accent: var(--sky-500);
    --accent-light: var(--sky-400);

    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-body: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 58px;
    --logo-nav-height: 42px;
    --logo-footer-height: 92px;
    --top-header-height: 0px;
    --site-header-height: 58px;
}

[data-theme="dark"] {
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --bg-body: var(--navy-950);
    --bg-alt: var(--navy-900);
    --bg-card: var(--navy-800);
    --border-color: #1e3a5f;
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--site-header-height) + 20px);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-body);
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; height: auto; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--accent-light); }

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content { text-align: center; }

.loader-logo {
    font-size: 3rem;
    color: var(--sky-400);
    animation: pulse 1.5s ease infinite;
}

.loader-bar {
    width: 120px;
    height: 4px;
    background: var(--navy-700);
    border-radius: 4px;
    margin: 1rem auto;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--sky-500), var(--sky-300));
    border-radius: 4px;
    animation: loaderSlide 1s ease infinite;
}

.loader-text {
    color: var(--sky-300);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin: 0;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

/* Compact unified site header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.site-header--compact {
    background: linear-gradient(135deg, #020617 0%, #0a1628 45%, #0c2340 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

[data-theme="dark"] .site-header--compact {
    background: linear-gradient(135deg, #020617 0%, #0a1628 50%, #0d2137 100%);
    border-bottom-color: rgba(56, 189, 248, 0.22);
}

.site-header--compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.45), transparent);
    pointer-events: none;
}

.compact-header {
    padding: 0.35rem 0;
}

.compact-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
    min-height: var(--site-header-height);
}

.compact-header-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    margin-right: 0.25rem;
}

.compact-header-brand:hover {
    opacity: 0.92;
}

.compact-header-nav {
    display: flex;
    flex: 1;
    min-width: 0;
    justify-content: center;
    align-items: center;
}

.compact-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(186, 230, 253, 0.14);
}

.compact-nav-list > li {
    position: relative;
}

.compact-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #cbd5e1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.compact-nav-link i {
    font-size: 0.62rem;
    transition: transform 0.2s ease;
}

.compact-nav-link--dropdown.show i {
    transform: rotate(180deg);
}

.compact-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.compact-nav-link.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.35);
}

.compact-header-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    margin-left: auto;
}

.compact-header-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bae6fd;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(186, 230, 253, 0.2);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    font-size: 0.85rem;
}

.compact-header-icon-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.compact-header .btn-theme-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.compact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.85rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.compact-btn--ghost {
    color: #e2e8f0;
    background: transparent;
    border: 1px solid rgba(186, 230, 253, 0.25);
}

.compact-btn--ghost:hover,
.compact-btn--ghost.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

.compact-btn--primary {
    color: #0f172a;
    background: linear-gradient(135deg, #fef08a 0%, #facc15 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.3);
}

.compact-btn--primary:hover {
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
}

.compact-header-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.35);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.compact-header-menu-btn:hover {
    background: rgba(14, 165, 233, 0.35);
}

.compact-nav-dropdown-wrap .nav-services-dropdown {
    margin-top: 0.5rem !important;
    min-width: 260px;
}

@media (min-width: 576px) {
    :root {
        --logo-nav-height: 46px;
        --site-header-height: 62px;
    }
}

@media (min-width: 992px) {
    :root {
        --logo-nav-height: 48px;
        --site-header-height: 64px;
    }

    .compact-nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .compact-nav-link {
        font-size: 0.72rem;
        padding: 0.35rem 0.55rem;
    }

    .compact-nav-list {
        gap: 0.05rem;
    }
}

/* Section 1: Top Header */
.top-header {
    position: relative;
    z-index: 2;
    color: #e2e8f0;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    overflow: hidden;
    background: linear-gradient(
        115deg,
        #020617 0%,
        #0b1a30 22%,
        #0f2744 48%,
        #0c4a6e 78%,
        #0284c7 100%
    );
    border-bottom: 1px solid rgba(125, 211, 252, 0.14);
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-header-start,
.top-header-end {
    display: flex;
    align-items: center;
    gap: 0.85rem 1.25rem;
    flex-wrap: wrap;
}

.top-header-end {
    margin-left: auto;
}

.top-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #bae6fd;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(186, 230, 253, 0.2);
    white-space: nowrap;
}

.top-header-pill i {
    color: #38bdf8;
    font-size: 0.78rem;
}

.top-header-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
    animation: topHeaderShine 12s ease-in-out infinite;
}

@keyframes topHeaderShine {
    0%, 70% { left: -100%; opacity: 0; }
    80% { opacity: 1; }
    100% { left: 140%; opacity: 0; }
}

.top-header-glow {
    position: absolute;
    top: -40%;
    left: 15%;
    width: 45%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: headerGlow 8s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { transform: translateX(-5%) scale(1); opacity: 0.6; }
    100% { transform: translateX(10%) scale(1.08); opacity: 1; }
}

.top-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 140% at 0% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 120% at 100% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.top-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(186, 230, 253, 0.5) 50%, transparent 100%);
    pointer-events: none;
}

.top-header > .container {
    position: relative;
    z-index: 1;
}

.top-header-info {
    gap: 0.75rem 1.25rem !important;
}

.top-header-link {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
    font-weight: 500;
}

.top-header-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.top-header-link-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(186, 230, 253, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-header-link:hover .top-header-link-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.45), rgba(56, 189, 248, 0.3));
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.top-header-link-text {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-header-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    display: none;
}

@media (min-width: 576px) {
    .top-header-divider { display: block; }
}

.top-header-actions {
    gap: 0.5rem;
    margin-left: auto;
}

.top-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ecfdf5;
    letter-spacing: 0.02em;
    padding: 0.38rem 0.9rem;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(52, 211, 153, 0.32);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.15);
}

.top-header-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.92); }
}

.top-header-badge i {
    color: #34d399;
    font-size: 0.85rem;
}

.top-header-link-btn {
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(186, 230, 253, 0.22);
    transition: all 0.25s ease;
}

.top-header-link-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.top-header-cta {
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #0f172a;
    background: linear-gradient(135deg, #fef08a 0%, #facc15 50%, #eab308 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 12px rgba(234, 179, 8, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-header-cta:hover {
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.45);
}

.top-header-cta i {
    font-size: 0.85rem;
}

.btn-theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(186, 230, 253, 0.3);
    color: #bae6fd;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

[data-theme="light"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: none; }

@media (max-width: 575.98px) {
    .top-header-link-text { max-width: 140px; font-size: 0.75rem; }
    .top-header-pill span { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
    .top-header-inner { gap: 0.5rem; }
}

@media (max-width: 767.98px) {
    .top-header-start { width: 100%; }
    .top-header-end { width: 100%; justify-content: space-between; }
}

/* Section 2: Navbar */
.main-navbar {
    position: relative;
    z-index: 1;
    padding: 0.75rem 0;
    min-height: var(--navbar-height);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(241, 245, 249, 0.96) 100%
    );
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 4px 30px rgba(10, 22, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.site-header--modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        #0369a1 0%,
        #0ea5e9 35%,
        #38bdf8 50%,
        #0ea5e9 65%,
        #0369a1 100%
    );
    background-size: 200% 100%;
    animation: headerAccent 8s ease-in-out infinite;
    z-index: 4;
    opacity: 0.9;
}

@keyframes headerAccent {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.main-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(ellipse 70% 80% at 50% -20%, rgba(14, 165, 233, 0.08) 0%, transparent 55%),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 0%, transparent 40%, transparent 60%, rgba(14, 165, 233, 0.03) 100%);
    pointer-events: none;
}

.main-navbar::after {
    display: none;
}

.main-navbar > .container {
    align-items: center;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .main-navbar {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(7, 15, 28, 0.99) 100%);
    border-top-color: rgba(56, 189, 248, 0.1);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .main-navbar::before {
    background: radial-gradient(ellipse 60% 70% at 50% -10%, rgba(14, 165, 233, 0.12) 0%, transparent 55%);
}

.main-navbar.scrolled {
    background: transparent;
    box-shadow: none;
}

[data-theme="dark"] .main-navbar.scrolled {
    background: transparent;
    box-shadow: none;
}

/* Nav pill menu (desktop) */
.navbar-nav-pill {
    flex-shrink: 0;
}

.navbar-nav-main {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0.3rem 0.4rem;
    margin: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(14, 165, 233, 0.12);
    box-shadow:
        0 1px 2px rgba(10, 22, 40, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .navbar-nav-main {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(56, 189, 248, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform var(--transition), opacity var(--transition);
}

.navbar-brand:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.brand-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
}

.brand-logo-frame--nav {
    padding: 0.15rem 0;
}

.brand-logo-frame--footer {
    padding: 0.25rem 0;
}

.site-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Main header logo */
.site-logo-nav {
    height: var(--logo-nav-height);
    width: auto;
    max-width: min(200px, 42vw);
    min-height: unset;
}

.site-header--compact .site-logo-nav {
    max-width: min(180px, 38vw);
}

.site-logo-footer {
    height: var(--logo-footer-height);
    width: auto;
    max-width: 400px;
    min-height: 72px;
}

.site-logo-mobile {
    height: 68px;
    width: auto;
    max-width: 300px;
    min-height: 56px;
}

@media (min-width: 576px) {
    :root {
        --logo-footer-height: 104px;
    }

    .site-logo-footer {
        max-width: 440px;
    }

    .site-logo-mobile {
        height: 52px;
        max-width: 220px;
    }
}

@media (min-width: 992px) {
    :root {
        --logo-footer-height: 112px;
    }

    .site-logo-footer {
        max-width: 480px;
    }

    .site-header--compact .site-logo-nav {
        max-width: 200px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --logo-nav-height: 38px;
        --site-header-height: 54px;
    }

    .site-logo-nav {
        max-width: min(150px, 48vw);
    }

    .compact-header {
        padding: 0.3rem 0;
    }
}

.mobile-nav-offcanvas .offcanvas-title {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.mobile-nav-offcanvas .brand-logo-frame--mobile {
    width: 100%;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.navbar-actions {
    flex-shrink: 0;
    padding-left: 0.5rem;
}

.main-navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-navbar .navbar-toggler.ms-auto {
    border: 1.5px solid rgba(14, 165, 233, 0.25);
    border-radius: 12px;
    padding: 0.5rem 0.65rem;
    background: rgba(14, 165, 233, 0.06);
    transition: all 0.25s ease;
}

.main-navbar .navbar-toggler.ms-auto:hover {
    background: rgba(14, 165, 233, 0.12);
    border-color: var(--sky-500);
}

.main-navbar .nav-link {
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.main-navbar .nav-link::after {
    display: none;
}

.main-navbar .nav-link:hover {
    color: #0369a1;
    background: rgba(14, 165, 233, 0.08);
}

.main-navbar .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 55%, #38bdf8 100%);
    box-shadow:
        0 4px 14px rgba(14, 165, 233, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .main-navbar .nav-link {
    color: #94a3b8;
}

[data-theme="dark"] .main-navbar .nav-link:hover {
    color: #e2e8f0;
    background: rgba(56, 189, 248, 0.12);
}

[data-theme="dark"] .main-navbar .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
}

/* Services dropdown */
.nav-item-services {
    position: static;
}

@media (min-width: 992px) {
    .nav-item-services {
        position: relative;
    }
}

.main-navbar .nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.main-navbar .nav-link.dropdown-toggle::after {
    margin-left: 0.15rem;
    vertical-align: middle;
    border-top-color: currentColor;
    transition: transform 0.25s ease;
}

.main-navbar .nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.main-navbar .nav-link-icon {
    font-size: 0.82rem;
    opacity: 0.85;
}

.nav-services-dropdown {
    margin-top: 0.65rem !important;
    padding: 0;
    min-width: 320px;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        0 20px 50px rgba(10, 22, 40, 0.14),
        0 8px 20px rgba(14, 165, 233, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    animation: dropdownFadeIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-theme="dark"] .nav-services-dropdown {
    background: linear-gradient(180deg, #0f2744 0%, #0a1628 100%);
    border-color: rgba(56, 189, 248, 0.22);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(56, 189, 248, 0.08);
}

.nav-services-dropdown-header {
    padding: 1rem 1.15rem 0.85rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.06) 100%);
    border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}

[data-theme="dark"] .nav-services-dropdown-header {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(30, 58, 95, 0.4) 100%);
    border-bottom-color: rgba(56, 189, 248, 0.15);
}

.nav-services-dropdown-kicker {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-500);
    margin-bottom: 0.2rem;
}

.nav-services-dropdown-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.35;
}

[data-theme="dark"] .nav-services-dropdown-title {
    color: #e2e8f0;
}

.nav-services-dropdown-list {
    padding: 0.5rem;
}

.nav-services-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.nav-services-dropdown-item:hover,
.nav-services-dropdown-item.is-active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(56, 189, 248, 0.06) 100%);
    transform: translateX(2px);
}

.nav-services-dropdown-item.is-active {
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.2);
}

.nav-services-dropdown-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #0369a1;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(56, 189, 248, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.25s ease;
}

.nav-services-dropdown-item:hover .nav-services-dropdown-item-icon {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

.nav-services-dropdown-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.nav-services-dropdown-item-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.2;
}

[data-theme="dark"] .nav-services-dropdown-item-label {
    color: #f1f5f9;
}

.nav-services-dropdown-item-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

[data-theme="dark"] .nav-services-dropdown-item-desc {
    color: #94a3b8;
}

.nav-services-dropdown-item-arrow {
    font-size: 0.85rem;
    color: #94a3b8;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
}

.nav-services-dropdown-item:hover .nav-services-dropdown-item-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--sky-500);
}

.nav-services-dropdown-footer {
    padding: 0.65rem 1rem 0.85rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.nav-services-dropdown-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.nav-services-dropdown-all:hover {
    color: var(--sky-500);
    gap: 0.5rem;
}

/* Mobile services submenu */
.mobile-nav-services {
    margin-bottom: 0.25rem;
}

.mobile-services-toggle {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.mobile-services-chevron {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.mobile-services-toggle[aria-expanded="true"] .mobile-services-chevron {
    transform: rotate(180deg);
}

.mobile-services-submenu {
    padding: 0.35rem 0 0.5rem 0.5rem;
}

.mobile-services-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-services-link:hover,
.mobile-services-link.active {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
}

.mobile-services-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: #0369a1;
    background: rgba(14, 165, 233, 0.12);
}

.mobile-services-link-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
}

.mobile-services-link-desc {
    display: block;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.35;
    margin-top: 0.1rem;
}

/* Header CTA buttons */
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    border: none;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1.25;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-nav i {
    font-size: 1.05rem;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav-block {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-radius: 14px;
}

/* Login — refined outline */
.btn-nav-outline {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--navy-800);
    border: 1.5px solid rgba(30, 58, 95, 0.2);
    box-shadow:
        0 1px 2px rgba(10, 22, 40, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .btn-nav-outline {
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.5) 0%, rgba(13, 33, 55, 0.8) 100%);
    color: var(--sky-300);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-nav-outline:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.2);
}

[data-theme="dark"] .btn-nav-outline:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35) 0%, rgba(30, 58, 95, 0.9) 100%);
    border-color: var(--sky-400);
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.25);
}

.btn-nav-outline:hover i {
    transform: translateX(2px);
}

.btn-nav-outline.is-active {
    color: var(--sky-500);
    background: rgba(14, 165, 233, 0.08);
    border-color: var(--sky-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

[data-theme="dark"] .btn-nav-outline.is-active {
    color: var(--sky-300);
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--sky-400);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* Get Started — primary CTA */
.btn-nav-primary {
    color: #fff;
    background: linear-gradient(135deg, #0369a1 0%, var(--sky-500) 45%, var(--sky-400) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 16px rgba(14, 165, 233, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.btn-nav-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 48%);
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.btn-nav-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-nav-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #0284c7 0%, var(--sky-400) 50%, #7dd3fc 100%);
    transform: translateY(-3px);
    box-shadow:
        0 10px 28px rgba(14, 165, 233, 0.5),
        0 2px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn-nav-primary:hover::after {
    left: 120%;
}

.btn-nav-primary:hover i {
    transform: translateX(4px);
}

.btn-nav-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-nav-primary.is-active {
    box-shadow:
        0 0 0 3px rgba(56, 189, 248, 0.35),
        0 8px 24px rgba(14, 165, 233, 0.45);
}

.btn-nav-primary span,
.btn-nav-outline span,
.btn-nav-primary i,
.btn-nav-outline i {
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .btn-nav-primary {
    border-color: rgba(125, 211, 252, 0.25);
    box-shadow:
        0 4px 20px rgba(14, 165, 233, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
    border-color: var(--border-color);
    padding: 0.4rem 0.6rem;
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1);
}

.mobile-nav-offcanvas {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border-left: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: -12px 0 40px rgba(10, 22, 40, 0.12);
}

[data-theme="dark"] .mobile-nav-offcanvas {
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.mobile-nav-offcanvas .offcanvas-header {
    background: linear-gradient(105deg, #010409 0%, #0a1628 40%, #0369a1 100%);
    border-bottom: 1px solid rgba(125, 211, 252, 0.2);
    padding: 1.35rem 1.5rem;
}

.mobile-nav-offcanvas .offcanvas-header .btn-close {
    filter: invert(1) brightness(1.2);
    opacity: 0.85;
}

.mobile-nav-offcanvas .offcanvas-title {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.mobile-nav-list .nav-link {
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    border-radius: 12px;
    border-bottom: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-list .nav-link:hover,
.mobile-nav-list .nav-link.active {
    color: #0369a1;
    background: rgba(14, 165, 233, 0.1);
}

[data-theme="dark"] .mobile-nav-list .nav-link.active {
    color: var(--sky-300);
    background: rgba(56, 189, 248, 0.15);
}

.mobile-nav-actions {
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.mobile-nav-actions .btn-nav-outline.is-active,
.mobile-nav-actions .btn-nav-primary.is-active {
    pointer-events: none;
}

@media (max-width: 1199.98px) {
    .navbar-actions .btn-nav {
        padding: 0.55rem 1.15rem;
        font-size: 0.8125rem;
    }

    .navbar-actions .btn-nav i {
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, #0c4a6e 100%);
    color: #fff;
    overflow: hidden;
    padding: 3rem 0 4rem;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2338bdf8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.min-vh-hero { min-height: calc(100vh - 140px); min-height: calc(100dvh - 140px); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--sky-300);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 520px;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
    transition: all var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
    transition: all var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hero-promos {
    margin-top: 2rem;
    max-width: 560px;
}

.hero-promos-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.hero-promos-label i {
    color: var(--sky-400);
    font-size: 0.9rem;
}

.hero-promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.hero-promo-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem 1rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    overflow: hidden;
}

.hero-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.hero-promo-card--email::before {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0%, transparent 55%);
}

.hero-promo-card--web::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, transparent 55%);
}

.hero-promo-card:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.35);
}

.hero-promo-card:hover::before {
    opacity: 1;
}

.hero-promo-card--email:hover {
    border-color: rgba(56, 189, 248, 0.45);
}

.hero-promo-card--web:hover {
    border-color: rgba(129, 140, 248, 0.45);
}

.hero-promo-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-promo-card--email .hero-promo-badge {
    background: rgba(14, 165, 233, 0.2);
    color: #7dd3fc;
}

.hero-promo-card--web .hero-promo-badge {
    background: rgba(99, 102, 241, 0.22);
    color: #c4b5fd;
}

.hero-promo-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
}

.hero-promo-card--email .hero-promo-icon {
    background: rgba(14, 165, 233, 0.18);
    color: #38bdf8;
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.25);
}

.hero-promo-card--web .hero-promo-icon {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    box-shadow: inset 0 0 0 1px rgba(129, 140, 248, 0.28);
}

.hero-promo-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    padding-right: 4.5rem;
}

.hero-promo-body strong {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-promo-body span {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #94a3b8;
}

.hero-promo-body em {
    font-style: normal;
    color: #cbd5e1;
    font-weight: 500;
}

.hero-promo-action {
    position: relative;
    z-index: 1;
    display: none;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    color: #e2e8f0;
    transition: gap var(--transition);
}

.hero-promo-card:hover .hero-promo-action {
    gap: 0.55rem;
}

.hero-promo-card--email .hero-promo-action {
    color: #7dd3fc;
}

.hero-promo-card--web .hero-promo-action {
    color: #c4b5fd;
}

.hero-trust {
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero-trust i { color: var(--sky-400); margin-right: 0.35rem; }

@media (min-width: 576px) {
    .hero-promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-promo-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding: 1.1rem 1rem 1rem;
        min-height: 100%;
    }

    .hero-promo-body {
        padding-right: 0;
    }

    .hero-promo-badge {
        position: static;
        width: fit-content;
        margin-bottom: 0.65rem;
        order: -2;
    }

    .hero-promo-icon {
        order: -1;
        margin-bottom: 0.15rem;
    }

    .hero-promo-action {
        display: inline-flex;
        margin-top: 0.65rem;
    }
}

@media (min-width: 992px) {
    .hero-promos {
        max-width: 100%;
    }

    .hero-promo-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .hero-promo-card {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 1rem 1.15rem;
    }

    .hero-promo-badge {
        position: absolute;
        top: 0.65rem;
        right: 0.75rem;
        margin-bottom: 0;
        order: unset;
    }

    .hero-promo-icon {
        order: unset;
        margin-bottom: 0;
    }

    .hero-promo-body {
        padding-right: 4.5rem;
    }

    .hero-promo-action {
        margin-top: 0;
    }
}

/* Hero Illustration */
.hosting-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sky-500), var(--navy-700));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
    animation: floatCenter 4s ease-in-out infinite;
    z-index: 2;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    animation: floatCard 5s ease-in-out infinite;
}

.visual-card i { font-size: 1.25rem; color: var(--sky-300); }

.visual-cloud { top: 5%; left: 10%; animation-delay: 0s; }
.visual-domain { top: 10%; right: 5%; animation-delay: 0.5s; }
.visual-ssl { bottom: 30%; left: 0; animation-delay: 1s; }
.visual-speed { bottom: 15%; right: 10%; animation-delay: 1.5s; }
.visual-security { top: 45%; right: -5%; animation-delay: 2s; }

@keyframes floatCenter {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Sections Common */
.section-padding { padding: 4rem 0; }

@media (min-width: 768px) {
    .section-padding { padding: 5.5rem 0; }
}

.bg-alt { background: var(--bg-alt); }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Domain Search */
.domain-search-box {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.domain-form .input-group-text {
    background: var(--bg-alt);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.domain-form .form-control {
    border-color: var(--border-color);
    background: var(--bg-body);
    color: var(--text-primary);
}

.domain-form .form-control:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.btn-domain-search {
    background: linear-gradient(135deg, var(--navy-800), var(--sky-500));
    color: #fff;
    font-weight: 600;
    border: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn-domain-search:hover { color: #fff; opacity: 0.95; }

.domain-price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    transition: all var(--transition);
}

.domain-price-card:hover {
    border-color: var(--sky-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ext-name {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--sky-500);
}

.ext-price {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.domain-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.domain-result-item.available { border-left: 4px solid #22c55e; }
.domain-result-item.taken { border-left: 4px solid #ef4444; opacity: 0.85; }

/* Feature Cards */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-500);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(30, 58, 95, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky-500);
    margin-bottom: 1.25rem;
    transition: transform var(--transition);
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

/* Plan Cards */
.plan-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all var(--transition);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.plan-recommended {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 1px var(--sky-500), var(--shadow-lg);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-storage {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.4rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.plan-features i {
    color: #22c55e;
    margin-right: 0.5rem;
}

.plan-price {
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.plan-price .currency {
    font-size: 0.875rem;
    color: var(--text-muted);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.plan-price .period {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.btn-plan {
    background: var(--navy-800);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.75rem;
    border: none;
    transition: all var(--transition);
}

.plan-recommended .btn-plan {
    background: linear-gradient(135deg, var(--sky-500), var(--navy-700));
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
    color: #fff;
}

/* Service Cards */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--sky-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy-800), var(--sky-500));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.btn-service-link {
    color: var(--sky-500);
    font-weight: 600;
    padding: 0;
    border: none;
    background: none;
}

.btn-service-link:hover { color: var(--accent-light); }

.market-tag {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Statistics */
.stats-section {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: #fff;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--sky-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-700), var(--sky-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(14, 165, 233, 0.08);
    color: var(--sky-500);
}

.faq-accordion .accordion-button::after {
    filter: none;
}

[data-theme="dark"] .faq-accordion .accordion-button::after {
    filter: invert(1);
}

.faq-accordion .accordion-body {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.7;
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, var(--navy-900) 0%, #0c4a6e 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-text { color: #94a3b8; margin: 0; }

.btn-cta-primary {
    background: var(--sky-500);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    width: 100%;
}

.btn-cta-primary:hover {
    background: var(--sky-400);
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Footer */
.site-footer {
    background: var(--navy-900);
    color: #94a3b8;
    padding-top: 4rem;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
    margin-bottom: 0.5rem;
    transition: opacity var(--transition), transform var(--transition);
}

.footer-logo:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.footer-tagline {
    color: var(--sky-300);
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-desc { font-size: 0.9rem; line-height: 1.7; }

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: block;
    padding: 0.35rem 0;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--sky-400); }

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--sky-400);
}

.footer-contact strong {
    color: #94a3b8;
    font-weight: 600;
    margin-right: 0.25rem;
}

.footer-contact i { color: var(--sky-500); margin-right: 0.5rem; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.copyright { font-size: 0.875rem; color: #64748b; }

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--sky-500);
    color: #fff;
    transform: translateY(-3px);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Auth Pages (login / register with site header & footer) */
body.page-auth {
    background: var(--bg-alt);
}

.auth-page {
    position: relative;
    padding: 3rem 0 4rem;
    min-height: auto;
    overflow: hidden;
}

.auth-page-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
        var(--bg-alt);
    pointer-events: none;
}

[data-theme="dark"] .auth-page-bg {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 60%),
        var(--bg-alt);
}

.auth-page > .container {
    position: relative;
    z-index: 1;
}

.auth-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    margin: 0 auto;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(145deg, var(--navy-800), var(--sky-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.auth-card h1 {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.auth-card .auth-subtitle {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

.auth-card .form-label {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.auth-input-group .input-group-text {
    background: var(--bg-alt);
    border-color: var(--border-color);
    color: var(--sky-500);
    border-radius: 10px 0 0 10px;
}

.auth-card .form-control {
    border-radius: 0 10px 10px 0;
    padding: 0.7rem 1rem;
    border-color: var(--border-color);
    background: var(--bg-body);
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.auth-card .form-control:focus,
.auth-input-group:focus-within .input-group-text {
    border-color: var(--sky-500);
    box-shadow: none;
}

.auth-card .form-control:focus {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.auth-card .btn-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--sky-500) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
    transition: all var(--transition);
}

.auth-card .btn-auth:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 165, 233, 0.4);
}

.auth-card-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-card-footer a {
    font-weight: 600;
    color: var(--sky-500);
}

.alert-auth {
    border-radius: 12px;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border: none;
}

.alert-auth.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}

[data-theme="dark"] .alert-auth.alert-danger {
    color: #fca5a5;
}

.alert-auth.alert-info {
    background: rgba(14, 165, 233, 0.1);
    color: var(--navy-700);
}

[data-theme="dark"] .alert-auth.alert-info {
    color: var(--sky-300);
}

@media (min-width: 768px) {
    .auth-page { padding: 4rem 0 5rem; }
    .auth-card { padding: 2.5rem 2.25rem; }
}

/* Register / login — 60/40 split layout */
body.page-register,
body.page-login {
    background: var(--bg-body);
}

.auth-page--register,
.auth-page--login {
    padding: 0;
    min-height: calc(100vh - var(--site-header-height));
}

.register-split {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--site-header-height));
}

.register-showcase {
    position: relative;
    flex: 0 0 auto;
    min-height: 320px;
    background: #020617;
    overflow: hidden;
}

.register-showcase-inner {
    position: relative;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
}

.register-slider {
    position: relative;
    flex: 1;
    min-height: 280px;
}

.register-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.register-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.register-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.register-slide.is-active .register-slide-bg {
    transform: scale(1);
}

.register-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0.75) 100%),
        linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, transparent 50%);
}

.register-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.75rem 1.5rem;
    color: #fff;
}

.register-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: color-mix(in srgb, var(--slide-accent, #0ea5e9) 35%, transparent);
    border: 1px solid color-mix(in srgb, var(--slide-accent, #0ea5e9) 55%, transparent);
}

.register-slide-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    max-width: 28rem;
}

.register-slide-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #cbd5e1;
    margin-bottom: 1rem;
    max-width: 26rem;
}

.register-slide-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.register-slide-features li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
}

.register-slide-features i {
    color: var(--slide-accent, #38bdf8);
    font-size: 0.85rem;
}

.register-slider-controls {
    position: absolute;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.register-slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.register-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.register-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.register-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.25s ease;
}

.register-slider-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: var(--sky-400);
}

.register-showcase-stats {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 1.25rem;
    padding: 1rem 1.75rem 1.25rem;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.7));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.register-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.register-stat strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.register-stat span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.register-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
        var(--bg-alt);
}

.register-form-panel-inner {
    width: 100%;
    max-width: 440px;
}

.auth-card--register {
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow:
        0 20px 50px rgba(10, 22, 40, 0.1),
        0 0 0 1px rgba(14, 165, 233, 0.08);
}

.auth-card-header--left {
    text-align: left;
}

.auth-card-header--left .auth-card-icon {
    margin: 0 0 1rem;
}

.auth-input-wrap {
    position: relative;
}

.auth-input-wrap > i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sky-500);
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
}

.auth-card--register .auth-input-wrap .form-control {
    padding-left: 2.6rem;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
}

.auth-card--register .auth-input-wrap .form-control:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

@media (min-width: 992px) {
    .register-split {
        flex-direction: row;
        align-items: stretch;
    }

    .register-showcase {
        flex: 0 0 60%;
        min-height: calc(100vh - var(--site-header-height));
    }

    .register-slider {
        min-height: 0;
    }

    .register-slide-content {
        padding: 3rem 3rem 2rem;
        justify-content: center;
    }

    .register-slider-controls {
        bottom: auto;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
        flex-direction: column;
    }

    .register-slider-dots {
        flex-direction: column;
    }

    .register-slider-dot.is-active {
        width: 8px;
        height: 24px;
        border-radius: 4px;
    }

    .register-showcase-stats {
        padding: 1.25rem 3rem 1.5rem;
        gap: 2.5rem;
    }

    .register-form-panel {
        flex: 0 0 40%;
        padding: 2.5rem 2rem;
        min-height: calc(100vh - var(--site-header-height));
    }

    .register-form-panel-inner {
        max-width: 400px;
    }
}

@media (min-width: 1200px) {
    .register-slide-content {
        padding: 3.5rem 4rem 2.5rem;
    }

    .register-form-panel-inner {
        max-width: 420px;
    }

    .auth-card--register {
        padding: 2.25rem 2rem;
    }
}

/* Order form — split layout (reuses register-split) */
body.page-order {
    background: var(--bg-body);
}

.auth-page--order {
    padding: 0;
    min-height: calc(100vh - var(--site-header-height));
}

.order-form-card--split {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow:
        0 20px 50px rgba(10, 22, 40, 0.1),
        0 0 0 1px rgba(14, 165, 233, 0.08);
    width: 100%;
}

.order-form-card-header {
    margin-bottom: 1.25rem;
}

.order-form-card-header .auth-card-icon {
    margin: 0 0 1rem;
}

.order-form-card-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.order-form-card-header .auth-subtitle {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.order-plan-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--navy-800);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(56, 189, 248, 0.08) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

[data-theme="dark"] .order-plan-badge {
    color: var(--sky-300);
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(56, 189, 248, 0.25);
}

.order-plan-badge i {
    font-size: 1.15rem;
    color: var(--sky-500);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.order-form-card--split .order-form .form-label {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.order-form-card--split .order-form .form-control,
.order-form-card--split .order-form .form-select {
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--border-color);
    font-size: 0.9rem;
}

.order-form-card--split .order-form textarea.form-control {
    min-height: 88px;
}

.order-form-card--split .btn-order-submit {
    width: 100%;
    margin-top: 0.25rem;
}

.order-form-back {
    text-align: center;
    margin: 1.25rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.order-form-back a {
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
}

.order-form-back a:hover {
    color: var(--sky-500);
}

@media (min-width: 992px) {
    .order-form-panel .register-form-panel-inner {
        max-width: 400px;
    }

    .order-form-card--split {
        padding: 2rem 1.85rem;
    }
}

@media (min-width: 1200px) {
    .order-form-panel .register-form-panel-inner {
        max-width: 420px;
    }
}

/* Client Dashboard */
.client-layout {
    min-height: 100vh;
    display: flex;
    background: var(--bg-alt);
}

.client-sidebar {
    width: 260px;
    background: var(--navy-900);
    color: #fff;
    flex-shrink: 0;
    padding: 1.5rem 0;
}

.client-sidebar .brand {
    padding: 0 1.5rem 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.client-sidebar .brand i { color: var(--sky-400); }

.client-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #94a3b8;
    transition: all var(--transition);
}

.client-nav a:hover,
.client-nav a.active {
    background: rgba(56, 189, 248, 0.1);
    color: var(--sky-400);
}

.client-main {
    flex: 1;
    padding: 2rem;
    overflow-x: auto;
}

.client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
}

.dashboard-card h3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.dashboard-card .value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

@media (max-width: 991.98px) {
    .client-sidebar { display: none; }
    .client-mobile-nav {
        background: var(--navy-900);
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .domain-form .input-group { flex-direction: column; }
    .domain-form .input-group > * { border-radius: var(--radius) !important; width: 100%; }
    .domain-form .btn-domain-search { margin-top: 0.5rem; }
    .plan-recommended { transform: none; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1080;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-inner {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem 0.75rem 0.85rem;
    background: linear-gradient(135deg, #128c7e 0%, #25d366 55%, #34eb77 100%);
    border-radius: 50px;
    box-shadow:
        0 6px 24px rgba(37, 211, 102, 0.4),
        0 2px 0 rgba(255, 255, 255, 0.25) inset,
        0 0 0 1px rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.whatsapp-float-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.whatsapp-float-text {
    white-space: nowrap;
    padding-right: 0.15rem;
}

.whatsapp-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: #25d366;
    z-index: 1;
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    70% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
    }

    .whatsapp-float-inner {
        padding: 0.7rem 1rem 0.7rem 0.7rem;
        font-size: 0.8125rem;
        gap: 0.45rem;
    }

    .whatsapp-float-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .whatsapp-float-text {
        white-space: normal;
        max-width: 110px;
        line-height: 1.2;
    }
}

/* Order & Contact Forms */
.section-padding-sm { padding: 2.5rem 0; }

/* Inner-page compact hero slider (shared on all pages except home) */
.page-hero-slider {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.page-hero-slider-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-hero-slider-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.page-hero-slider-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 10s ease;
}

.page-hero-slider-slide.is-active .page-hero-slider-image {
    transform: scale(1);
}

.page-hero-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.55) 100%),
        linear-gradient(to top, rgba(2, 6, 23, 0.5) 0%, transparent 45%);
    pointer-events: none;
}

.page-hero-slider-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 220px;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.page-hero-slider-content {
    max-width: 640px;
    color: #fff;
}

.page-hero-slider-badge {
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(186, 230, 253, 0.35);
    color: #e0f2fe;
    font-size: 0.78rem;
}

.page-hero-slider-title {
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.page-hero-slider-desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #cbd5e1;
    max-width: 520px;
}

.page-hero-slider-tags {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    flex-shrink: 0;
}

.page-hero-slider-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.page-hero-slider-tag.is-active {
    color: var(--slide-accent, #38bdf8);
}

.page-hero-slider-dots {
    position: absolute;
    z-index: 3;
    right: 1.25rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.page-hero-slider-dot {
    width: 7px;
    height: 7px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.25s ease;
}

.page-hero-slider-dot.is-active {
    width: 22px;
    border-radius: 4px;
    background: #38bdf8;
}

@media (min-width: 768px) {
    .page-hero-slider {
        min-height: 240px;
    }

    .page-hero-slider-container {
        min-height: 240px;
    }

    .page-hero-slider-dots {
        right: 2rem;
        bottom: 1.25rem;
    }
}

@media (min-width: 992px) {
    .page-hero-slider {
        min-height: 260px;
    }

    .page-hero-slider-container {
        min-height: 260px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .page-hero-slider-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .page-hero-slider {
        min-height: 200px;
    }

    .page-hero-slider-container {
        min-height: 200px;
        padding-top: 1.35rem;
        padding-bottom: 2rem;
    }
}

.order-form-card,
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.order-form .form-label { font-weight: 600; font-size: 0.875rem; }

.order-form .form-control,
.order-form .form-select {
    border-radius: 10px;
    padding: 0.7rem 1rem;
    border-color: var(--border-color);
    background: var(--bg-body);
    color: var(--text-primary);
}

.order-form .form-control:focus,
.order-form .form-select:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.btn-order-submit {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--sky-500) 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
    transition: all var(--transition);
}

.btn-order-submit:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 165, 233, 0.4);
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-500);
    flex-shrink: 0;
}

.contact-info-list strong { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact-info-list a { color: var(--text-primary); font-weight: 500; }
.contact-info-list a:hover { color: var(--sky-500); }

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background: var(--bg-card);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
}

.contact-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sky-600);
    background: var(--bg-alt);
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    transition: color 0.2s ease, background 0.2s ease;
}

.contact-map-link:hover {
    color: var(--sky-500);
    background: rgba(14, 165, 233, 0.08);
}

/* Service plan pages (Business Email & Website Design) */
.service-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-benefits-list i {
    color: var(--sky-500);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.service-highlight-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.service-highlight-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.service-highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.service-highlight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

.service-highlight-card--email {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 55%, #38bdf8 100%);
}

.service-highlight-card--design {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
}

.service-plans-section {
    position: relative;
}

.service-theme-email {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
        var(--bg-body);
}

.service-theme-design {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
        var(--bg-body);
}

.service-plan-card {
    position: relative;
    height: 100%;
    padding: 2rem 1.75rem;
    border-radius: 22px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-plan-card--featured {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.25), var(--shadow-lg);
}

.service-theme-design .service-plan-card--featured {
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.25), var(--shadow-lg);
}

.service-plan-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
    white-space: nowrap;
}

.service-theme-design .service-plan-card-badge {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.service-plan-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky-500);
    background: rgba(14, 165, 233, 0.12);
    margin-bottom: 1.15rem;
}

.service-theme-design .service-plan-card-icon {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.12);
}

.service-plan-card-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.service-plan-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.service-plan-card-features {
    flex: 1;
    margin-bottom: 1.25rem;
}

.service-plan-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-plan-card-features i {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.service-plan-card-price {
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.service-plan-card-currency {
    font-size: 0.8rem;
    color: var(--text-muted);
    vertical-align: top;
}

.service-plan-card-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.service-plan-card-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-plan-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-800), var(--sky-500));
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-plan-card--featured .service-plan-card-btn,
.service-theme-design .service-plan-card--featured .service-plan-card-btn {
    background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
}

.service-theme-design .service-plan-card-btn {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.service-plan-card-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35);
}

.service-theme-design .service-plan-card-btn:hover {
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.35);
}

.service-plans-empty {
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.service-plans-empty i {
    font-size: 2.5rem;
    color: var(--sky-500);
    display: block;
    margin-bottom: 0.75rem;
}

/* Software systems promo — website design plans section */
.software-systems-promo {
    position: relative;
    margin-top: 3rem;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #22d3ee 100%);
    overflow: hidden;
}

.software-systems-promo-glow {
    position: absolute;
    inset: -40% auto auto 50%;
    width: 320px;
    height: 320px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.software-systems-promo-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem 2rem;
    padding: 2rem 2.25rem;
    border-radius: 22px;
    background:
        radial-gradient(ellipse 80% 120% at 0% 0%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 100% 100%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e1b4b 48%, #0c4a6e 100%);
    color: #fff;
}

.software-systems-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e0e7ff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.software-systems-promo-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.software-systems-promo-text {
    max-width: 560px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    font-size: 0.95rem;
}

.software-systems-promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1.25rem;
    margin: 0;
}

.software-systems-promo-features li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.software-systems-promo-features i {
    color: #4ade80;
    font-size: 0.95rem;
}

.software-systems-promo-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 220px;
}

.software-systems-promo-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.55), rgba(14, 165, 233, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.software-systems-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border: none;
    border-radius: 14px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.software-systems-promo-btn:hover {
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(14, 165, 233, 0.35);
}

.software-systems-promo-hint {
    margin-top: 0.65rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 767.98px) {
    .software-systems-promo-inner {
        padding: 1.65rem 1.35rem;
    }

    .software-systems-promo-action {
        width: 100%;
    }

    .software-systems-promo-btn {
        width: 100%;
    }
}

.nav-services-dropdown {
    min-width: 300px;
}

.compact-nav-dropdown-wrap .nav-services-dropdown {
    min-width: 300px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Hosting plans page */
.service-highlight-card--hosting {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 45%, #0ea5e9 100%);
}

.service-theme-hosting {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(14, 165, 233, 0.1) 0%, transparent 60%),
        var(--bg-body);
}

.hosting-plan-card {
    position: relative;
    height: 100%;
    padding: 2rem 1.65rem;
    border-radius: 22px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hosting-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hosting-plan-card--featured {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.25), var(--shadow-lg);
}

.hosting-plan-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
    white-space: nowrap;
}

.hosting-plan-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--sky-500);
    background: rgba(14, 165, 233, 0.12);
    margin-bottom: 1rem;
}

.hosting-plan-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.hosting-plan-card-subtitle {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.hosting-plan-card-storage {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sky-600, #0284c7);
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    background: rgba(14, 165, 233, 0.08);
    width: fit-content;
}

.hosting-plan-card-storage i {
    font-size: 0.95rem;
}

.hosting-plan-card-features {
    flex: 1;
    margin-bottom: 1.15rem;
}

.hosting-plan-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.32rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.hosting-plan-card-features i {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 0.12rem;
}

.hosting-plan-card-price {
    padding-top: 1.15rem;
    margin-bottom: 1.15rem;
    border-top: 1px solid var(--border-color);
}

.hosting-plan-card-currency {
    font-size: 0.78rem;
    color: var(--text-muted);
    vertical-align: top;
}

.hosting-plan-card-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hosting-plan-card-period {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hosting-plan-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.78rem 1.15rem;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-800), var(--sky-500));
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hosting-plan-card--featured .hosting-plan-card-btn {
    background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
}

.hosting-plan-card-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35);
}

.hosting-plans-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.hosting-plans-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hosting-plans-trust-item i {
    color: var(--sky-500);
    font-size: 1.05rem;
}

/* ── Software Systems Catalog ── */
.software-systems-catalog {
    position: relative;
}

.software-systems-empty {
    max-width: 520px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
}

.software-systems-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--sky-500);
    background: rgba(14, 165, 233, 0.12);
}

.software-system-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.software-system-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.35);
}

.software-system-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
}

.software-system-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.software-system-card:hover .software-system-card-media img {
    transform: scale(1.06);
}

.software-system-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.software-system-card:hover .software-system-card-overlay {
    opacity: 1;
}

.software-system-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.35rem 1.5rem;
}

.software-system-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    line-height: 1.35;
}

.software-system-card-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.software-system-card-title a:hover {
    color: var(--sky-600);
}

.software-system-card-excerpt {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.software-system-card-pricing {
    padding: 0.85rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.software-system-card-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.software-system-card-currency {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
}

.software-system-card-amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.software-system-card-price-sub {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.software-system-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.72rem 1rem;
    font-weight: 700;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--sky-600), var(--sky-400));
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.software-system-card-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35);
}

/* Software system detail page */
.software-system-breadcrumb {
    margin-bottom: 1.75rem;
}

.software-system-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sky-600);
    text-decoration: none;
}

.software-system-breadcrumb a:hover {
    color: var(--sky-700);
}

.software-system-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.software-system-detail-media img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.software-system-detail-videos,
.software-system-detail-body {
    padding: 1.75rem;
}

.software-system-detail-videos {
    border-top: 1px solid var(--border-color);
}

.software-system-video-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

.software-system-video-wrap iframe,
.software-system-video-wrap video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.software-system-detail-description {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.98rem;
}

.software-system-pricing-card {
    position: sticky;
    top: 100px;
    padding: 1.75rem;
    background: var(--bg-card);
    border: 2px solid rgba(14, 165, 233, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.software-system-pricing-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sky-700);
    background: rgba(14, 165, 233, 0.12);
    border-radius: 999px;
}

.software-system-pricing-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.software-system-pricing-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.software-system-pricing-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.software-system-pricing-row--usd {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.software-system-pricing-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 2.5rem;
}

.software-system-pricing-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.software-system-pricing-row--usd .software-system-pricing-amount {
    font-size: 1.25rem;
}

.software-system-pricing-includes {
    margin-bottom: 1.35rem;
}

.software-system-pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.45rem;
}

.software-system-pricing-includes i {
    color: #22c55e;
}

.software-system-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .software-system-pricing-card {
        position: static;
    }
}
