/* ═══════════════════════════════════════════════════════════════
   ACBIZ GLOBAL — Corporate Website Stylesheet
   Design tokens (colors, fonts, radii) intentionally match the
   Web Services platform's public.css so the two feel like one
   ecosystem, not two different companies. See docs/README.md.
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

: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;
}

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, svg { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── Topbar / Navbar (same pattern as the platform) ─────────── */
.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; flex-wrap: wrap; }
.topbar-inner span { color: rgba(255,255,255,0.7); font-size: 12px; }
.topbar-links { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.topbar-links a { color: #93c5fd; font-weight: 500; transition: color .2s; font-size: 12px; }
.topbar-links a:hover { color: #fff; }
.topbar-btn { background: rgba(255,255,255,0.12) !important; color: #fff !important; padding: 3px 12px; border-radius: 20px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }

.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: 64px; 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; border-radius: 9px; flex-shrink: 0; display: block; object-fit: contain; }
.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: none; list-style: none; gap: 2px; margin: 0 0 0 24px; flex: 1; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; 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: 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: 260px; 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 { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; font-size: 13px; 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.28); font-size: 12px; }
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-dropdown a:hover i { color: var(--blue-l); }

.nav-actions { display: none; gap: 8px; 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: all .2s; white-space: nowrap; }
.nav-btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.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; box-shadow: 0 4px 14px rgba(29,78,216,0.35); white-space: nowrap; }
.nav-btn-primary:hover { opacity: 0.9; }

.hamburger { display: flex; 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; }

.nav-drawer { display: block; 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: 22px; 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.75); transition: background .15s, color .15s; }
.nd-link i { width: 20px; font-size: 14px; 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.3); padding: 16px 14px 6px; }
.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; }

@media (min-width: 960px) {
    .nav-menu, .nav-actions { display: flex; }
    .hamburger, .nav-drawer, .nav-drawer-overlay { display: none !important; }
}

/* ── Section commons ─────────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.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(24px, 3.6vw, 40px); 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: 44px; max-width: 620px; line-height: 1.7; }
.section-light { background: #f8fafc; }
.section-light .section-title { color: #0f172a; }
.section-light .section-sub { color: #64748b; }
.section-alt { background: var(--dark-2); }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: var(--radius); font-size: 14.5px; font-weight: 700; transition: transform .2s, opacity .2s, background .2s; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; box-shadow: 0 8px 28px rgba(29,78,216,0.35); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: rgba(124,58,237,0.15); color: #c4b5fd; border: 1px solid rgba(124,58,237,0.3); }
.btn-secondary:hover { background: rgba(124,58,237,0.25); }
.btn-ghost { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.14); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); color: #fff; }
.btn-ghost-light { background: #fff; color: #0f172a; border: 1px solid #e2e8f0; }
.btn-ghost-light:hover { background: #f1f5f9; }
.btn-block { width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 96px 0 64px; }
.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); z-index: 0; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 20%, transparent 100%); z-index: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.hero-orb-1 { width: min(520px,80vw); height: min(520px,80vw); background: rgba(29,78,216,0.18); top: -160px; left: -100px; }
.hero-orb-2 { width: min(380px,60vw); height: min(380px,60vw); background: rgba(6,182,212,0.12); top: 40px; right: -100px; }
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 0 20px; 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; }
.hero-badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.hero-title { font-family: var(--font-head); font-size: clamp(32px, 5vw, 58px); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; color: var(--white); margin-bottom: 22px; }
.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(15px, 1.4vw, 18px); color: rgba(255,255,255,0.5); margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.h-stat { text-align: center; }
.h-stat strong { display: block; font-family: var(--font-head); font-size: clamp(17px, 2.5vw, 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: 30px; background: rgba(255,255,255,0.1); }

/* ── Page hero (secondary pages, shorter) ───────────────────── */
.page-hero { position: relative; padding: 72px 0 48px; overflow: hidden; }
.page-hero .hero-bg, .page-hero .hero-grid { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-bg { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29,78,216,0.16), transparent 70%), linear-gradient(180deg, #0a0e1a, #060912); }
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 20px; text-align: center; }
.page-hero-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 620px; margin: 0 auto; }

/* ── Grids & cards ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .grid-2, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 26px 22px; transition: transform .25s, border-color .25s; position: relative; }
.card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }
.card-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 16px; background: linear-gradient(135deg, rgba(29,78,216,0.2), rgba(6,182,212,0.1)); color: var(--blue-l); }
.card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 16px; }
.card-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.card-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.card-features i { color: #22c55e; font-size: 10px; flex-shrink: 0; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--blue-l); transition: gap .2s; }
.card-link:hover { gap: 10px; }

.section-light .card { background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.section-light .card:hover { border-color: #cbd5e1; box-shadow: 0 4px 14px rgba(15,23,42,.08); }
.section-light .card h3 { color: #0f172a; }
.section-light .card p { color: #64748b; }

/* ── Audience / industry chips ──────────────────────────────── */
.chip-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .chip-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .chip-grid { grid-template-columns: repeat(3, 1fr); } }
.chip { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px; transition: transform .2s, border-color .2s; }
.chip:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.18); }
.chip-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(29,78,216,0.14); color: var(--blue-l); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.chip-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; }
.chip-desc { font-size: 12.5px; color: rgba(255,255,255,0.4); }

/* ── Journey strip ───────────────────────────────────────────── */
.journey { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: stretch; }
.journey-step { flex: 1 1 150px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px 16px; text-align: center; }
.journey-step .num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 13px; margin-bottom: 10px; }
.journey-step h4 { font-family: var(--font-head); font-size: 14px; margin-bottom: 4px; }
.journey-step p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.journey-arrow { display: none; align-items: center; color: rgba(255,255,255,0.2); font-size: 16px; }
@media (min-width: 900px) { .journey-arrow { display: flex; } }

/* ── CTA banner ──────────────────────────────────────────────── */
.cta-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); text-align: center; }
.cta-banner .section-title { margin-bottom: 10px; }
.cta-banner .section-sub { margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ── Placeholder note (used honestly instead of fabricated content) ── */
.placeholder-note { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: #fbbf24; background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.25); padding: 8px 14px; border-radius: 10px; margin-top: 8px; }

/* ── Content page (prose) ───────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; padding: 0 20px 64px; }
.prose h2 { font-family: var(--font-head); font-size: 24px; margin: 40px 0 14px; color: #fff; }
.prose p { font-size: 15.5px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul li { display: flex; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.6); }
.prose ul li i { color: #22c55e; margin-top: 5px; flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: #060912; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr repeat(5, 1fr); } }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 14px 0 16px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all .2s; }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.footer-col h4 { font-family: var(--font-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; font-size: 12.5px; color: rgba(255,255,255,0.35); }

/* ── 404 ─────────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 120px 20px; }
.error-page h1 { font-family: var(--font-head); font-size: clamp(48px,10vw,96px); font-weight: 800; background: linear-gradient(135deg, #60a5fa, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.error-page p { color: rgba(255,255,255,0.5); margin: 12px 0 28px; }
