@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --ink: #0B1120;
  --ink2: #1E2A3B;
  --muted: #6B7A92;
  --border: rgba(255,255,255,0.08);
  --surface: #111827;
  --surface2: #1A2436;
  --cyan: #00C8F0;
  --violet: #7B5CF5;
  --green: #22C55E;
  --amber: #F59E0B;
  --red: #EF4444;
  --white: #F0F6FF;
  --max: 1200px;
  --nav-h: 68px;
  --r: 12px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--ink); color: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── LAYOUT ──────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
@media (max-width: 768px) { .section { padding: 60px 0; } .section-sm { padding: 40px 0; } }

/* ── TYPE ────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.15; }
.display { font-size: clamp(38px, 6vw, 72px); font-weight: 800; letter-spacing: -1.5px; }
.h1 { font-size: clamp(30px, 4.5vw, 56px); letter-spacing: -1px; }
.h2 { font-size: clamp(24px, 3.5vw, 42px); letter-spacing: -.5px; }
.h3 { font-size: clamp(18px, 2vw, 24px); }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); line-height: 1.75; }
.gradient-text { background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); }

/* ── BUTTONS ─────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 10px; border: none; transition: all 0.2s; white-space: nowrap; }
.btn-primary { background: var(--cyan); color: #06111E; }
.btn-primary:hover { background: #19D6FF; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,200,240,.35); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #20BD5A; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(37,211,102,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.2); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,200,240,.06); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── LOGO ────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--cyan), var(--violet)); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -1px; flex-shrink: 0; }
.logo-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); line-height: 1.1; }
.logo-name small { display: block; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

/* ── NAV ─────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; background: rgba(11,17,32,.9); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); width: 100%; }
.nav .container { display: flex; align-items: center; gap: 0; width: 100%; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 36px; flex: 1; }
.nav-links > a, .nav-links > .dropdown > button { font-size: 14px; font-weight: 500; color: #8FA3BE; padding: 8px 14px; border-radius: 8px; border: none; background: none; font-family: inherit; display: flex; align-items: center; gap: 5px; transition: color .15s, background .15s; white-space: nowrap; }
.nav-links > a:hover, .nav-links > a.active, .nav-links > .dropdown > button:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-wa { display: flex; align-items: center; gap: 7px; background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25); color: #25D366; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: background .15s; }
.nav-wa:hover { background: rgba(37,211,102,.18); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 12px); left: -12px; background: #131E30; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 8px; min-width: 280px; box-shadow: 0 20px 60px rgba(0,0,0,.6); z-index: 200; }
.dropdown:hover .dropdown-menu { display: block; }
.dd-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; color: var(--white); font-size: 13.5px; transition: background .15s; }
.dd-item:hover { background: rgba(255,255,255,.06); }
.dd-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.dd-label { font-weight: 600; font-size: 13px; }
.dd-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.dd-divider { height: 1px; background: rgba(255,255,255,.06); margin: 6px 0; }

/* Mobile nav */
.mob-btn { display: none; background: none; border: 1px solid rgba(255,255,255,.15); color: var(--white); padding: 8px 12px; border-radius: 8px; font-size: 18px; margin-left: auto; }
.mob-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--ink); overflow-y: auto; padding: 24px 20px; z-index: 99; }
.mob-drawer.open { display: block; }
.mob-drawer a { display: block; padding: 13px 16px; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--white); }
.mob-drawer a:hover { color: var(--cyan); }
.mob-drawer-actions { display: flex; flex-direction: column; gap: 10px; padding: 20px 16px; }
.mob-drawer-actions .btn { justify-content: center; }
.mob-section-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 16px 16px 6px; }

@media (max-width: 1024px) { .nav-links, .nav-actions .btn-outline { display: none !important; } .nav-actions .nav-wa { display: none !important; } .mob-btn { display: flex; align-items: center; gap: 6px; } }

/* ── HERO ────────────────────────────────────── */
.hero { position: relative; padding: 100px 0 80px; overflow: hidden; background: var(--ink); }
.hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, rgba(0,200,240,.09) 0%, transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(123,92,245,.08) 0%, transparent 60%); pointer-events: none; }
@media (max-width: 768px) { .hero { padding: 60px 0 50px; } }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 50px; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,200,240,.08); border: 1px solid rgba(0,200,240,.2); border-radius: 100px; padding: 6px 14px 6px 8px; font-size: 12px; font-weight: 600; color: var(--cyan); margin-bottom: 24px; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.4} }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 500px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.hero-trust-item span { color: var(--green); font-weight: 700; }

/* Dashboard widget */
.dashboard { background: var(--surface); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08); }
.db-topbar { background: rgba(255,255,255,.03); padding: 14px 18px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-body { padding: 22px; }
.db-title { font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 10px; letter-spacing: .5px; }
.db-uptime-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.07); overflow: hidden; margin-bottom: 18px; }
.db-uptime-fill { height: 100%; width: 99.97%; background: linear-gradient(90deg, var(--green), var(--cyan)); border-radius: 3px; }
.db-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.db-metric { background: rgba(255,255,255,.04); border-radius: 10px; padding: 13px 10px; text-align: center; }
.db-metric-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.db-metric-lbl { font-size: 10px; color: var(--muted); }
.db-wa-box { display: flex; align-items: center; gap: 10px; background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.18); border-radius: 10px; padding: 11px 14px; }
.db-wa-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(37,211,102,.15); display: flex; align-items: center; justify-content: center; color: #25D366; flex-shrink: 0; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); }
@media (max-width: 640px) { .stats-bar-inner { grid-template-columns: repeat(2,1fr); } }
.stat-item { padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 800; color: var(--cyan); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ── SECTION HEADERS ─────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .lead { max-width: 520px; margin: 14px auto 0; }
.section-header .label { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 10px; }

/* ── SERVICE CARDS ───────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--surface); padding: 32px; transition: background .2s; display: block; color: inherit; }
.service-card:hover { background: var(--surface2); }
.service-card:hover .service-arrow { transform: translateX(4px); color: var(--cyan); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.service-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.service-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-footer { display: flex; justify-content: space-between; align-items: center; }
.service-price { font-size: 13px; font-weight: 700; }
.service-arrow { font-size: 14px; color: var(--muted); transition: all .2s; }

/* ── FEATURE GRID ────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; }
.feature-card:hover { border-color: rgba(0,200,240,.2); }
.feat-icon { font-size: 26px; margin-bottom: 14px; }
.feat-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.feat-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── PRICING ─────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; position: relative; transition: border-color .2s; }
.price-card:hover { border-color: rgba(0,200,240,.2); }
.price-card.featured { background: linear-gradient(180deg, rgba(0,200,240,.06) 0%, var(--surface) 50%); border-color: rgba(0,200,240,.35) !important; }
.price-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--cyan),var(--violet)); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.price-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.price-tagline { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; }
.price-currency { font-size: 20px; font-weight: 700; color: var(--muted); margin-top: 6px; }
.price-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 46px; font-weight: 800; line-height: 1; }
.price-per { font-size: 14px; color: var(--muted); }
.price-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.price-features { margin-bottom: 24px; }
.price-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--muted); }
.price-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-btn-wrap { display: flex; flex-direction: column; gap: 10px; }
.wa-order-link { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; font-weight: 600; color: #25D366; padding: 4px 0; }
.wa-order-link:hover { opacity: .8; }

/* ── TESTIMONIALS ────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 960px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.testi-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 14.5px; color: rgba(240,246,255,.75); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--violet)); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── BLOG CARDS ──────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: block; color: inherit; transition: border-color .2s, transform .2s; }
.blog-card:hover { border-color: rgba(0,200,240,.2); transform: translateY(-3px); }
.blog-card-accent { height: 4px; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 100px; padding: 4px 10px; margin-bottom: 12px; }
.blog-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15.5px; line-height: 1.45; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { display: flex; justify-content: space-between; font-size: 12px; color: rgba(107,122,146,.7); padding-top: 14px; border-top: 1px solid var(--border); }

/* ── WA STRIP ────────────────────────────────── */
.wa-strip { display: flex; align-items: center; gap: 20px; background: rgba(37,211,102,.06); border: 1px solid rgba(37,211,102,.18); border-radius: 16px; padding: 24px 32px; flex-wrap: wrap; }
@media (max-width: 640px) { .wa-strip { padding: 20px; } }
.wa-strip-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(37,211,102,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-strip-content { flex: 1; min-width: 180px; }
.wa-strip-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.wa-strip-content p { font-size: 13.5px; color: var(--muted); }

/* ── CTA BLOCK ───────────────────────────────── */
.cta-block { background: linear-gradient(135deg, rgba(0,200,240,.07) 0%, rgba(123,92,245,.07) 100%); border: 1px solid rgba(0,200,240,.15); border-radius: 24px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
@media (max-width: 640px) { .cta-block { padding: 50px 24px; } }
.cta-block h2 { margin-bottom: 14px; }
.cta-block p { max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger { width: 100%; text-align: left; background: none; border: none; color: var(--white); font-family: inherit; font-size: 15.5px; font-weight: 600; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .15s; }
.faq-trigger:hover { background: rgba(255,255,255,.03); }
.faq-icon { color: var(--cyan); font-size: 22px; line-height: 1; flex-shrink: 0; transition: transform .25s; }
.faq-body { display: none; padding: 0 28px 22px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.faq-item.active .faq-body { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ── TABLES ──────────────────────────────────── */
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 14px 20px; text-align: left; font-size: 14px; }
table th { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--cyan); background: rgba(0,200,240,.06); border-bottom: 1px solid var(--border); }
table td { border-bottom: 1px solid rgba(255,255,255,.04); color: var(--muted); }
table tr:last-child td { border-bottom: none; }
table td:first-child { color: var(--white); font-weight: 600; }
table tr:hover td { background: rgba(255,255,255,.02); }

/* ── FORMS ───────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select { width: 100%; background: rgba(255,255,255,.05); border: 1.5px solid var(--border); border-radius: 10px; color: var(--white); font-family: inherit; font-size: 15px; padding: 13px 16px; outline: none; transition: border-color .2s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: rgba(0,200,240,.5); background: rgba(0,200,240,.04); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(107,122,146,.6); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A92' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── PAGE HERO ───────────────────────────────── */
.page-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); text-align: center; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,200,240,.07) 0%, transparent 60%); }
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 560px; margin: 0 auto; }

/* ── SERVICE DETAIL HERO ─────────────────────── */
.srv-detail-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); }
.srv-detail-badge { display: inline-flex; align-items: center; gap: 10px; border-radius: 100px; padding: 6px 16px 6px 8px; font-size: 12px; font-weight: 700; letter-spacing: .5px; margin-bottom: 20px; }
.srv-detail-hero h1 { max-width: 660px; margin-bottom: 18px; }
.srv-detail-hero .lead { max-width: 580px; margin-bottom: 32px; }
.srv-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ARTICLE (Blog/KB) ───────────────────────── */
.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
@media (max-width: 1024px) { .article-wrap { grid-template-columns: 1fr; } }
.article-body { font-size: 16.5px; line-height: 1.85; color: rgba(240,246,255,.85); }
.article-body h2 { font-size: clamp(20px, 2.5vw, 28px); margin: 42px 0 16px; color: var(--white); }
.article-body h3 { font-size: clamp(17px, 2vw, 22px); margin: 32px 0 12px; color: var(--white); }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body code { background: rgba(0,200,240,.1); border: 1px solid rgba(0,200,240,.2); border-radius: 6px; padding: 2px 8px; font-size: 14px; color: var(--cyan); font-family: 'Courier New', monospace; }
.article-body pre { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 20px; overflow-x: auto; margin-bottom: 24px; }
.article-body pre code { background: none; border: none; padding: 0; color: var(--white); }
.article-body blockquote { border-left: 3px solid var(--cyan); padding: 16px 20px; background: rgba(0,200,240,.05); border-radius: 0 10px 10px 0; margin: 24px 0; font-style: italic; color: rgba(240,246,255,.75); }
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 16px; }
.sidebar-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.sidebar-toc a { display: block; font-size: 13.5px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.04); transition: color .15s; }
.sidebar-toc a:hover, .sidebar-toc a.active { color: var(--cyan); }
.sidebar-toc a:last-child { border-bottom: none; }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-label { font-size: 11px; color: var(--muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.wa-contact-card { display: flex; align-items: center; gap: 18px; background: linear-gradient(135deg, rgba(37,211,102,.1), rgba(0,200,240,.05)); border: 1px solid rgba(37,211,102,.22); border-radius: 16px; padding: 22px; margin-top: 24px; }
.wa-contact-icon { width: 56px; height: 56px; border-radius: 16px; background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: #070D1A; border-top: 1px solid var(--border); padding: 72px 0 32px; width: 100%; }
.footer-inner { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 36px; } }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 260px; }
.footer-status { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--green); margin-top: 16px; font-weight: 600; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,211,102,.09); border: 1px solid rgba(37,211,102,.22); color: #25D366; padding: 11px 18px; border-radius: 10px; font-size: 13px; font-weight: 700; margin-top: 18px; }
.footer-wa:hover { background: rgba(37,211,102,.16); }
.footer-col-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(240,246,255,.5); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: var(--muted); font-size: 12px; transition: color .15s; }
.footer-legal a:hover { color: var(--white); }

/* ── WA FLOAT ────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,.5); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 40px rgba(37,211,102,.65); }
.wa-float::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4); animation: wa-ring 2.4s infinite; pointer-events: none; }
@keyframes wa-ring { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(1.65)} }

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 14px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,.2); }

/* ── TWO COL ─────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #1E2E45; border-radius: 3px; }
