/* ═══════════════════════════════════════════════════════════════
   ACBIZ GLOBAL — Public Stylesheet v4.0 (Mobile-First)
   ═══════════════════════════════════════════════════════════════ */


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

:root {
    --blue:      #1d4ed8;
    --blue-dark: #1e3a8a;
    --blue-l:    #3b82f6;
    --accent:    #06b6d4;
    --purple:    #7c3aed;
    --dark:      #0a0e1a;
    --dark-2:    #0d1220;
    --border:    rgba(255,255,255,0.08);
    --white:     #ffffff;
    --radius:    12px;
    --radius-lg: 20px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar { background: linear-gradient(90deg, var(--blue-dark), #1e1b4b); padding: 8px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.topbar span { color: rgba(255,255,255,0.7); font-size: 12px; }
.topbar a { color: #93c5fd; font-weight: 500; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.topbar-btn { background: rgba(255,255,255,0.12); color: #fff !important; padding: 3px 12px; border-radius: 20px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); font-size: 12px; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar { background: rgba(10,14,26,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); position: sticky; top: 0; z-index: 1000; transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; height: 60px; display: flex; align-items: center; gap: 8px; }

.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--blue), var(--accent)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 12px; color: #fff; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 16.5px; color: var(--white); letter-spacing: -0.2px; }
.brand-sub  { font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.38); letter-spacing: 0.5px; text-transform: uppercase; }

.nav-menu { display: flex; list-style: none; gap: 2px; margin: 0; flex: 1; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 7px 10px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); border-radius: 8px; transition: color .2s, background .2s; cursor: pointer; white-space: nowrap; }
.nav-link i { font-size: 9px; transition: transform .2s; }
.nav-item:hover .nav-link { color: #fff; background: rgba(255,255,255,0.06); }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: #141a2e; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 8px; min-width: 200px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; pointer-events: none; z-index: 100; }
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.nav-dropdown a:focus-visible { outline: 2px solid var(--blue-l); outline-offset: -2px; background: rgba(255,255,255,0.06); color: #fff; }
.nav-link:focus-visible { outline: 2px solid var(--blue-l); outline-offset: 2px; border-radius: 4px; }
.nav-dropdown a { display: flex; align-items: center; gap: 9px; padding: 9px 12px; font-size: 13px; color: rgba(255,255,255,0.6); border-radius: 8px; transition: background .15s, color .15s; }
.nav-dropdown a i { width: 15px; color: rgba(255,255,255,0.28); font-size: 11px; }
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-dropdown a:hover i { color: var(--blue-l); }

.mega-drop { left: -20px; min-width: 640px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 14px; }
.mega-col { padding: 4px; }
.mega-head { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.28); padding: 6px 12px 10px; margin-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,0.06); }

.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; flex-shrink: 0; }
.nav-mobile-cart {
    display: none; position: relative; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.85); text-decoration: none; margin-left: 8px; font-size: 14px;
}
.nav-cart-count {
    position: absolute; top: -4px; right: -4px; background: #dc2626; color: #fff;
    font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 99px; line-height: 1.4;
}
.nav-btn-outline { padding: 7px 14px; border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.75); transition: all .2s; white-space: nowrap; }
.nav-btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.nav-btn-primary { padding: 7px 16px; background: linear-gradient(135deg, var(--blue), #2563eb); border-radius: 8px; font-size: 12.5px; font-weight: 700; color: #fff; transition: opacity .2s; box-shadow: 0 4px 14px rgba(29,78,216,0.35); white-space: nowrap; }
.nav-btn-primary:hover { opacity: 0.9; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all .3s; }

/* Mobile nav drawer */
.nav-drawer {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: #0d1220;
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 1100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    padding: 20px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1099;
}
.nav-drawer-overlay.open { display: block; }
.nd-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nd-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 20px; cursor: pointer; padding: 4px; }
.nd-links { display: flex; flex-direction: column; gap: 2px; }
.nd-link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); transition: background .15s, color .15s; }
.nd-link i { width: 20px; font-size: 15px; color: rgba(255,255,255,0.3); text-align: center; }
.nd-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nd-section { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.25); padding: 16px 14px 6px; }
.nd-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }
.nd-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.nd-btn-primary { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: var(--radius); background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; font-weight: 700; font-size: 15px; }
.nd-btn-outline { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); font-weight: 600; font-size: 15px; }

/* ── Section Commons ─────────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 60px 16px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue-l); margin-bottom: 14px; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); padding: 4px 12px; border-radius: 20px; }
.section-title { font-family: var(--font-head); font-size: clamp(20px, 2.8vw, 34px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.5px; }
.section-sub { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 40px; max-width: 560px; line-height: 1.7; }

/* ── Flash ───────────────────────────────────────────────────── */
.flash-msg { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-radius: 10px; font-size: 14px; line-height: 1.5; margin: 12px 16px; }
.flash-msg.flash-success { background: rgba(34,197,94,0.1);  color: #bbf7d0; border: 1px solid rgba(34,197,94,0.25); }
.flash-msg.flash-error   { background: rgba(239,68,68,0.1);  color: #fecaca; border: 1px solid rgba(239,68,68,0.25); }
.flash-msg.flash-warning { background: rgba(245,158,11,0.1); color: #fde68a; border: 1px solid rgba(245,158,11,0.25); }
.flash-msg.flash-info    { background: rgba(59,130,246,0.1); color: #bfdbfe; border: 1px solid rgba(59,130,246,0.25); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; padding: 80px 0 40px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29,78,216,0.2), transparent 70%), linear-gradient(180deg, #0a0e1a, #060912); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 20%, transparent 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero-orb-1 { width: min(500px, 80vw); height: min(500px, 80vw); background: rgba(29,78,216,0.18); top: -150px; left: -100px; }
.hero-orb-2 { width: min(350px, 60vw); height: min(350px, 60vw); background: rgba(6,182,212,0.1); top: 50px; right: -80px; }
.hero-orb-3 { width: min(250px, 50vw); height: min(250px, 50vw); background: rgba(124,58,237,0.1); bottom: -50px; left: 45%; }

.hfi { position: absolute; width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 16px; animation: float 6s ease-in-out infinite; }
.hfi-1 { top: 20%; left: 5%;  animation-delay: 0s;   color: rgba(37,99,235,0.5); }
.hfi-2 { top: 35%; right: 6%; animation-delay: 1s;   color: rgba(5,150,105,0.5); }
.hfi-3 { top: 65%; left: 3%;  animation-delay: 2s;   color: rgba(220,38,38,0.4); }
.hfi-4 { top: 18%; right: 14%;animation-delay: 0.5s; color: rgba(124,58,237,0.5); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 860px; margin: 0 auto; padding: 0 16px; text-align: center; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 6px 16px; font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
.hero-badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.06); } }

.hero-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 50px); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; color: var(--white); margin-bottom: 20px; }
.hero-gradient { background: linear-gradient(135deg, #60a5fa, #06b6d4, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(14px, 1.4vw, 17px); color: rgba(255,255,255,0.5); margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Search box */
.hero-search-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 28px; max-width: 680px; margin-left: auto; margin-right: auto; }
.search-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.stab { padding: 6px 14px; font-size: 13px; font-weight: 600; border: none; border-radius: 8px; cursor: pointer; background: transparent; color: rgba(255,255,255,0.45); transition: all .2s; font-family: var(--font-body); display: flex; align-items: center; gap: 5px; }
.stab i { font-size: 10px; }
.stab.active { background: rgba(29,78,216,0.3); color: #93c5fd; }

.search-input-wrap { display: flex; align-items: center; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.search-input-wrap:focus-within { border-color: rgba(59,130,246,0.5); }
.search-icon { padding: 0 12px; color: rgba(255,255,255,0.3); font-size: 14px; flex-shrink: 0; }
.search-input { flex: 1; background: transparent; border: none; outline: none; padding: 12px 0; font-size: 14px; color: var(--white); font-family: var(--font-body); min-width: 0; }
.search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-btn { display: flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; border: none; padding: 12px 16px; font-size: 13.5px; font-weight: 700; cursor: pointer; font-family: var(--font-body); white-space: nowrap; flex-shrink: 0; }
.search-btn span { display: none; }

.search-extensions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.35); }
.se-from { flex-shrink: 0; }
.search-extensions a { color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); padding: 3px 8px; border-radius: 6px; transition: all .15s; font-size: 12px; font-weight: 600; }
.search-extensions a em { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.3); font-size: 11px; margin-left: 2px; }
.search-extensions a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.search-ext-all { color: #60a5fa !important; background: none !important; border-color: transparent !important; }

/* CTAs */
.hero-cta-group { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; padding: 13px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 700; box-shadow: 0 8px 28px rgba(29,78,216,0.4); transition: transform .2s; }
.hero-btn-primary:hover { transform: translateY(-2px); }
.hero-btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,0.15); color: #c4b5fd; padding: 13px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; border: 1px solid rgba(124,58,237,0.3); transition: background .2s; }
.hero-btn-secondary:hover { background: rgba(124,58,237,0.25); }
.hero-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); padding: 13px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.12); transition: background .2s; }
.hero-btn-ghost:hover { background: rgba(255,255,255,0.09); color: #fff; }

/* Stats */
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.h-stat { text-align: center; }
.h-stat strong { display: block; font-family: var(--font-head); font-size: clamp(16px, 2.5vw, 22px); font-weight: 800; color: var(--white); }
.h-stat span { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; }
.h-stat-div { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }

/* ── Trust bar ───────────────────────────────────────────────── */
.trust-section { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 16px 0; overflow: hidden; }
.trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 11px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.tl-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.32); padding: 5px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; white-space: nowrap; }
.tl-div { width: 1px; height: 16px; background: rgba(255,255,255,0.07); }

/* ── Divisions ───────────────────────────────────────────────── */
.divisions { background: var(--dark-2, #0d1220); }
.divisions .section-inner { padding-bottom: 60px; }
.divisions-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.div-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 24px 20px; transition: transform .25s, border-color .25s; position: relative; overflow: hidden; }
.div-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); opacity: 0; transition: opacity .25s; }
.div-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); }
.div-card:hover::before { opacity: 1; }
.div-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.div-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.div-card > p { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 16px; }
.div-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 7px; }
.div-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); }
.div-features i { color: #22c55e; font-size: 10px; flex-shrink: 0; }
.div-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue-l); transition: gap .2s; }
.div-link:hover { gap: 10px; }

/* ── SaaS Showcase (live from DB) ────────────────────────────── */
.saas-showcase { background: var(--dark); }
.saas-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.sas-app-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s, border-color .2s; position: relative; }
.sas-app-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); }
.sas-badge { position: absolute; top: 10px; right: 10px; background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.sas-app-top { display: flex; align-items: center; gap: 10px; }
.sas-app-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.sas-app-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; }
.sas-app-cat  { font-size: 10px; color: rgba(255,255,255,0.32); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.sas-app-desc { font-size: 12.5px; color: rgba(255,255,255,0.38); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sas-app-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.sas-rating { display: flex; align-items: center; gap: 2px; font-size: 10px; color: #f59e0b; }
.sas-app-from { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); }
.saas-showcase-cta { text-align: center; }
.saas-showcase-cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--blue-l); padding: 11px 22px; border: 1px solid rgba(59,130,246,0.25); border-radius: 30px; transition: background .2s; }
.saas-showcase-cta a:hover { background: rgba(59,130,246,0.08); }

/* ── Hosting ─────────────────────────────────────────────────── */
.hosting-section { background: var(--dark-2, #0d1220); }
.hosting-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.hosting-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px; text-align: center; transition: transform .25s, border-color .25s; position: relative; }
.hosting-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }
.hc-featured { background: linear-gradient(135deg, rgba(29,78,216,0.15), rgba(6,182,212,0.08)); border-color: rgba(59,130,246,0.4); }
.hc-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.hc-icon { width: 48px; height: 48px; background: rgba(59,130,246,0.12); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--blue-l); margin: 0 auto 12px; }
.hosting-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.hc-ideal { font-size: 12px; color: rgba(255,255,255,0.38); margin-bottom: 12px; }
.hc-price { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.hc-price strong { font-family: var(--font-head); font-size: 22px; color: #fff; }
.hc-price span { font-size: 12px; color: rgba(255,255,255,0.35); }
.hc-features { display: flex; flex-direction: column; gap: 7px; text-align: left; margin-bottom: 16px; }
.hc-features span { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,0.55); }
.hc-features i { color: #22c55e; font-size: 10px; }
.hc-btn { display: block; padding: 10px; border-radius: var(--radius); font-size: 13px; font-weight: 700; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); transition: background .2s; }
.hc-btn:hover { background: rgba(255,255,255,0.1); }
.hc-btn-featured { background: linear-gradient(135deg, var(--blue), #2563eb); border-color: transparent; color: #fff; box-shadow: 0 4px 14px rgba(29,78,216,0.3); }

.hosting-promo { background: linear-gradient(135deg, rgba(29,78,216,0.2), rgba(124,58,237,0.15)); border: 1px solid rgba(59,130,246,0.3); border-radius: 16px; padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
.promo-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(251,146,60,0.15); color: #fb923c; border: 1px solid rgba(251,146,60,0.25); border-radius: 20px; padding: 3px 12px; font-size: 11px; font-weight: 700; }
.promo-left h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.promo-left p { font-size: 13.5px; color: rgba(255,255,255,0.5); }
.promo-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; padding: 13px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 700; align-self: flex-start; transition: transform .2s; box-shadow: 0 6px 20px rgba(239,68,68,0.3); }
.promo-btn:hover { transform: translateY(-1px); }

/* ── Why ─────────────────────────────────────────────────────── */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 20px; transition: border-color .2s; }
.why-card:hover { border-color: rgba(255,255,255,0.12); }
.why-icon { width: 42px; height: 42px; background: linear-gradient(135deg, rgba(29,78,216,0.2), rgba(6,182,212,0.1)); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--blue-l); margin-bottom: 14px; }
.why-card h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials { background: var(--dark-2, #0d1220); }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.testi-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 22px; transition: border-color .2s; }
.testi-card:hover { border-color: rgba(255,255,255,0.14); }
.testi-stars { font-size: 15px; color: #f59e0b; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card > p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0; font-family: var(--font-head); }
.testi-author strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--white); }
.testi-author span   { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── Stats Banner ────────────────────────────────────────────── */
.stats-banner { background: linear-gradient(135deg, var(--blue-dark), #1e1b4b); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.stats-banner .section-inner { padding: 40px 16px; }
.stats-banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sb-stat { text-align: center; }
.sb-stat strong { display: block; font-family: var(--font-head); font-size: clamp(18px, 3vw, 28px); font-weight: 800; color: #fff; }
.sb-stat span { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.sb-div { display: none; }

/* ── Final CTA ───────────────────────────────────────────────── */
.final-cta { position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0f1f3d, #0a0e1a); }
.fcta-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 48px 48px; }
.fcta-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.fcta-orb-1 { width: min(400px, 80vw); height: min(400px, 80vw); background: rgba(29,78,216,0.2); top: -100px; left: -80px; }
.fcta-orb-2 { width: min(350px, 70vw); height: min(350px, 70vw); background: rgba(124,58,237,0.15); bottom: -80px; right: -50px; }
.final-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; padding: 70px 16px; text-align: center; }
.fcta-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #4ade80; border-radius: 30px; padding: 6px 16px; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.final-cta-inner h2 { font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 42px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
.final-cta-inner > p { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 32px; line-height: 1.7; }
.fcta-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.fcta-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; padding: 14px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 700; box-shadow: 0 8px 28px rgba(29,78,216,0.4); transition: transform .2s; }
.fcta-btn-primary:hover { transform: translateY(-2px); }
.fcta-btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); padding: 14px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,0.14); }
.fcta-btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: transparent; color: rgba(255,255,255,0.5); padding: 14px 22px; border-radius: var(--radius); font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); }
.fcta-trust { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fcta-trust span { font-size: 12px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 5px; }

/* Marketplace home CTA */
.mkt-home-cta { background: var(--dark-2, #0d1220); }
.mkt-home-cta .section-inner { padding-top: 0; }
.mhc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.mhc-card { border-radius: 16px; padding: 24px 20px; display: flex; flex-direction: column; gap: 18px; border: 1px solid rgba(255,255,255,0.08); }
.mhc-saas { background: linear-gradient(135deg, rgba(29,78,216,0.15), rgba(6,182,212,0.08)); border-color: rgba(29,78,216,0.25); }
.mhc-ent  { background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(124,58,237,0.08)); border-color: rgba(217,119,6,0.25); }
.mhc-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.mhc-saas .mhc-icon { background: rgba(29,78,216,0.2); color: #60a5fa; }
.mhc-ent  .mhc-icon { background: rgba(217,119,6,0.2);  color: #fbbf24; }
.mhc-content h3 { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.mhc-content > p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 16px; }
.mhc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.mhc-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.mhc-list i { color: #22c55e; font-size: 10px; flex-shrink: 0; }
.mhc-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); padding: 10px 18px; border-radius: 9px; transition: background .2s; align-self: flex-start; }
.mhc-btn:hover { background: rgba(255,255,255,0.08); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: #050810; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 16px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-brand-col { grid-column: 1 / -1; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; margin-bottom: 18px; }
.footer-socials a { width: 34px; height: 34px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.47); transition: background .2s, color .2s; }
.footer-socials a:hover { background: rgba(29,78,216,0.2); color: var(--blue-l); }
.footer-badges { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px 16px; }
.footer-badges span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.33); white-space: nowrap; }
.footer-badges i { color: #22c55e; }
.footer-links-col h4 { font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.47); margin-bottom: 14px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 13px; color: rgba(255,255,255,0.42); transition: color .2s; }
.footer-links-col a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { background: rgba(0,0,0,0.2); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.24); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.55); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════════════════════════
   TABLET — 600px+
══════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
    .search-btn span { display: inline; }
    .section-inner { padding: 72px 24px; }
    .stats-banner .section-inner { padding: 36px 24px; }
    .divisions-grid { grid-template-columns: 1fr 1fr; }
    .saas-showcase-grid { grid-template-columns: repeat(3, 1fr); }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
    .stats-banner-grid { grid-template-columns: repeat(3, 1fr); }
    .fcta-actions { flex-direction: row; justify-content: center; }
    .mhc-grid { grid-template-columns: 1fr 1fr; }
    .hosting-promo { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ══════════════════════════════════════════════════════════════
   DESKTOP — 900px+
══════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
    .nav-inner { height: 68px; padding: 0 24px; gap: 8px; }
    .nav-menu { display: flex; }
    .nav-actions { display: flex; }
    .hamburger, .nav-drawer, .nav-drawer-overlay { display: none !important; }

    .section-inner { padding: 72px 24px; }
    .stats-banner .section-inner { padding: 36px 24px; }
    .section-sub { margin-bottom: 52px; }

    .hero { padding: 100px 0 60px; }
    .hero-inner { padding: 0 24px; }
    .hero-title { letter-spacing: -2px; }

    .divisions-grid { grid-template-columns: repeat(5, 1fr); }
    .saas-showcase-grid { grid-template-columns: repeat(4, 1fr); }
    .hosting-cards { display: grid; grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .testi-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-banner-grid { display: flex; align-items: center; justify-content: space-around; gap: 16px; flex-wrap: wrap; }
    .sb-div { display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
    .footer-inner { grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 44px; padding: 70px 24px 60px; }
    .footer-brand-col { grid-column: auto; }
    .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
    .h-stat-div { display: block; }
    .mhc-grid { grid-template-columns: 1fr 1fr; }
    .mhc-card { flex-direction: row; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════
   LARGE — 1200px+
══════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
    .nav-inner { padding: 0 24px; }
    .mega-drop { min-width: 640px; }
}

/* ═══════════════════════════════════════════════════════════════
   Policy Pages
   ═══════════════════════════════════════════════════════════════ */

/* ── Policy Hero ─────────────────────────────────────────────── */
.policy-hero {
    position: relative; padding: 80px 16px 50px;
    overflow: hidden; background: linear-gradient(180deg, #060912, #0a0e1a);
}
.policy-hero-bg { position: absolute; inset: 0; }
.policy-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.ph-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.35);
    margin-bottom: 20px; flex-wrap: wrap;
}
.ph-breadcrumb a { color: var(--blue-l); transition: color .2s; }
.ph-breadcrumb a:hover { color: #fff; }
.ph-breadcrumb i { font-size: 9px; }
.policy-hero-inner h1 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 800; color: #fff;
    line-height: 1.1; letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.ph-meta {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap;
}
.ph-meta span {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: rgba(255,255,255,0.4);
}
.ph-meta i { color: rgba(255,255,255,0.3); }

/* ── Policy Layout ───────────────────────────────────────────── */
.policy-layout { background: #f0f4f8; padding: 32px 0 60px; }
.policy-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 16px;
    display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}

/* ── TOC Sidebar ─────────────────────────────────────────────── */
.policy-toc { width: 100%; }
.ptoc-card {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.ptoc-card h3 {
    font-family: var(--font-head); font-size: 13px; font-weight: 700;
    color: #0f172a; text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 14px; display: flex; align-items: center; gap: 7px;
}
.ptoc-card h3 i { color: var(--blue); }
.ptoc-card nav { display: flex; flex-direction: column; gap: 2px; }
.ptoc-link {
    display: block; padding: 7px 10px; border-radius: 8px;
    font-size: 13px; color: #475569;
    transition: background .15s, color .15s;
    line-height: 1.4;
}
.ptoc-link:hover { background: #f1f5f9; color: #0f172a; }
.ptoc-link.active { background: rgba(29,78,216,0.08); color: var(--blue); font-weight: 600; }
.ptoc-other { margin-top: 16px; }
.ptoc-other h4 {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.6px; color: #94a3b8; margin-bottom: 8px; padding: 0 4px;
}
.ptoc-other-link {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 10px; border-radius: 8px;
    font-size: 13px; color: #64748b;
    transition: background .15s, color .15s;
}
.ptoc-other-link i { font-size: 12px; color: #94a3b8; }
.ptoc-other-link:hover { background: #f1f5f9; color: #0f172a; }

/* ── Policy Content ──────────────────────────────────────────── */
.policy-content { flex: 1; width: 100%; }
.pc-intro {
    display: flex; align-items: flex-start; gap: 14px;
    background: #eff6ff; border: 1px solid #bfdbfe;
    border-radius: 12px; padding: 18px;
    margin-bottom: 24px; font-size: 14px;
    color: #1e40af; line-height: 1.6;
}
.pc-intro-icon { font-size: 20px; color: #3b82f6; flex-shrink: 0; margin-top: 2px; }
.pc-intro a { color: var(--blue); font-weight: 600; }

.pc-section {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 24px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    scroll-margin-top: 90px;
}
.pc-section h2 {
    font-family: var(--font-head); font-size: 17px; font-weight: 700;
    color: #0f172a; margin-bottom: 12px;
    padding-bottom: 10px; border-bottom: 1px solid #f1f5f9;
}
.pc-body {
    font-size: 14.5px; color: #374151;
    line-height: 1.8; white-space: pre-line;
}
.pc-body strong { color: #0f172a; }

.pc-footer {
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 12px; padding: 20px;
    margin-top: 16px; font-size: 13.5px; color: #64748b;
    display: flex; flex-direction: column; gap: 8px;
}
.pc-footer a { color: var(--blue); font-weight: 600; }
.pc-footer-date { font-size: 12px; color: #94a3b8; }

/* ── Add "Forgot Password?" link to login ───────────────────── */
.af-forgot-link { display: block; text-align: center; font-size: 13.5px; color: #64748b; margin-top: 16px; }
.af-forgot-link a { color: var(--blue, #1d4ed8); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   TABLET 600px+
══════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
    .policy-hero { padding: 90px 24px 60px; }
    .policy-inner { padding: 0 24px; }
}

/* ══════════════════════════════════════════════════════════
   DESKTOP 900px+
══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
    .policy-inner { flex-direction: row; align-items: flex-start; gap: 28px; }
    .policy-toc { width: 260px; flex-shrink: 0; position: sticky; top: 80px; }
    .policy-content { min-width: 0; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN AUDIT IMPROVEMENTS — v48
   ══════════════════════════════════════════════════════════════ */

/* ── 375px: Very small phones (iPhone SE, older Android) ────── */
@media (max-width: 374px) {
    .topbar-inner { flex-direction: column; gap: 4px; text-align: center; padding: 6px 12px; }
    .topbar span  { font-size: 11px; }
    .topbar-links { gap: 8px; }
    .nav-inner    { padding: 0 10px; }
    .hero         { padding: 60px 0 30px; min-height: auto; }
    .hero-title   { font-size: 24px; letter-spacing: -1px; }
    .hero-subtitle{ font-size: 13px; }
    .hero-search-box { padding: 12px; }
    .search-input { font-size: 13px; padding: 10px 0; }
    .search-btn   { padding: 10px 12px; font-size: 12px; }
    .hero-cta-group { gap: 8px; }
    .hero-btn-primary, .hero-btn-secondary, .hero-btn-ghost { padding: 11px 16px; font-size: 13px; }
    .h-stat strong { font-size: 16px; }
    .section-inner { padding: 44px 12px; }
    .section-title { font-size: 20px; }
    .div-card, .why-card, .testi-card { padding: 16px 14px; }
    .footer-inner  { padding: 32px 12px 28px; }
    /* Hide decorative floating icons on very small screens */
    .hfi { display: none; }
    /* Search extensions: scroll horizontally */
    .search-extensions { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
}

/* ── 480px: Small phones to large phones ───────────────────── */
@media (min-width: 480px) {
    .search-btn span { display: inline; }
    .stats-banner-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-cta-group { flex-wrap: nowrap; }
}

/* ── Between 600px–899px: Tablet (hamburger should still show) */
@media (max-width: 899px) {
    .nav-menu    { display: none; }
    .nav-actions { display: none; }
    .hamburger   { display: flex !important; }
    .nav-drawer  { display: block; }
    .nav-mobile-cart { display: inline-flex; }
    /* Mega dropdown never fires on touch */
    .mega-drop   { display: none !important; }
}

/* ── 480–899px only: tablet-range 2-column grids ─────────────
   Bounded on both ends so this can't leak into desktop (where
   min-width:900px above correctly wants 4 columns) or below 480px
   (where these classes' base rules already give the right
   single/narrower layout for very small phones). Previously these
   lived in unbounded min-width:480px/600px blocks, which also
   matched — and won, by source order — at every desktop width. */
@media (min-width: 480px) and (max-width: 899px) {
    .hosting-cards, .why-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 600px already defined above — extend it ───────────────── */
@media (min-width: 600px) {
    .hero { padding: 90px 0 50px; }
    .topbar-inner { flex-direction: row; }
    .stats-banner-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Tables: always scrollable on small screens ────────────── */
@media (max-width: 599px) {
    table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .fcta-actions { flex-direction: column; align-items: stretch; }
    .fcta-btn-primary, .fcta-btn-secondary, .fcta-btn-ghost { text-align: center; justify-content: center; }
    .final-cta-inner { padding: 50px 16px; }
    .stats-banner-grid { grid-template-columns: 1fr 1fr; }
    .sb-div { display: none; }
    /* Hero floating icons — hide on phones */
    .hfi-3, .hfi-4 { display: none; }
    .hero-search-box { margin-left: 0; margin-right: 0; }
    .hosting-cards { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ── Focus styles for accessibility ────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible { outline: 2px solid #60a5fa; outline-offset: 2px; border-radius: 4px; }

/* ── Prevent horizontal overflow globally ───────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }
.hero-orb  { max-width: 100vw; }

/* ── Images: prevent overflow ───────────────────────────────── */
img, video, iframe, svg { max-width: 100%; height: auto; }

/* ── Improve touch targets ──────────────────────────────────── */
@media (max-width: 899px) {
    .nav-link, .nd-link, .stab { min-height: 44px; }
    .search-btn { min-height: 44px; }
}

/* ── Homepage-specific improvements ────────────────────────── */
.hero-br-sm { display: none; }
@media (max-width: 599px) {
    .hero-br-sm { display: block; }
    .hero-title { font-size: clamp(26px, 8vw, 38px); letter-spacing: -1px; }
    .hero-stats { gap: 12px; }
    .h-stat-div { width: 1px; height: 20px; }
    .h-stat strong { font-size: 15px; }
    .h-stat span   { font-size: 10px; }
    /* Search tabs: full width on phones */
    .search-tabs { width: 100%; justify-content: flex-start; }
    .stab { flex: 1; justify-content: center; font-size: 12px; }
}
@media (min-width: 900px) {
    .hero-br-sm { display: none; }
}

/* ── Division cards: stacked icon+text on narrow ────────────── */
@media (max-width: 480px) {
    .div-card { padding: 18px 16px; }
    .div-icon  { width: 38px; height: 38px; font-size: 16px; margin-bottom: 10px; }
    .div-card h3 { font-size: 15px; }
}

/* ── SaaS apps: always 2-col on phones ─────────────────────── */
@media (max-width: 599px) {
    .saas-showcase-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sas-app-card { padding: 14px 12px; }
    .sas-app-name { font-size: 12px; }
}

/* ── Trust bar: hide dividers on phone ─────────────────────── */
@media (max-width: 599px) {
    .tl-div { display: none; }
    .trust-inner { gap: 8px; }
    .tl-item { font-size: 11px; padding: 4px 8px; }
}
