/* ═══════════════════════════════════════════════════════════════
   ACBIZ GLOBAL Web Services — Public Stylesheet v3.0
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
    --blue:       #1d4ed8;
    --blue-dark:  #1e3a8a;
    --blue-light: #3b82f6;
    --accent:     #06b6d4;
    --purple:     #7c3aed;
    --dark:       #0a0e1a;
    --dark-2:     #0d1220;
    --dark-3:     #111827;
    --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; }

/* ── 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 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar span { color: rgba(255,255,255,0.7); }
.topbar a { color: #93c5fd; font-weight: 500; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar-btn { background: rgba(255,255,255,0.12); color: #fff !important; padding: 4px 14px; border-radius: 20px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); transition: background .2s; }
.topbar-btn:hover { background: rgba(255,255,255,0.2) !important; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar { background: rgba(10,14,26,0.96); backdrop-filter: blur(20px); -webkit-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 24px; height: 68px; display: flex; align-items: center; gap: 8px; }
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: 8px; }
.brand-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--blue), var(--accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 13px; 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: 15px; color: var(--white); letter-spacing: -0.3px; }
.brand-sub  { font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.4); 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: 5px; padding: 8px 12px; font-size: 13.5px; 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: 10px; 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: 220px; 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; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 13.5px; color: rgba(255,255,255,0.6); border-radius: 8px; transition: background .15s, color .15s; }
.nav-dropdown a i { width: 16px; color: rgba(255,255,255,0.3); font-size: 12px; }
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-dropdown a:hover i { color: var(--blue-light); }

.mega-drop { left: -40px; min-width: 680px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 16px; }
.mega-drop-saas { grid-template-columns: repeat(3, 1fr); min-width: 680px; }
.mega-col { padding: 4px; }
.mega-head { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.3); padding: 6px 14px 10px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mega-head i { font-size: 11px; }

.nav-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; flex-shrink: 0; }
.nav-btn-outline { padding: 8px 16px; border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); transition: border-color .2s, color .2s, background .2s; }
.nav-btn-outline:hover { border-color: rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.05); }
.nav-btn-primary { padding: 8px 18px; background: linear-gradient(135deg, var(--blue), #2563eb); border-radius: 8px; font-size: 13px; font-weight: 700; color: #fff; transition: opacity .2s, transform .1s; box-shadow: 0 4px 16px rgba(29,78,216,0.35); }
.nav-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

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

/* ── Section Commons ─────────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue-light); margin-bottom: 16px; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); padding: 5px 14px; border-radius: 20px; }
.section-title { font-family: var(--font-head); font-size: clamp(26px, 3.8vw, 44px); font-weight: 800; color: var(--white); line-height: 1.14; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 56px; max-width: 580px; line-height: 1.7; }

/* ── Flash Messages ──────────────────────────────────────────── */
.flash-msg { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; border-radius: 10px; font-size: 14px; line-height: 1.5; margin: 16px auto; max-width: 1200px; width: calc(100% - 48px); }
.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: 94vh; display: flex; align-items: center; overflow: hidden; padding: 100px 0 60px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29,78,216,0.2) 0%, transparent 70%), linear-gradient(180deg, #0a0e1a 0%, #060912 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 20%, transparent 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width: 600px; height: 600px; background: rgba(29,78,216,0.18); top: -200px; left: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(6,182,212,0.1); top: 50px; right: -80px; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(124,58,237,0.1); bottom: -50px; left: 45%; }

/* Floating icons */
.hero-float-icons { position: absolute; inset: 0; pointer-events: none; }
.hfi { position: absolute; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,255,255,0.2); animation: float 6s ease-in-out infinite; }
.hfi-1 { top: 18%; left: 6%;   animation-delay: 0s;   color: rgba(37,99,235,0.5); }
.hfi-2 { top: 30%; right: 8%;  animation-delay: 1s;   color: rgba(5,150,105,0.5); }
.hfi-3 { top: 65%; left: 4%;   animation-delay: 2s;   color: rgba(220,38,38,0.4); }
.hfi-4 { top: 15%; right: 15%; animation-delay: 0.5s; color: rgba(124,58,237,0.5); }
.hfi-5 { bottom: 25%; right: 5%; animation-delay: 1.5s; color: rgba(6,182,212,0.5); }
.hfi-6 { bottom: 30%; left: 10%; animation-delay: 2.5s; color: rgba(217,119,6,0.5); }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(3deg); } }

.hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 24px; 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: 7px 18px; font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 28px; animation: fadeInDown .6s ease both; flex-wrap: wrap; justify-content: center; }
.hero-badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); flex-shrink: 0; animation: pulse 2s infinite; }
.hero-badge-sep { color: rgba(255,255,255,0.2); }
@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.08); } }

.hero-title { font-family: var(--font-head); font-size: clamp(38px, 6.5vw, 76px); font-weight: 800; line-height: 1.06; letter-spacing: -2px; color: var(--white); margin-bottom: 24px; animation: fadeInUp .7s .1s ease both; }
.hero-gradient { background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 50%, #a78bfa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,0.5); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7; animation: fadeInUp .7s .2s ease both; }

/* Hero Search */
.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: 20px; margin-bottom: 32px; animation: fadeInUp .7s .3s ease both; max-width: 720px; margin-left: auto; margin-right: auto; }
.search-tabs { display: flex; gap: 4px; margin-bottom: 14px; }
.stab { padding: 7px 16px; 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: 6px; }
.stab i { font-size: 11px; }
.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, box-shadow .2s; }
.search-input-wrap:focus-within { border-color: rgba(59,130,246,0.5); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.search-icon { padding: 0 16px; color: rgba(255,255,255,0.3); font-size: 15px; }
.search-input { flex: 1; background: transparent; border: none; outline: none; padding: 14px 0; font-size: 15px; color: var(--white); font-family: var(--font-body); }
.search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-btn { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; border: none; padding: 14px 22px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: opacity .2s; white-space: nowrap; }
.search-btn:hover { opacity: 0.9; }
.search-extensions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,0.35); }
.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.08); padding: 3px 10px; border-radius: 6px; transition: all .15s; font-weight: 600; }
.search-extensions a em { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.35); font-size: 11px; margin-left: 3px; }
.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; }

/* Hero CTAs */
.hero-cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; animation: fadeInUp .7s .4s ease both; }
.hero-btn-primary { display: inline-flex; align-items: 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 32px rgba(29,78,216,0.4); transition: transform .2s, box-shadow .2s; }
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(29,78,216,0.5); }
.hero-btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(124,58,237,0.15); color: #c4b5fd; padding: 14px 28px; border-radius: var(--radius); font-size: 15px; 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: 10px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); padding: 14px 24px; border-radius: var(--radius); font-size: 15px; 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; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; animation: fadeInUp .7s .5s ease both; }
.h-stat { text-align: center; }
.h-stat strong { display: block; font-family: var(--font-head); font-size: 24px; 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: 32px; background: rgba(255,255,255,0.1); }

/* ── Trust Section ───────────────────────────────────────────── */
.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: 24px 0; }
.trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tl-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.35); padding: 6px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
.tl-item i { font-size: 12px; }
.tl-div { width: 1px; height: 20px; background: rgba(255,255,255,0.08); }

/* ── Divisions ───────────────────────────────────────────────── */
.divisions { background: var(--dark-2); }
.divisions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.div-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 28px 22px; transition: transform .25s, border-color .25s, box-shadow .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(-4px); border-color: rgba(255,255,255,0.14); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.div-card:hover::before { opacity: 1; }
.div-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.div-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.div-card > p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 18px; }
.div-features { list-style: none; margin-bottom: 22px; display: flex; flex-direction: column; gap: 7px; }
.div-features li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; 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: 7px; font-size: 13px; font-weight: 700; color: var(--blue-light); transition: gap .2s; }
.div-link:hover { gap: 11px; }

/* ── SaaS Showcase ───────────────────────────────────────────── */
.saas-showcase { background: var(--dark); }
.saas-showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.sas-app-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: transform .2s, border-color .2s; }
.sas-app-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); }
.sas-app-top { display: flex; align-items: center; gap: 12px; }
.sas-app-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.sas-app-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; }
.sas-app-cat  { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.sas-app-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; flex: 1; }
.sas-app-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.sas-app-from { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); }
.sas-app-btn  { font-size: 12px; font-weight: 700; color: var(--blue-light); padding: 5px 12px; border: 1px solid rgba(59,130,246,0.25); border-radius: 6px; transition: background .15s; }
.sas-app-btn:hover { background: rgba(59,130,246,0.1); }
.saas-showcase-cta { text-align: center; }
.saas-showcase-cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--blue-light); padding: 12px 24px; 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 Section ─────────────────────────────────────────── */
.hosting-section { background: var(--dark-2); }
.hosting-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.hosting-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: transform .25s, border-color .25s; position: relative; }
.hosting-card:hover { transform: translateY(-4px); 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: -11px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.hc-icon { width: 52px; height: 52px; background: rgba(59,130,246,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--blue-light); margin: 0 auto 14px; }
.hosting-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.hc-ideal { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.hc-price { font-size: 13.5px; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.hc-price strong { font-family: var(--font-head); font-size: 24px; color: #fff; }
.hc-price span { font-size: 13px; color: rgba(255,255,255,0.35); }
.hc-features { display: flex; flex-direction: column; gap: 8px; text-align: left; margin-bottom: 20px; }
.hc-features span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); }
.hc-features i { color: #22c55e; font-size: 11px; }
.hc-btn { display: block; padding: 11px; border-radius: var(--radius); font-size: 13.5px; 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); color: #fff; }
.hc-btn-featured { background: linear-gradient(135deg, var(--blue), #2563eb); border-color: transparent; color: #fff; box-shadow: 0 4px 18px rgba(29,78,216,0.3); }
.hc-btn-featured:hover { opacity: 0.9; }

.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: var(--radius-lg); padding: 36px 44px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.promo-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(251,146,60,0.15); color: #fb923c; border: 1px solid rgba(251,146,60,0.25); border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.promo-left h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.promo-left p  { font-size: 14.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: 14px 26px; border-radius: var(--radius); font-size: 14px; font-weight: 700; flex-shrink: 0; transition: transform .2s; box-shadow: 0 8px 24px rgba(239,68,68,0.3); }
.promo-btn:hover { transform: translateY(-2px); }

/* ── Enterprise Section ──────────────────────────────────────── */
.enterprise-section { background: var(--dark); }
.ent-grid { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; }
.ent-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ent-item { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 16px; transition: border-color .2s; }
.ent-item:hover { border-color: rgba(255,255,255,0.12); }
.ent-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.ent-item strong { display: block; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.ent-item span   { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.ent-btn { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; padding: 14px 28px; border-radius: var(--radius); font-size: 14.5px; font-weight: 700; box-shadow: 0 8px 28px rgba(29,78,216,0.3); transition: transform .2s; }
.ent-btn:hover { transform: translateY(-2px); }

/* Enterprise Visual */
.ent-visual { position: relative; height: 380px; }
.ev-card-main { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 320px; background: #141a2e; border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 20px; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.ev-card-head { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.ev-dot { width: 10px; height: 10px; border-radius: 50%; }
.ev-dot-red { background: #ef4444; }
.ev-dot-amber { background: #f59e0b; }
.ev-dot-green { background: #22c55e; }
.ev-card-head span { font-size: 11px; color: rgba(255,255,255,0.35); margin-left: 4px; }
.ev-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.ev-stat { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 10px; text-align: center; }
.ev-stat span  { font-size: 10px; color: rgba(255,255,255,0.35); display: block; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.4px; }
.ev-stat strong { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: #fff; }
.ev-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-bottom: 8px; }
.ev-bar { flex: 1; background: rgba(255,255,255,0.06); border-radius: 4px 4px 0 0; overflow: hidden; height: 100%; display: flex; align-items: flex-end; }
.ev-bar-fill { width: 100%; background: linear-gradient(180deg, #3b82f6, #1d4ed8); border-radius: 4px 4px 0 0; }
.ev-labels { font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 0.3px; display: flex; justify-content: space-between; }
.ev-badge { position: absolute; background: #141a2e; border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 8px 14px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 7px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); white-space: nowrap; }
.ev-badge i { font-size: 13px; }
.ev-badge-1 { top: 8%;  left: -10%; } .ev-badge-1 i { color: #22c55e; }
.ev-badge-2 { bottom: 20%; left: -15%; } .ev-badge-2 i { color: #3b82f6; }
.ev-badge-3 { top: 15%; right: -10%; } .ev-badge-3 i { color: #f59e0b; }

/* ── Why Section ─────────────────────────────────────────────── */
.why-section { background: var(--dark-2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 24px; transition: border-color .2s, background .2s; }
.why-card:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.why-icon { width: 46px; height: 46px; background: linear-gradient(135deg, rgba(29,78,216,0.2), rgba(6,182,212,0.12)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue-light); margin-bottom: 16px; }
.why-card h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.testi-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 24px; transition: border-color .2s; }
.testi-card:hover { border-color: rgba(255,255,255,0.14); }
.testi-stars { font-size: 16px; color: #f59e0b; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card > p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author,.testi-avatar-wrap { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; font-family: var(--font-head); }
.testi-author strong,.testi-avatar-wrap strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--white); }
.testi-author span,.testi-avatar-wrap 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: 60px 24px; }
.stats-banner-grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.sb-stat { text-align: center; }
.sb-stat strong { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 800; color: #fff; }
.sb-stat span { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.6px; }
.sb-div { width: 1px; height: 48px; background: rgba(255,255,255,0.12); }

/* ── 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: 56px 56px; }
.fcta-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.fcta-orb-1 { width: 500px; height: 500px; background: rgba(29,78,216,0.2); top: -100px; left: -100px; }
.fcta-orb-2 { width: 400px; height: 400px; background: rgba(124,58,237,0.15); bottom: -100px; right: -50px; }
.final-cta-inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; padding: 100px 24px; text-align: center; }
.fcta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #4ade80; border-radius: 30px; padding: 7px 18px; font-size: 13px; font-weight: 700; margin-bottom: 24px; }
.final-cta-inner h2 { font-family: var(--font-head); font-size: clamp(28px, 4.5vw, 52px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.final-cta-inner > p { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 40px; line-height: 1.7; }
.fcta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.fcta-btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; padding: 15px 30px; border-radius: var(--radius); font-size: 15px; font-weight: 700; box-shadow: 0 8px 32px 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; gap: 10px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); padding: 15px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,0.14); transition: background .2s; }
.fcta-btn-secondary:hover { background: rgba(255,255,255,0.12); }
.fcta-btn-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: rgba(255,255,255,0.5); padding: 15px 22px; border-radius: var(--radius); font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); transition: background .2s; }
.fcta-btn-ghost:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.75); }
.fcta-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.fcta-trust span { font-size: 13px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 6px; }

/* ── 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: 70px 24px 60px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 22px; }
.footer-socials a { width: 36px; height: 36px; 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: 14px; color: rgba(255,255,255,0.4); transition: background .2s, color .2s; }
.footer-socials a:hover { background: rgba(29,78,216,0.2); color: var(--blue-light); border-color: rgba(29,78,216,0.3); }
.footer-badges { display: flex; flex-direction: column; gap: 7px; }
.footer-badges span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-badges i { color: #22c55e; font-size: 12px; }
.footer-links-col h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links-col a { font-size: 13.5px; color: rgba(255,255,255,0.38); transition: color .2s; }
.footer-links-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { background: rgba(0,0,0,0.2); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.28); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── 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); } }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .divisions-grid { grid-template-columns: repeat(3, 1fr); }
    .saas-showcase-grid { grid-template-columns: repeat(3, 1fr); }
    .hosting-cards { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .ent-grid { grid-template-columns: 1fr; }
    .ent-right { display: none; }
    .mega-drop { left: -80px; min-width: 560px; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .divisions-grid { grid-template-columns: repeat(2, 1fr); }
    .saas-showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-menu, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #141a2e; border-top: 1px solid rgba(255,255,255,0.06); padding: 16px; gap: 4px; z-index: 999; }
    .nav-menu.open .nav-link { padding: 12px 16px; }
    .nav-menu.open .nav-dropdown, .nav-menu.open .mega-drop { display: none !important; }
    .stats-banner-grid { flex-wrap: wrap; gap: 32px; }
    .sb-div { display: none; }
    .hero-stats { gap: 18px; }
    .h-stat-div { display: none; }
}
@media (max-width: 640px) {
    .divisions-grid { grid-template-columns: 1fr; }
    .saas-showcase-grid { grid-template-columns: 1fr; }
    .hosting-cards { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .hosting-promo { flex-direction: column; text-align: center; padding: 28px 20px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
    .hero-title { font-size: 34px; letter-spacing: -1px; }
    .search-btn span { display: none; }
    .trust-logos .tl-div { display: none; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .fcta-actions { flex-direction: column; align-items: center; }
}
