:root {
  --bg-page: #f4f7fb;
  --bg-white: #ffffff;
  --navy: #003b8e;
  --navy-dark: #1a2744;
  --cyan: #00aeef;
  --accent-black: #1a1a1a;
  --green: #28a745;
  --purple: #6f42c1;
  --teal: #17a2b8;
  --indigo: #4f46e5;
  --text-primary: #1a2744;
  --text-muted: #5c6b7a;
  --text-nav: #6b7c93;
  --border-light: #dde4ee;
  --shadow-card: 0 10px 40px rgba(0, 59, 142, 0.1);
  --gradient-hero: linear-gradient(135deg, #003b8e 0%, #0056c9 50%, #00aeef 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent-black); }

/* Header — solid white */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.5rem 0.25rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.logo-nav {
  height: 88px;
  width: auto;
  max-width: min(380px, 72vw);
  display: block;
  background: transparent;
  border-radius: 0;
}

.nav-upper .nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy) !important;
  padding: 0.45rem 0.7rem !important;
}

.nav-upper .nav-link:hover,
.nav-upper .nav-link.active { color: var(--cyan) !important; }

.navbar-toggler { border-color: rgba(0, 0, 0, 0.15); }
.navbar-toggler-icon { filter: none; }

.dropdown-menu { border: none; box-shadow: var(--shadow-card); border-radius: 8px; }
.dropdown-item { font-size: 0.85rem; font-weight: 500; padding: 0.5rem 1rem; }
.dropdown-item:hover { background: #eef5ff; color: var(--navy); }

.site-header .lang-switch { color: var(--text-muted); }
.site-header .lang-link { color: var(--text-muted); }
.site-header .lang-link.active,
.site-header .lang-link:hover { color: var(--cyan); }
.site-header .lang-divider { color: var(--border-light); }

.site-header .btn-outline-panel {
  border-color: var(--navy);
  color: var(--navy);
}

.site-header .btn-outline-panel:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.site-header .btn-accent {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.site-header .btn-accent:hover {
  background: #0056c9;
  border-color: #0056c9;
  color: #fff;
}

.btn-accent {
  background: var(--accent-black);
  border: 2px solid var(--accent-black);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
}

.btn-accent:hover { background: #000; border-color: #000; color: #fff; }

.btn-panel {
  background: var(--navy);
  border: 2px solid var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
}

.btn-panel:hover { background: #002d6e; border-color: #002d6e; color: #fff; }

.btn-outline-panel {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  border-radius: 6px;
  background: transparent;
}

.btn-outline-panel:hover { background: var(--navy); color: #fff; }

.lang-switch { font-size: 0.85rem; font-weight: 600; color: var(--text-nav); }
.lang-link { color: var(--text-nav); padding: 0.15rem 0.25rem; }
.lang-link.active, .lang-link:hover { color: var(--navy); }
.lang-divider { color: var(--border-light); margin: 0 0.15rem; }
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  background: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
}

.hero .hero-title { color: #fff; }
.hero .hero-lead { color: rgba(255,255,255,0.88); }
.hero .hero-eyebrow { color: #7dd3fc; }
.hero .hero-badge { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0,174,239,0.5);
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.75rem;
  border-radius: 4px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-logo { max-width: 100%; height: auto; max-height: 120px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); }

.hero-visual {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin-left: auto;
}

.hero-visual-ring {
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(125, 211, 252, 0.45);
  border-radius: 50%;
  animation: hero-spin 18s linear infinite;
}

.hero-visual-ring::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 50%;
}

.hero-visual-core {
  position: absolute;
  inset: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}

@keyframes hero-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero .btn-accent {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.hero .btn-accent:hover {
  background: #e8f4ff;
  border-color: #e8f4ff;
  color: var(--navy);
}

/* Page hero accents */
.page-hero {
  position: relative;
  padding: 4rem 0;
  color: #fff;
  overflow: hidden;
}

.page-hero .hero-title { color: #fff; }
.page-hero .hero-lead { color: rgba(255,255,255,0.9); }
.page-hero .hero-badge { color: #fff; border-color: rgba(255,255,255,0.35); }

.accent-blue { background: linear-gradient(135deg, #003b8e, #0066cc); }
.accent-cyan { background: linear-gradient(135deg, #0077a8, #00aeef); }
.accent-orange,
.accent-black { background: linear-gradient(135deg, #0f0f0f, #2d2d2d); }
.accent-purple { background: linear-gradient(135deg, #003b8e, #0066cc); }
.accent-teal { background: linear-gradient(135deg, #0e7490, #17a2b8); }
.accent-green { background: linear-gradient(135deg, #166534, #28a745); }
.accent-crm { background: linear-gradient(135deg, #0c1f3d, #152a4a); }
.accent-indigo { background: linear-gradient(135deg, #003b8e, #0066cc); }

.page-hero-lead { max-width: 42rem; }

.price-badge {
  display: inline-block;
  background: var(--accent-black);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}

/* Trust */
.trust-bar {
  padding: 2rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.trust-item strong { font-size: 0.9rem; color: var(--navy); font-weight: 700; }
.trust-item span { font-size: 0.8rem; color: var(--text-muted); }

/* Sections */
.section-services, .section-why { padding: 4.5rem 0; }
.section-alt { padding: 4.5rem 0; background: var(--bg-white); }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
.section-lead { color: var(--text-muted); max-width: 42rem; margin: 0 auto 2.5rem; font-size: 0.95rem; }

/* Colorful service cards */
.service-card {
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid rgba(255,255,255,0.5);
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }

.service-card.accent-blue { background: linear-gradient(160deg, #003b8e, #0056c9); }
.service-card.accent-orange,
.service-card.accent-black { background: linear-gradient(160deg, #0f0f0f, #333); }
.service-card.accent-purple { background: linear-gradient(160deg, #003b8e, #0056c9); }
.service-card.accent-teal { background: linear-gradient(160deg, #0e7490, #06b6d4); }
.service-card.accent-crm { background: linear-gradient(160deg, #0c1f3d, #152a4a); }
.service-card.accent-indigo { background: linear-gradient(160deg, #003b8e, #0056c9); }

/* Home grid cards */
.card-web { background: linear-gradient(160deg, #003b8e, #0066cc) !important; }
.card-aspnet { background: linear-gradient(160deg, #003b8e, #0066cc) !important; }
.card-cpanel { background: linear-gradient(160deg, #0f0f0f, #333) !important; }
.card-erp { background: linear-gradient(160deg, #0e7490, #06b6d4) !important; }
.card-crm { background: linear-gradient(160deg, #0c1f3d, #152a4a) !important; border: 1px solid rgba(212,160,23,0.35); }
.card-wordpress { background: linear-gradient(160deg, #003b8e, #0066cc) !important; }
.service-card.accent-cyan { background: linear-gradient(160deg, #0077a8, #00aeef); }
.card-cloud { background: linear-gradient(160deg, #0077a8, #00aeef) !important; }
.card-plans { background: linear-gradient(160deg, #1a2744, #003b8e) !important; border: 2px solid var(--accent-black); }

.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: #fff; }
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.88); margin-bottom: 1rem; line-height: 1.6; }

.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.service-link { font-weight: 700; font-size: 0.9rem; color: #fff !important; opacity: 0.95; }
.service-link:hover { opacity: 1; color: #fff !important; text-decoration: underline; }

/* Plans */
.section-plans { padding: 4rem 0; }

.plan-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.plan-card:hover { transform: translateY(-4px); border-color: var(--cyan); }

.plan-free { border-color: var(--green); }
.plan-basic { border-color: var(--cyan); }
.plan-pro { border-color: var(--accent-black); transform: scale(1.02); z-index: 1; }
.plan-enterprise { border-color: var(--navy); }

.plan-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-page);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.plan-tag-popular { background: var(--accent-black); color: #fff; }

.plan-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.plans-storage-note { max-width: 42rem; margin-left: auto; margin-right: auto; color: #5a6a7a; font-size: 0.95rem; line-height: 1.6; }
.plans-platform-note {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 2rem;
  background: #f4f7fb;
  border: 1px solid var(--border-light);
  border-radius: 12px;
}
.plans-platform-note h3 { color: var(--navy); font-weight: 700; }
.plan-price { font-size: 2.25rem; font-weight: 800; color: var(--accent-black); margin-bottom: 0.5rem; }
.plan-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.plan-features li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  border-bottom: 1px solid var(--border-light);
}
.plan-features li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* Security */
.section-security { padding: 4.5rem 0; background: var(--navy-dark); color: #fff; }
.section-security h2, .section-security h3, .section-security h4 { color: #fff; }
.section-security .section-lead { color: #a8b8cc; }

.security-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

.security-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.security-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.security-card p { color: #a8b8cc; font-size: 0.88rem; margin: 0; }

.security-detail {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.security-detail p { color: #a8b8cc; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 0.35rem 0; color: var(--text-muted); font-size: 0.9rem; }
.check-list li::before { content: "✓ "; color: var(--green); font-weight: 700; }

.check-list-columns { columns: 2; column-gap: 2rem; }
@media (max-width: 768px) { .check-list-columns { columns: 1; } }

/* Brand preview ERP/CRM */
.brand-preview {
  border-radius: 12px;
  padding: 2rem;
  color: #fff;
  text-align: center;
}

.brand-preview-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.brand-preview-logo {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.75rem;
}

/* Feature cards home */
.feature-card {
  padding: 1.5rem;
  border-left: 4px solid var(--accent-black);
  background: var(--bg-white);
  border-radius: 0 10px 10px 0;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.feature-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.highlight-box {
  background: linear-gradient(135deg, #003b8e, #00aeef);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.highlight-box h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.highlight-box p { color: rgba(255,255,255,0.9); max-width: 36rem; margin: 0 auto 1.5rem; }

.quick-link {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.quick-link:hover { border-color: var(--accent-black); color: var(--accent-black); background: #f5f5f5; }

/* CTA */
.section-cta { padding: 4rem 0; color: #fff; }
.section-cta h2 { font-weight: 800; margin-bottom: 1rem; }
.section-cta .section-lead { color: rgba(255,255,255,0.9); }

/* Footer — solid white */
.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
}
.site-footer h6 { color: var(--navy); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; max-width: 20rem; color: var(--text-muted); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--navy); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); font-size: 0.85rem; color: var(--text-muted); }
.footer-logo-wrap {
  display: inline-block;
  background: transparent;
  padding: 0.35rem 0;
  border: none;
  border-radius: 0;
  margin-bottom: 1rem;
  box-shadow: none;
}

.logo-footer {
  max-width: 220px;
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
}

/* Cookie */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
  background: var(--bg-white); border-top: 1px solid var(--border-light);
  padding: 1rem 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-content p { margin: 0; color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.cookie-actions { display: flex; gap: 0.5rem; }

.section-privacy { padding: 4rem 0; }
.section-privacy h1 { color: var(--navy); font-weight: 800; }
.page-static .section-lead { max-width: 42rem; margin-left: auto; margin-right: auto; }
.contact-card {
    background: #fff;
    border: 1px solid rgba(12, 31, 61, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(12, 31, 61, 0.06);
}
.contact-card h2 { font-size: 1.15rem; color: var(--navy); font-weight: 700; }
.contact-channel-tag, .contact-badge-247 {
    display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; border-radius: 999px; padding: 0.25rem 0.65rem; margin-bottom: 0.75rem;
}
.contact-channel-tag { background: rgba(12, 31, 61, 0.08); color: var(--navy); }
.contact-badge-247 { background: #06b6d4; color: #fff; }
.contact-card-noc { border-color: rgba(6, 182, 212, 0.35); box-shadow: 0 8px 28px rgba(6, 182, 212, 0.12); }
.contact-card-note { font-size: 0.85rem; color: var(--text-muted); margin: 1rem 0 0; }
.btn-noc { background: #06b6d4; border-color: #06b6d4; color: #fff; font-weight: 600; }
.btn-noc:hover { background: #0891b2; border-color: #0891b2; color: #fff; }
.contact-guide-box {
    background: #fff; border: 1px solid rgba(12, 31, 61, 0.1); border-radius: 12px;
    padding: 1.5rem; height: 100%;
}
.contact-guide-box h3 { font-size: 1.05rem; color: var(--navy); font-weight: 700; }
.contact-guide-box ul { margin: 0; padding-left: 1.2rem; color: var(--text-muted); font-size: 0.95rem; }
.contact-guide-box li { margin-bottom: 0.4rem; }
.contact-guide-noc { border-color: rgba(6, 182, 212, 0.3); }
.section-noc {
    background: linear-gradient(135deg, #0c1f3d 0%, #152a4a 100%);
    color: #fff; padding: 4rem 0;
}
.section-noc h2 { font-weight: 800; margin-bottom: 1rem; }
.noc-eyebrow {
    display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #7dd3fc; margin-bottom: 0.75rem;
}
.noc-lead { color: rgba(255,255,255,0.88); max-width: 28rem; }
.noc-panel {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; padding: 1.35rem; height: 100%;
}
.noc-panel h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.noc-panel ul { margin: 0; padding-left: 1.2rem; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.noc-panel li { margin-bottom: 0.35rem; }
.about-list { padding-left: 1.25rem; }
.about-list li { margin-bottom: 0.5rem; }

.hero-stats li strong { display: block; font-size: 0.95rem; color: #fff; }
.hero-stats li span { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.plan-price-tier { font-size: 0.95rem; color: var(--text-muted); border-bottom: 1px solid var(--border-light); padding-bottom: 0.35rem; }
.plan-price-tier strong { color: var(--accent-black); font-size: 1.05rem; }

/* ── ERP landing ── */
.erp-hero { overflow: hidden; }
.erp-hero-grid {
  position: absolute; inset: 0; opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.erp-stat-pills {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem;
}
.erp-stat-pill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  min-width: 8.5rem;
}
.erp-stat-pill-value {
  display: block; font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.2;
}
.erp-stat-pill-label {
  display: block; font-size: 0.78rem; color: rgba(255,255,255,0.82); margin-top: 0.15rem;
}
.erp-section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #06b6d4; background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25); border-radius: 999px; padding: 0.3rem 0.85rem;
  margin-bottom: 0.75rem;
}

.erp-arch-block {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.35rem 1rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.erp-arch-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,59,142,0.1);
}
.erp-arch-icon {
  width: 3rem; height: 3rem; margin: 0 auto 0.85rem;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.erp-arch-icon svg { width: 1.5rem; height: 1.5rem; }
.erp-arch-block-1 .erp-arch-icon { background: rgba(6,182,212,0.12); color: #0891b2; }
.erp-arch-block-2 .erp-arch-icon { background: rgba(0,59,142,0.1); color: #003b8e; }
.erp-arch-block-3 .erp-arch-icon { background: rgba(34,197,94,0.12); color: #16a34a; }
.erp-arch-block-4 .erp-arch-icon { background: rgba(0,59,142,0.12); color: #003b8e; }
.erp-arch-block strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.4rem; }
.erp-arch-block span { display: block; font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

.erp-modules-section { position: relative; overflow: hidden; }
.erp-modules-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0,174,239,0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0,59,142,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.erp-module-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.erp-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,59,142,0.12);
}
.erp-module-head {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1.25rem 1.35rem 1rem;
  border-bottom: 1px solid var(--border-light);
}
.erp-module-icon {
  flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.erp-module-icon svg { width: 1.35rem; height: 1.35rem; }
.erp-module-card h4 {
  margin: 0; color: var(--navy); font-weight: 800; font-size: 1rem;
  letter-spacing: 0; text-transform: none;
}
.erp-mod-sales .erp-module-head { background: linear-gradient(135deg, rgba(34,197,94,0.08), transparent); }
.erp-mod-sales .erp-module-icon { background: rgba(34,197,94,0.15); color: #16a34a; }
.erp-mod-purchases .erp-module-head { background: linear-gradient(135deg, rgba(249,115,22,0.08), transparent); }
.erp-mod-purchases .erp-module-icon { background: rgba(249,115,22,0.15); color: #ea580c; }
.erp-mod-inventory .erp-module-head { background: linear-gradient(135deg, rgba(0,174,239,0.1), transparent); }
.erp-mod-inventory .erp-module-icon { background: rgba(0,174,239,0.15); color: #0077a8; }
.erp-mod-banks .erp-module-head { background: linear-gradient(135deg, rgba(99,102,241,0.08), transparent); }
.erp-mod-banks .erp-module-icon { background: rgba(0,59,142,0.15); color: #003b8e; }
.erp-mod-accounting .erp-module-head { background: linear-gradient(135deg, rgba(0,59,142,0.08), transparent); }
.erp-mod-accounting .erp-module-icon { background: rgba(0,59,142,0.12); color: #003b8e; }
.erp-mod-hr .erp-module-head { background: linear-gradient(135deg, rgba(168,85,247,0.08), transparent); }
.erp-mod-hr .erp-module-icon { background: rgba(168,85,247,0.15); color: #9333ea; }
.erp-mod-settings .erp-module-head { background: linear-gradient(135deg, rgba(100,116,139,0.08), transparent); }
.erp-mod-settings .erp-module-icon { background: rgba(100,116,139,0.15); color: #475569; }
.erp-mod-reports .erp-module-head { background: linear-gradient(135deg, rgba(6,182,212,0.1), transparent); }
.erp-mod-reports .erp-module-icon { background: rgba(6,182,212,0.15); color: #0891b2; }

.erp-module-list {
  list-style: none; margin: 0; padding: 1rem 1.35rem 1.25rem;
}
.erp-module-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.86rem; color: var(--text-muted); line-height: 1.5;
  padding: 0.4rem 0; border-bottom: 1px dashed rgba(0,0,0,0.05);
}
.erp-module-list li:last-child { border-bottom: none; }
.erp-module-check {
  flex-shrink: 0; width: 1.1rem; height: 1.1rem; margin-top: 0.15rem;
  border-radius: 50%; background: rgba(6,182,212,0.15);
  position: relative;
}
.erp-module-check::after {
  content: ""; position: absolute; left: 0.38rem; top: 0.2rem;
  width: 0.28rem; height: 0.5rem;
  border: solid #0891b2; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.erp-kpi-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 1.35rem; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.erp-kpi-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,59,142,0.08); }
.erp-kpi-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #003b8e, #00aeef);
}
.erp-kpi-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 10px;
  background: rgba(0,174,239,0.1); color: #0077a8;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem;
}
.erp-kpi-icon svg { width: 1.25rem; height: 1.25rem; }
.erp-kpi-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.erp-kpi-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.erp-kpi-1::before { background: linear-gradient(90deg, #16a34a, #4ade80); }
.erp-kpi-1 .erp-kpi-icon { background: rgba(34,197,94,0.12); color: #16a34a; }
.erp-kpi-2::before { background: linear-gradient(90deg, #ea580c, #fb923c); }
.erp-kpi-2 .erp-kpi-icon { background: rgba(249,115,22,0.12); color: #ea580c; }
.erp-kpi-3::before { background: linear-gradient(90deg, #003b8e, #00aeef); }
.erp-kpi-4::before { background: linear-gradient(90deg, #003b8e, #00aeef); }
.erp-kpi-4 .erp-kpi-icon { background: rgba(0,59,142,0.12); color: #003b8e; }
.erp-kpi-5::before { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.erp-kpi-6::before { background: linear-gradient(90deg, #dc2626, #f87171); }
.erp-kpi-6 .erp-kpi-icon { background: rgba(220,38,38,0.1); color: #dc2626; }

.erp-role-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 1.75rem 1.5rem; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.erp-role-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,59,142,0.1); }
.erp-role-avatar {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.erp-role-avatar svg { width: 1.6rem; height: 1.6rem; }
.erp-role-company .erp-role-avatar { background: rgba(0,59,142,0.1); color: #003b8e; }
.erp-role-admin .erp-role-avatar { background: rgba(6,182,212,0.15); color: #0891b2; }
.erp-role-user .erp-role-avatar { background: rgba(34,197,94,0.12); color: #16a34a; }
.erp-role-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.erp-role-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.erp-int-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 1.15rem 1.25rem;
  border-left: 4px solid #06b6d4;
  transition: transform 0.2s, box-shadow 0.2s;
}
.erp-int-card:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.erp-int-badge {
  display: inline-block; font-size: 0.82rem; font-weight: 800; color: var(--navy);
  margin-bottom: 0.35rem;
}
.erp-int-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.erp-int-1 { border-left-color: #635bff; }
.erp-int-2 { border-left-color: #003b8e; }
.erp-int-3 { border-left-color: #003b8e; }
.erp-int-4 { border-left-color: #0891b2; }
.erp-int-5 { border-left-color: #ea580c; }
.erp-int-6 { border-left-color: #16a34a; }
.erp-int-7 { border-left-color: #00aeef; }

.erp-chip-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 1.25rem 1.35rem; position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.erp-chip-card:hover { transform: translateY(-3px); border-color: rgba(0,174,239,0.35); }
.erp-chip-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  color: #00aeef; opacity: 0.7; display: block; margin-bottom: 0.35rem;
}
.erp-chip-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.erp-chip-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* IGR ERP brand palette overrides */
.erp-hero-brand { background: linear-gradient(135deg, #003b8e 0%, #0056c9 45%, #0077a8 75%, #00aeef 100%); overflow: hidden; }
.erp-hero-glow { background: radial-gradient(ellipse 60% 50% at 75% 30%, rgba(0,174,239,0.35), transparent 70%); }
.erp-hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.erp-hero-orb-1 { width: 280px; height: 280px; top: -60px; right: 10%; background: rgba(0,174,239,0.25); }
.erp-hero-orb-2 { width: 200px; height: 200px; bottom: 10%; left: 5%; background: rgba(251,191,36,0.15); }
.erp-logo-light-wrap {
  display: inline-block; background: #fff; border-radius: 14px;
  padding: 0.75rem 1.1rem; box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.8);
}
.erp-logo-light-wrap-lg { padding: 1rem 1.35rem; margin-bottom: 1.25rem; }
.erp-hero-logo { max-width: 220px; height: auto; margin-bottom: 0; filter: none; display: block; }
.erp-hero-badge { background: rgba(0,174,239,0.2); border-color: rgba(0,174,239,0.5); }
.erp-price-badge { background: linear-gradient(135deg, rgba(251,191,36,0.9), rgba(234,88,12,0.85)); color: #fff; border: none; }
.erp-btn-glow { box-shadow: 0 4px 24px rgba(0,174,239,0.45); }
.erp-hero-visual { position: relative; min-height: 300px; }
.erp-growth-card {
  background: #fff; border-radius: 18px; padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 16px 40px rgba(0,59,142,0.15);
  border: 1px solid rgba(0,174,239,0.12);
}
.erp-growth-card-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; font-weight: 700; color: #003b8e; margin-bottom: 0.5rem; }
.erp-growth-trend { background: linear-gradient(135deg, #fbbf24, #ea580c); color: #fff; padding: 0.15rem 0.55rem; border-radius: 999px; font-size: 0.72rem; }
.erp-growth-chart { width: 100%; height: auto; display: block; }
.erp-growth-metrics { display: flex; gap: 1rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(0,59,142,0.1); }
.erp-growth-metrics div { flex: 1; }
.erp-growth-metrics strong { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; }
.erp-growth-metrics span { font-size: 1rem; font-weight: 800; color: #003b8e; }
.erp-pin-float { position: absolute; bottom: 0; right: 0; width: 64px; opacity: 0.9; }
.erp-pin-float svg { width: 100%; height: auto; }
.erp-stat-pill { border-color: rgba(0,174,239,0.35); }
.erp-section-tag { color: #003b8e; background: linear-gradient(135deg, rgba(0,174,239,0.12), rgba(0,59,142,0.08)); border-color: rgba(0,174,239,0.3); }
.erp-arch-hub { position: relative; width: 140px; height: 140px; margin: 0 auto 2rem; }
.erp-arch-hub-core { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; padding: 0.5rem; box-shadow: 0 8px 32px rgba(0,59,142,0.1), 0 0 0 4px rgba(0,174,239,0.12); }
.erp-arch-hub-core img { max-width: 90px; height: auto; }
.erp-arch-hub-line { position: absolute; background: linear-gradient(90deg, #00aeef, #003b8e); border-radius: 2px; }
.erp-hub-t { width: 2px; height: 50px; top: -50px; left: 50%; transform: translateX(-50%); }
.erp-hub-b { width: 2px; height: 50px; bottom: -50px; left: 50%; transform: translateX(-50%); }
.erp-hub-l { width: 50px; height: 2px; left: -50px; top: 50%; transform: translateY(-50%); }
.erp-hub-r { width: 50px; height: 2px; right: -50px; top: 50%; transform: translateY(-50%); }
.erp-modules-section { background: linear-gradient(180deg, #f8fbff 0%, #fff 100%); }
.erp-book-card { position: relative; padding-left: 18px; min-height: 100%; }
.erp-book-spine {
  position: absolute; left: 0; top: 8px; bottom: 8px; width: 16px; z-index: 2;
  background: linear-gradient(180deg, #00aeef 0%, #003b8e 60%, #002a66 100%);
  border-radius: 4px 0 0 4px; box-shadow: inset -3px 0 6px rgba(0,0,0,0.2), 2px 0 4px rgba(0,59,142,0.12);
}
.erp-book-spine::after { content: ""; position: absolute; top: 12%; bottom: 12%; left: 4px; width: 2px; background: rgba(255,255,255,0.2); border-radius: 1px; }
.erp-book-shadow { position: absolute; left: 14px; right: 8px; bottom: -4px; height: 8px; background: rgba(0,59,142,0.08); border-radius: 0 0 8px 8px; filter: blur(4px); transition: opacity 0.25s; }
.erp-book-body {
  position: relative; background: #fff; border: 1px solid rgba(0,59,142,0.1); border-left: none;
  border-radius: 0 14px 14px 0; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,59,142,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.erp-book-card:hover .erp-book-body { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,59,142,0.14); }
.erp-book-card:hover .erp-book-shadow { opacity: 0.5; }
.erp-book-tab {
  position: absolute; top: 0; right: 1.25rem; z-index: 3;
  background: linear-gradient(135deg, #fbbf24, #ea580c); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem 0.5rem; border-radius: 0 0 8px 8px; box-shadow: 0 4px 12px rgba(234,88,12,0.35);
}
.erp-book-cover {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; padding: 1.35rem 1.35rem 1rem;
  background: linear-gradient(135deg, rgba(0,59,142,0.04) 0%, rgba(0,174,239,0.06) 100%);
  border-bottom: 2px solid rgba(0,174,239,0.15); position: relative;
}
.erp-book-cover::before {
  content: ""; position: absolute; inset: 0; opacity: 0.04;
  background: repeating-linear-gradient(0deg, #003b8e 0px, #003b8e 1px, transparent 1px, transparent 6px); pointer-events: none;
}
.erp-book-mini-chart { margin-left: auto; display: flex; align-items: flex-end; gap: 3px; width: 52px; height: 36px; position: relative; }
.erp-book-mini-chart span { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, #fbbf24, #ea580c); min-height: 4px; }
.erp-book-chart-line { position: absolute; bottom: 60%; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #00aeef, #003b8e); transform: rotate(-12deg); transform-origin: left; }
.erp-book-cover h4 { margin: 0; color: #003b8e; font-weight: 800; font-size: 1.05rem; flex: 1; min-width: 120px; }
.erp-book-cover .erp-module-icon { background: linear-gradient(135deg, rgba(0,174,239,0.2), rgba(0,59,142,0.15)); color: #003b8e; }
.erp-mod-purchases .erp-book-spine { background: linear-gradient(180deg, #fbbf24, #ea580c); }
.erp-mod-purchases .erp-module-icon { background: rgba(251,191,36,0.2); color: #ea580c; }
.erp-mod-inventory .erp-book-spine { background: linear-gradient(180deg, #38bdf8, #0077a8); }
.erp-mod-banks .erp-book-spine { background: linear-gradient(180deg, #003b8e, #001f4d); }
.erp-mod-accounting .erp-book-spine { background: linear-gradient(180deg, #0056c9, #003b8e); }
.erp-mod-hr .erp-book-spine { background: linear-gradient(180deg, #00aeef, #0056c9); }
.erp-mod-settings .erp-book-spine { background: linear-gradient(180deg, #64748b, #334155); }
.erp-mod-reports .erp-book-spine { background: linear-gradient(180deg, #f59e0b, #003b8e); }
.erp-book-pages { background: linear-gradient(90deg, #fafbfc 0%, #fff 3%, #fff 97%, #f5f7fa 100%); }
.erp-kpi-chart { display: flex; align-items: flex-end; gap: 4px; height: 48px; margin-bottom: 1rem; padding: 0 0.25rem; }
.erp-kpi-chart span { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #fbbf24 0%, #ea580c 100%); opacity: 0.85; min-height: 8px; }
.erp-kpi-card:hover .erp-kpi-chart span { opacity: 1; }
.erp-brand-showcase {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border: 1px solid rgba(0,59,142,0.1); border-radius: 20px;
  padding: 2rem; text-align: center;
  box-shadow: 0 12px 36px rgba(0,59,142,0.08);
}
.erp-brand-logo { max-width: 200px; height: auto; margin-bottom: 0; filter: none; display: block; }
.erp-brand-preview-card { background: rgba(255,255,255,0.95); border-radius: 12px; padding: 1.25rem; text-align: left; }
.erp-brand-preview-bar { height: 8px; border-radius: 4px; margin-bottom: 1rem; background: linear-gradient(90deg, #003b8e, #00aeef, #fbbf24); }
.erp-brand-preview-chart { display: flex; align-items: flex-end; gap: 6px; height: 64px; margin-bottom: 1rem; }
.erp-brand-preview-chart span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #fbbf24, #ea580c); }
.erp-brand-preview-chart span:nth-child(1) { height: 35%; }
.erp-brand-preview-chart span:nth-child(2) { height: 55%; }
.erp-brand-preview-chart span:nth-child(3) { height: 75%; }
.erp-brand-preview-chart span:nth-child(4) { height: 50%; }
.erp-brand-preview-chart span:nth-child(5) { height: 90%; }
.erp-brand-preview-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.erp-cta-brand { background: linear-gradient(135deg, #003b8e 0%, #0077a8 50%, #00aeef 100%); }
.erp-cta-brand .section-lead { color: rgba(255,255,255,0.9); }
.erp-cta-brand h2 { color: #fff; }

/* ERP analytics console — unified UI mock */
.erp-console {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,59,142,0.12);
  box-shadow: 0 20px 50px rgba(0,59,142,0.12);
}
.erp-console-titlebar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1rem; background: #f1f5f9;
  border-bottom: 1px solid rgba(0,59,142,0.08);
  font-size: 0.72rem; font-weight: 600; color: #475569;
}
.erp-console-dots { display: flex; gap: 5px; }
.erp-console-dots i {
  width: 9px; height: 9px; border-radius: 50%; display: block;
  background: #cbd5e1;
}
.erp-console-dots i:first-child { background: #f87171; }
.erp-console-dots i:nth-child(2) { background: #fbbf24; }
.erp-console-dots i:nth-child(3) { background: #4ade80; }
.erp-console-title { flex: 1; color: #003b8e; font-weight: 700; }
.erp-console-live {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: #16a34a; background: rgba(34,197,94,0.12); padding: 0.2rem 0.5rem; border-radius: 999px;
}
.erp-console-period { font-size: 0.68rem; color: #64748b; }
.erp-console-body { display: flex; min-height: 280px; }
.erp-console-body-flat { min-height: auto; }
.erp-console-nav {
  width: 48px; background: #003b8e; padding: 1rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
}
.erp-console-nav span {
  width: 22px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25);
}
.erp-console-nav span.active { background: #00aeef; width: 28px; }
.erp-console-main { flex: 1; padding: 1rem 1.15rem; background: #fafbfc; }
.erp-console-main-wide { padding: 1.25rem; }
.erp-console-kpis { display: flex; gap: 0.65rem; margin-bottom: 0.85rem; }
.erp-console-kpi {
  flex: 1; background: #fff; border: 1px solid rgba(0,59,142,0.08);
  border-radius: 10px; padding: 0.55rem 0.65rem;
}
.erp-console-kpi small { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; }
.erp-console-kpi strong { display: block; font-size: 1rem; color: #003b8e; font-weight: 800; }
.erp-console-kpi em { font-size: 0.68rem; color: #64748b; font-style: normal; }
.erp-console-kpi em.up { color: #16a34a; }
.erp-console-chart-area {
  background: #fff; border: 1px solid rgba(0,59,142,0.08);
  border-radius: 10px; padding: 0.5rem; margin-bottom: 0.75rem; height: 110px;
}
.erp-console-chart-area svg { width: 100%; height: 100%; display: block; }
.erp-console-chart-wide { height: 160px; margin-bottom: 1.25rem; padding: 0.75rem 1rem; }
.erp-console-chart-label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.5rem; font-size: 0.75rem; font-weight: 700; color: #003b8e;
}
.erp-console-chart-label em { font-style: normal; font-weight: 500; color: #64748b; font-size: 0.68rem; }
.erp-console-table { font-size: 0.72rem; }
.erp-console-row {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.7fr; gap: 0.5rem;
  padding: 0.45rem 0; border-bottom: 1px solid rgba(0,59,142,0.06);
  color: #334155;
}
.erp-console-row.head { font-weight: 700; color: #64748b; font-size: 0.65rem; text-transform: uppercase; }
.erp-console-row .ok { color: #16a34a; font-weight: 600; }
.erp-console-row .warn { color: #ea580c; font-weight: 600; }
.erp-console-metrics-grid { display: flex; flex-direction: column; gap: 0.5rem; }
.erp-insight-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
}
.erp-insight-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.85rem; align-items: center;
  padding: 1rem 1.1rem; border-radius: 12px; background: #fff;
  border: 1px solid #e2e8f0; transition: border-color 0.2s, box-shadow 0.2s;
}
.erp-insight-card:hover { border-color: rgba(0,174,239,0.35); box-shadow: 0 6px 20px rgba(0,59,142,0.06); }
.erp-insight-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.erp-insight-icon svg { width: 1.2rem; height: 1.2rem; }
.erp-insight-1 .erp-insight-icon { background: rgba(34,197,94,0.12); color: #16a34a; }
.erp-insight-2 .erp-insight-icon { background: rgba(249,115,22,0.12); color: #ea580c; }
.erp-insight-3 .erp-insight-icon { background: rgba(0,59,142,0.1); color: #003b8e; }
.erp-insight-4 .erp-insight-icon { background: rgba(0,59,142,0.12); color: #003b8e; }
.erp-insight-5 .erp-insight-icon { background: rgba(6,182,212,0.15); color: #0891b2; }
.erp-insight-6 .erp-insight-icon { background: rgba(220,38,38,0.1); color: #dc2626; }
.erp-insight-body h4 { font-size: 0.88rem; font-weight: 700; color: #003b8e; margin: 0 0 0.15rem; }
.erp-insight-body p { font-size: 0.78rem; color: #64748b; margin: 0; line-height: 1.4; }
.erp-insight-val { text-align: right; min-width: 4.5rem; }
.erp-insight-val strong { display: block; font-size: 1.05rem; color: #003b8e; font-weight: 800; }
.erp-insight-val span { font-size: 0.68rem; color: #64748b; }
.erp-insight-val span.up { color: #16a34a; }
.erp-insight-val span.warn { color: #ea580c; }
@media (max-width: 767px) {
  .erp-insight-grid { grid-template-columns: 1fr; }
}
.erp-metric-row {
  display: grid; grid-template-columns: 1fr auto 72px; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid rgba(0,59,142,0.08);
  border-radius: 10px; padding: 0.85rem 1rem;
}
.erp-metric-info h4 { font-size: 0.88rem; font-weight: 700; color: #003b8e; margin: 0 0 0.15rem; }
.erp-metric-info p { font-size: 0.78rem; color: #64748b; margin: 0; line-height: 1.4; }
.erp-metric-data { text-align: right; }
.erp-metric-data strong { display: block; font-size: 1.1rem; color: #003b8e; font-weight: 800; }
.erp-metric-data span { font-size: 0.68rem; color: #64748b; }
.erp-metric-data span.up { color: #16a34a; }
.erp-metric-spark { height: 28px; color: #00aeef; }
.erp-metric-spark svg { width: 100%; height: 100%; }
.erp-spark-2 { color: #ea580c; }
.erp-spark-6 { color: #dc2626; }
.erp-mod-pill {
  margin-left: auto; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  color: #003b8e; background: rgba(0,174,239,0.1); padding: 0.25rem 0.55rem; border-radius: 999px;
}
.erp-console-mini { box-shadow: none; border: 1px solid rgba(0,59,142,0.1); }
.erp-console-mini-body { padding: 0.85rem 1rem; background: #fafbfc; }
.erp-console-mini-kpi {
  display: flex; gap: 0.5rem; margin-bottom: 0.65rem;
}
.erp-console-mini-kpi span {
  flex: 1; text-align: center; font-size: 0.68rem; font-weight: 600; color: #003b8e;
  background: #fff; border: 1px solid rgba(0,59,142,0.08); border-radius: 6px; padding: 0.35rem;
}
.erp-console-mini-bar {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, #003b8e, #00aeef);
}

/* IGR CRM landing — navy #0c1f3d + gold #d4a017 */
.crm-page .page-hero,
.crm-page .section-cta.crm-cta,
.crm-hero-brand,
.page-hero.crm-hero-brand {
  background: linear-gradient(135deg, #0c1f3d 0%, #152a4a 50%, #0c1f3d 100%) !important;
}
.crm-hero { position: relative; overflow: hidden; }
.crm-hero-glow {
  background: radial-gradient(ellipse at 75% 25%, rgba(212,160,23,0.18) 0%, transparent 55%);
}
.crm-hero-badge {
  background: rgba(212,160,23,0.15); border-color: rgba(212,160,23,0.35); color: #d4a017;
}
.crm-price-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(212,160,23,0.35); color: #f5e6c0;
}
.crm-hero .btn-accent {
  background: #d4a017; border-color: #d4a017; color: #0c1f3d; font-weight: 700;
}
.crm-hero .btn-accent:hover {
  background: #e6b422; border-color: #e6b422; color: #0c1f3d;
}
.crm-stat-pills .erp-stat-pill { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); }
.crm-stat-pills .erp-stat-pill-value { color: #d4a017; }
.crm-stat-pills .erp-stat-pill-label { color: rgba(255,255,255,0.75); }
.crm-dual-preview { display: flex; flex-direction: column; gap: 1rem; }
.crm-preview-card {
  border-radius: 14px; padding: 1rem 1.15rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.crm-preview-hero-mock {
  background: linear-gradient(135deg, #0c1f3d, #152a4a);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.35rem;
}
.crm-preview-eyebrow {
  display: block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #d4a017; margin-bottom: 0.4rem;
}
.crm-preview-headline {
  display: block; font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.35rem;
}
.crm-preview-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin: 0 0 0.85rem; line-height: 1.45; }
.crm-preview-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.crm-preview-pills span {
  font-size: 0.62rem; font-weight: 600; color: #fff;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 0.25rem 0.55rem;
}
.crm-preview-panel {
  background: rgba(255,255,255,0.96); border: 1px solid rgba(12,31,61,0.08);
}
.crm-preview-tag {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #0c1f3d; display: block; margin-bottom: 0.65rem;
}
.crm-preview-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.crm-preview-kpis div {
  background: #f4f6f9; border: 1px solid rgba(12,31,61,0.08); border-radius: 8px; padding: 0.5rem; text-align: center;
}
.crm-preview-kpis small { display: block; font-size: 0.62rem; color: #64748b; }
.crm-preview-kpis strong { font-size: 0.95rem; color: #0c1f3d; }
.crm-pillar-card {
  background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 16px;
  padding: 1.75rem 1.5rem; border-top: 4px solid #d4a017;
}
.crm-pillar-2 { border-top-color: #0c1f3d; }
.crm-pillar-card h3 { font-size: 1.1rem; font-weight: 800; color: #0c1f3d; margin-bottom: 0.5rem; }
.crm-pillar-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.crm-shop-card .erp-chip-num { color: #d4a017; background: rgba(212,160,23,0.12); }
.crm-shop-card:hover { border-color: rgba(212,160,23,0.4); }
.crm-mod-orders .erp-book-spine { background: linear-gradient(180deg, #0c1f3d, #152a4a); }
.crm-mod-pos .erp-book-spine { background: linear-gradient(180deg, #152a4a, #1e3a5f); }
.crm-mod-inventory .erp-book-spine { background: linear-gradient(180deg, #0891b2, #22d3ee); }
.crm-mod-finance .erp-book-spine { background: linear-gradient(180deg, #0c1f3d, #d4a017); }
.crm-mod-crm .erp-book-spine { background: linear-gradient(180deg, #003b8e, #00aeef); }
.crm-mod-mgmt .erp-book-spine { background: linear-gradient(180deg, #d4a017, #e6b422); }
.crm-flow-card {
  background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 14px;
  padding: 1.5rem; position: relative;
}
.crm-flow-num {
  display: inline-flex; width: 2rem; height: 2rem; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(212,160,23,0.15); color: #0c1f3d;
  font-weight: 800; font-size: 0.9rem; margin-bottom: 0.75rem;
}
.crm-flow-card h4 { font-size: 1rem; font-weight: 700; color: #0c1f3d; margin-bottom: 0.4rem; }
.crm-flow-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.crm-role-avatar { background: rgba(12,31,61,0.1) !important; color: #0c1f3d !important; }
.crm-brand-preview {
  background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 16px;
  padding: 1.75rem; text-align: center;
}
.crm-brand-swatch { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 1rem; }
.crm-brand-swatch span { width: 3rem; height: 3rem; border-radius: 10px; }
.swatch-primary { background: #0c1f3d; }
.swatch-accent { background: #d4a017; }
.swatch-light { background: #f4f6f9; border: 1px solid rgba(12,31,61,0.1); }
.crm-brand-preview p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.crm-inc-card { display: flex; flex-direction: column; text-align: center; }
.crm-inc-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: #0c1f3d; }
.crm-inc-card .plan-desc { flex: 1; }
.crm-inc-card .btn-accent {
  background: #d4a017; border-color: #d4a017; color: #0c1f3d; font-weight: 700;
}
.crm-inc-card .btn-accent:hover { background: #e6b422; border-color: #e6b422; color: #0c1f3d; }
.crm-cta .btn-light { color: #0c1f3d; font-weight: 700; }

/* CRM page — override shared ERP greens/cyans */
.crm-page .check-list li::before { color: #d4a017; }
.crm-page .section-header h2 { color: #0c1f3d; }
.crm-page .erp-module-check { background: rgba(212,160,23,0.15); }
.crm-page .erp-module-check::after { border-color: #0c1f3d; }
.crm-page .erp-book-tab {
  background: linear-gradient(135deg, #d4a017, #b8860b); box-shadow: 0 4px 12px rgba(212,160,23,0.35);
}
.crm-page .erp-book-cover h4,
.crm-page .erp-book-body h4 { color: #0c1f3d; }
.crm-page .erp-book-cover {
  background: linear-gradient(135deg, rgba(12,31,61,0.04) 0%, rgba(212,160,23,0.08) 100%);
  border-bottom-color: rgba(212,160,23,0.2);
}
.crm-page .erp-chip-card:hover { border-color: rgba(212,160,23,0.4); }
.crm-page .erp-chip-num { color: #d4a017; background: rgba(212,160,23,0.12); opacity: 1; }
.crm-page .erp-int-badge { color: #0c1f3d; }
.crm-page .crm-crm-1 { border-left-color: #0c1f3d; }
.crm-page .crm-crm-2 { border-left-color: #152a4a; }
.crm-page .crm-crm-3 { border-left-color: #d4a017; }
.crm-page .crm-crm-4 { border-left-color: #1e3a5f; }
.crm-page .crm-crm-5 { border-left-color: #b8860b; }
.crm-page .crm-crm-6 { border-left-color: #0891b2; }
.crm-page .crm-crm-7 { border-left-color: #d4a017; }
.crm-page .plan-card { border-color: rgba(12,31,61,0.12); }
.crm-page .plan-card h3 { color: #0c1f3d; }
.crm-page .btn-accent {
  background: #d4a017; border-color: #d4a017; color: #0c1f3d; font-weight: 700;
}
.crm-page .btn-accent:hover {
  background: #e6b422; border-color: #e6b422; color: #0c1f3d;
}

/* ── NOC / SLA ops pages ── */
.ops-page .section-static { padding: 4rem 0; }
.ops-page .section-static h2 { color: var(--navy); font-weight: 800; }
.ops-page .section-alt { background: #f4f7fb; }
.noc-hero, .sla-hero {
  background: linear-gradient(135deg, #0c1f3d 0%, #152a4a 55%, #0e3d52 100%);
  position: relative; overflow: hidden;
}
.noc-hero-glow, .sla-hero-glow {
  position: absolute; width: 50%; height: 80%; top: 10%; right: -10%;
  background: radial-gradient(ellipse, rgba(6,182,212,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.noc-hero-grid {
  position: absolute; inset: 0; opacity: 0.1;
  background-image:
    linear-gradient(rgba(6,182,212,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,.4) 1px, transparent 1px);
  background-size: 40px 40px;
}
.noc-stat-pills .erp-stat-pill { background: rgba(6,182,212,0.15); border-color: rgba(6,182,212,0.35); }
.ops-feature-card {
  background: #fff; border: 1px solid rgba(12,31,61,0.1); border-radius: 12px;
  padding: 1.25rem; height: 100%; box-shadow: 0 2px 12px rgba(12,31,61,0.05);
}
.ops-feature-num {
  display: inline-block; font-size: 0.75rem; font-weight: 800; color: #06b6d4;
  background: rgba(6,182,212,0.12); border-radius: 6px; padding: 0.2rem 0.5rem; margin-bottom: 0.5rem;
}
.ops-feature-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.ops-step-card {
  background: #fff; border-left: 4px solid #06b6d4; border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.35rem; height: 100%; box-shadow: 0 2px 12px rgba(12,31,61,0.05);
}
.ops-step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.ops-step-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.ops-check-list { padding-left: 0; list-style: none; }
.ops-check-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: var(--text-muted);
}
.ops-check-list li::before {
  content: "✓"; position: absolute; left: 0; color: #06b6d4; font-weight: 700;
}
.ops-check-list-muted li::before { color: #94a3b8; }
.ops-escalation-item { margin-bottom: 1.25rem; }
.ops-escalation-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.ops-escalation-item p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.ops-report-box {
  background: #f4f7fb; border: 1px solid rgba(12,31,61,0.1); border-radius: 12px; padding: 1.5rem;
}
.ops-report-box h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.ops-report-box ul { margin: 0; padding-left: 1.2rem; color: var(--text-muted); }
.sla-updated { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 1rem; }
.sla-uptime-badge {
  display: inline-block; background: rgba(255,255,255,0.12); border: 2px solid rgba(6,182,212,0.5);
  border-radius: 16px; padding: 1.5rem 2rem; text-align: center;
}
.sla-uptime-value { display: block; font-size: 2.5rem; font-weight: 800; color: #7dd3fc; line-height: 1; }
.sla-uptime-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-top: 0.35rem; }
.sla-table-wrap { max-width: 56rem; margin: 0 auto; }
.sla-table { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(12,31,61,0.08); }
.sla-table thead { background: #0c1f3d; color: #fff; }
.sla-table th { font-size: 0.85rem; font-weight: 600; padding: 0.85rem 1rem; border: none; }
.sla-table td { padding: 0.85rem 1rem; font-size: 0.92rem; vertical-align: top; border-color: rgba(12,31,61,0.08); }
.sla-row-p1 td:first-child strong { color: #dc2626; }
.sla-row-p2 td:first-child strong { color: #ea580c; }
.sla-row-p3 td:first-child strong { color: #ca8a04; }
.sla-row-p4 td:first-child strong { color: #64748b; }
.ops-legal-card {
  background: #fff; border: 1px solid rgba(12,31,61,0.1); border-radius: 12px;
  padding: 1.5rem; height: 100%;
}
.ops-legal-card h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.ops-legal-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* Breadcrumbs & footer SEO */
.breadcrumb-nav {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 0.65rem 0;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}
.breadcrumb-item { color: var(--text-muted); }
.breadcrumb-item a { color: var(--navy); font-weight: 500; }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item:not(:first-child)::before {
  content: "/";
  margin-right: 0.5rem;
  color: #c5d0de;
}
.footer-seo-nav {
  background: #eef3f9;
  border-top: 1px solid var(--border-light);
  padding: 0.85rem 0;
}
.footer-seo-text {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.footer-seo-text a { color: var(--navy); font-weight: 500; }
.footer-seo-text span { margin: 0 0.35rem; opacity: 0.5; }
.section-faq { padding: 4rem 0; background: #fff; }
.section-faq h2 { color: var(--navy); font-weight: 800; }
.faq-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 10px !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #eef5ff;
  color: var(--navy);
}
.faq-accordion .accordion-body { color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 991px) {
  .erp-book-card { padding-left: 14px; }
  .erp-book-card:hover .erp-book-body { transform: translateY(-4px); }
  .navbar-collapse { padding-top: 1rem; }
  .navbar-collapse .d-flex {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    justify-content: flex-start;
  }
  .navbar-collapse .btn { flex: 1 1 auto; text-align: center; min-width: 7rem; }
  .plan-pro { transform: none; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .section-cta { padding: 3rem 0; text-align: center; }
  .section-cta .row { text-align: center !important; }
  .section-cta .section-lead { text-align: center !important; }
  .section-cta .d-flex { justify-content: center !important; }
  .section-cta .btn { width: 100%; max-width: 20rem; }
  .sla-uptime-badge { margin-top: 1rem; }
  .noc-lead { max-width: none; }
}

@media (max-width: 767px) {
  body { overflow-x: clip; }
  .hero-title { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  .hero-lead, .page-hero-lead { font-size: 1rem; }
  .hero-cta .btn, .hero-cta a.btn { width: 100%; }
  .erp-stat-pills, .noc-stat-pills, .crm-stat-pills {
    gap: 0.5rem;
  }
  .erp-stat-pill { min-width: calc(50% - 0.25rem); flex: 1 1 calc(50% - 0.25rem); }
  .contact-card { padding: 1.5rem; }
  .contact-guide-box { padding: 1.25rem; }
  .site-footer .col-6 { width: 100%; }
  .footer-bottom { text-align: center; }
  .cookie-content { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .ops-page .section-static { padding: 2.75rem 0; }
  .sla-table thead { display: none; }
  .sla-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(12,31,61,0.12);
    border-radius: 10px;
    padding: 0.5rem 0;
    background: #fff;
  }
  .sla-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 1rem;
    border: none;
    font-size: 0.88rem;
  }
  .sla-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
  }
  .sla-table td:first-child { background: #f4f7fb; border-radius: 10px 10px 0 0; }
  .sla-uptime-value { font-size: 2rem; }
  .table-responsive { -webkit-overflow-scrolling: touch; }
}

@media (max-width: 575px) {
  .logo-nav { height: 60px; max-width: min(260px, 75vw); }
  .nav-upper .nav-link { padding: 0.5rem 0.35rem !important; font-size: 0.7rem; }
  .lang-switch { font-size: 0.85rem; }
  .btn-lg { padding: 0.65rem 1rem; font-size: 0.9rem; }
}
