:root {
  --primary: #07111F;
  --secondary: #0F2742;
  --accent: #F5C542;
  --green: #26D6A2;
  --light: #F7FAFC;
  --dark: #07111F;
  --muted: #64748B;
  --line: rgba(15, 39, 66, .12);
  --card: #FFFFFF;
  --shadow: 0 22px 70px rgba(7, 17, 31, .14);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #F6F8FB;
  color: var(--dark);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.site-shell { min-height: 100vh; overflow: hidden; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.announcement {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
}
.announcement strong { color: var(--accent); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 251, .78);
  border-bottom: 1px solid rgba(7, 17, 31, .08);
}
.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(7,17,31,.22);
}
.brand-text small { display: block; font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: .12em; margin-top: -4px; }
.navlinks { display: flex; align-items: center; gap: 5px; }
.navlinks a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}
.navlinks a:hover { background: white; color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #111827; box-shadow: 0 14px 30px rgba(245,197,66,.32); }
.btn-dark { background: var(--primary); color: white; box-shadow: 0 14px 30px rgba(7,17,31,.24); }
.btn-soft { background: white; color: var(--primary); border: 1px solid var(--line); }
.btn-ghost { background: transparent; color: var(--primary); border: 1px solid var(--line); }
.btn-danger { background: #fee2e2; color: #991b1b; }
.btn-small { padding: 8px 12px; font-size: 13px; }

.hero {
  position: relative;
  padding: 86px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,214,162,.30), rgba(38,214,162,0) 62%);
  right: -260px; top: -180px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,66,.26), rgba(245,197,66,0) 60%);
  left: -260px; bottom: -170px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 900;
  color: var(--secondary);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 6px rgba(38,214,162,.13); }
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
}
.hero p { max-width: 680px; color: #475569; font-size: 18px; margin: 0; }
.hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; color: #64748b; font-weight: 800; font-size: 13px; }

.visual-card {
  border-radius: 36px;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  padding: 24px;
  color: white;
  min-height: 520px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 360px; height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245,197,66,.32), transparent 65%);
}
.visual-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.visual-title { font-size: 20px; font-weight: 950; letter-spacing: -.02em; }
.status-pill { background: rgba(38,214,162,.16); color: var(--green); padding: 7px 11px; border-radius: 999px; font-weight: 900; font-size: 12px; }
.dashboard-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; position: relative; z-index: 1; }
.metric-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 18px; }
.metric-card span { color: rgba(255,255,255,.64); font-size: 12px; font-weight: 800; }
.metric-card b { display: block; margin-top: 6px; font-size: 28px; letter-spacing: -.04em; }
.chart-box { margin-top: 14px; background: white; color: var(--primary); border-radius: 24px; padding: 20px; position: relative; z-index: 1; }
.bars { display: flex; align-items: end; gap: 9px; height: 140px; margin-top: 18px; }
.bar { flex: 1; border-radius: 999px 999px 10px 10px; background: linear-gradient(180deg, var(--green), rgba(38,214,162,.26)); min-height: 18px; }
.bar:nth-child(2n) { background: linear-gradient(180deg, var(--accent), rgba(245,197,66,.28)); }
.live-feed { margin-top: 14px; display: grid; gap: 10px; position: relative; z-index: 1; }
.feed-row { display: flex; justify-content: space-between; gap: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 11px 13px; font-size: 13px; }
.feed-row strong { color: var(--accent); }

.section { padding: 76px 0; }
.section.alt { background: white; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-kicker { color: var(--green); font-weight: 950; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; }
.section-title { margin: 7px 0 0; max-width: 780px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; }
.section-desc { max-width: 460px; color: #64748B; margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.stat-card { border-radius: 22px; background: white; border: 1px solid var(--line); padding: 24px; }
.stat-card b { display: block; font-size: 40px; line-height: 1; letter-spacing: -.05em; }
.stat-card span { display: block; margin-top: 9px; color: #64748B; font-weight: 750; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 12px 32px rgba(7,17,31,.06); }
.card h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.03em; }
.card p { margin: 0; color: #64748B; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { display: flex; flex-direction: column; min-height: 360px; }
.product-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; font-size: 28px; background: #F1F5F9; margin-bottom: 16px; }
.product-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { border-radius: 999px; padding: 5px 9px; font-size: 11px; font-weight: 950; background: #EFF6FF; color: #1D4ED8; }
.tag.status { background: rgba(245,197,66,.22); color: #8A5A00; }
.product-card .btn { margin-top: auto; }

.solution-card ul, .product-detail ul, .about-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.solution-card li, .product-detail li, .about-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: #475569;
}
.solution-card li::before, .product-detail li::before, .about-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
}

.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.workflow-card { position: relative; background: var(--primary); color: white; border-radius: 28px; padding: 26px; overflow: hidden; }
.workflow-card::after { content: attr(data-step); position: absolute; right: 14px; bottom: -20px; font-size: 92px; font-weight: 950; color: rgba(255,255,255,.06); line-height: 1; }
.workflow-card b { color: var(--accent); font-size: 14px; }
.workflow-card h3 { margin: 15px 0 8px; }
.workflow-card p { margin: 0; color: rgba(255,255,255,.72); }

.split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 34px; align-items: start; }
.panel { background: white; border: 1px solid var(--line); border-radius: 34px; padding: 32px; box-shadow: 0 18px 50px rgba(7,17,31,.07); }
.panel.dark { background: linear-gradient(145deg, var(--primary), var(--secondary)); color: white; }
.panel.dark p, .panel.dark li { color: rgba(255,255,255,.74); }

.contact-card { display: grid; grid-template-columns: 1fr .8fr; gap: 24px; align-items: stretch; }
.contact-box { background: #F8FAFC; border: 1px solid var(--line); border-radius: 24px; padding: 22px; }
.contact-form { display: grid; gap: 12px; }
.input, .textarea, .select {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 16px;
  padding: 12px 14px;
  outline: none;
}
.textarea { min-height: 130px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(38,214,162,.13); }

.footer { padding: 46px 0 28px; background: var(--primary); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; align-items: start; }
.footer p, .footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: white; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); font-size: 13px; }

.product-detail { padding: 70px 0; }
.product-hero { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.back-link { display: inline-flex; margin-bottom: 20px; font-weight: 900; color: var(--secondary); }
.detail-icon { width: 92px; height: 92px; border-radius: 30px; background: white; display: grid; place-items: center; font-size: 48px; box-shadow: var(--shadow); }
.detail-title { margin: 18px 0 12px; font-size: clamp(34px, 5vw, 58px); line-height: 1; letter-spacing: -.05em; }
.detail-text { color: #64748B; font-size: 18px; }
.detail-sections { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }

.page-view { padding: 72px 0; }
.page-title { font-size: clamp(36px, 6vw, 64px); line-height: 1; letter-spacing: -.05em; margin: 0 0 20px; }
.page-body { color: #475569; font-size: 18px; max-width: 860px; }

/* Admin */
.admin-body { background: #EEF2F7; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 280px 1fr; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; background: var(--primary); color: white; padding: 22px; overflow: auto; }
.admin-sidebar .brand-mark { margin-bottom: 28px; }
.admin-menu { display: grid; gap: 8px; }
.admin-menu button {
  width: 100%; text-align: left; border: 0; border-radius: 14px; background: transparent; color: rgba(255,255,255,.76); padding: 12px 13px; cursor: pointer; font-weight: 850;
}
.admin-menu button.active, .admin-menu button:hover { background: rgba(255,255,255,.11); color: white; }
.admin-main { padding: 28px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
.admin-top h1 { margin: 0; font-size: 30px; letter-spacing: -.04em; }
.admin-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.admin-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: 0 12px 34px rgba(7,17,31,.06); margin-bottom: 18px; }
.admin-card h2 { margin: 0 0 14px; font-size: 22px; letter-spacing: -.03em; }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.admin-grid.three { grid-template-columns: repeat(3, 1fr); }
.field { display: grid; gap: 7px; }
.field label { font-size: 12px; font-weight: 950; color: #475569; text-transform: uppercase; letter-spacing: .08em; }
.field small { color: #64748B; }
.editor-list { display: grid; gap: 12px; }
.editor-item { border: 1px solid var(--line); border-radius: 20px; padding: 16px; background: #F8FAFC; }
.item-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 12px; }
.item-title { font-weight: 950; }
.array-inputs { display: grid; gap: 8px; margin-top: 8px; }
.notice { border-radius: 18px; padding: 14px 16px; background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; margin-bottom: 18px; }
.notice.success { background: #ECFDF5; color: #065F46; border-color: #A7F3D0; }
.codebox { width: 100%; min-height: 220px; border-radius: 18px; padding: 14px; background: #0B1220; color: #D1E7FF; border: 0; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; }
.preview-frame { width: 100%; min-height: 500px; border: 1px solid var(--line); border-radius: 22px; background: white; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 13px 16px;
  border-radius: 16px;
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
  z-index: 999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

.hidden { display: none !important; }

@media (max-width: 980px) {
  .hero-grid, .split, .contact-card, .product-hero { grid-template-columns: 1fr; }
  .navlinks { display: none; position: absolute; left: 20px; right: 20px; top: 82px; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 10px; box-shadow: var(--shadow); }
  .navlinks.open { display: grid; }
  .menu-toggle { display: inline-flex; }
  .stats-grid, .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .admin-menu { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding: 48px 0 54px; }
  .navbar { height: 70px; }
  .hero-actions, .nav-actions, .admin-actions { width: 100%; }
  .btn { width: 100%; }
  .visual-card { min-height: auto; border-radius: 28px; }
  .dashboard-grid, .stats-grid, .workflow-grid, .product-grid, .card-grid, .detail-sections, .footer-grid, .admin-grid, .admin-grid.three { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-desc { margin-top: 12px; }
  .footer { padding-bottom: 80px; }
}

/* Online build additions */
.loading-screen { min-height: 100vh; display: grid; place-items: center; align-content: center; gap: 12px; color: var(--primary); }
.loading-screen img { width: 72px; height: 72px; border-radius: 20px; box-shadow: var(--shadow); }
.loading-screen strong { font-size: 28px; font-weight: 950; letter-spacing: .08em; }
.loading-screen span { color: var(--muted); font-weight: 750; }
.site-header { position: sticky; top: 0; z-index: 60; backdrop-filter: blur(18px); background: rgba(246,248,251,.84); border-bottom: 1px solid rgba(7,17,31,.08); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand-mark span { display: block; }
.brand-mark small { display: block; font-size: 10px; font-weight: 750; color: var(--muted); letter-spacing: .08em; margin-top: -2px; }
.admin-sidebar .brand-mark small { color: rgba(255,255,255,.65); }
.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu a { padding: 10px 13px; border-radius: 999px; color: #334155; font-size: 14px; font-weight: 800; }
.nav-menu a:hover, .nav-menu .admin-pill { background: white; color: var(--primary); border: 1px solid var(--line); }
.mobile-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 14px; padding: 9px 12px; font-weight: 950; }
.hero-badge { display: inline-flex; margin-top: 18px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.66); font-weight: 850; color: #475569; font-size: 13px; }
.hero-visual { position: relative; border-radius: 36px; background: linear-gradient(145deg, var(--primary), var(--secondary)); padding: 24px; color: white; min-height: 480px; box-shadow: var(--shadow); overflow: hidden; }
.hero-visual::before { content:""; position: absolute; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle, rgba(245,197,66,.34), transparent 65%); right: -100px; top: -100px; }
.visual-topline { display: flex; gap: 8px; position: relative; z-index: 1; margin-bottom: 18px; }
.visual-topline span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.28); }
.visual-card.main { min-height: 210px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); box-shadow: none; position: relative; z-index: 1; }
.visual-card.main small { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-weight: 950; }
.visual-card.main h3 { margin: 18px 0 0; font-size: clamp(26px, 3vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.mini-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; position: relative; z-index: 1; }
.mini-card { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; padding: 16px; }
.mini-card b { display: block; font-size: 28px; color: var(--accent); }
.mini-card span { color: rgba(255,255,255,.72); font-weight: 750; }
.stats-strip { padding: 28px 0; background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-strip .stats-grid { margin-top: 0; }
.stat { border-radius: 22px; border: 1px solid var(--line); background: #F8FAFC; padding: 22px; }
.stat strong { display: block; font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.stat span { display: block; color: var(--muted); font-weight: 800; margin-top: 8px; }
.cards.three, .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 12px 32px rgba(7,17,31,.06); }
.product-meta span, .product-meta b { border-radius: 999px; padding: 5px 9px; font-size: 11px; font-weight: 950; background: #EFF6FF; color: #1D4ED8; }
.product-meta b { background: rgba(245,197,66,.22); color: #8A5A00; }
.product-card details { margin-top: auto; padding-top: 16px; }
.product-card summary { cursor: pointer; font-weight: 950; color: var(--primary); }
.detail-box { margin-top: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #F8FAFC; }
.detail-box p { margin-bottom: 14px; }
.detail-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.detail-columns h4 { margin: 0 0 8px; }
.detail-columns ul, .card ul { margin: 0; padding-left: 20px; color: #475569; }
.card.tall { min-height: 260px; }
.soft-line { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list summary { cursor: pointer; font-weight: 950; font-size: 18px; }
.faq-list p { margin-top: 12px; }
.testimonial-wrap blockquote { margin: 0; border-radius: 34px; padding: 32px; background: linear-gradient(145deg, var(--primary), var(--secondary)); color: white; font-size: clamp(22px, 3vw, 36px); line-height: 1.2; letter-spacing: -.03em; box-shadow: var(--shadow); }
.testimonial-wrap footer { display: grid; gap: 3px; margin-top: 22px; font-size: 15px; letter-spacing: 0; }
.testimonial-wrap span { color: rgba(255,255,255,.66); }
.contact-section { background: var(--primary); color: white; }
.contact-section p { color: rgba(255,255,255,.72); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.contact-card { display: block; background: white; color: var(--primary); border-radius: 28px; padding: 26px; box-shadow: var(--shadow); }
.contact-card p { color: #475569; }
.full { width: 100%; }
.site-footer { background: #050A12; color: white; padding: 30px 0; }
.site-footer p { color: rgba(255,255,255,.64); max-width: 680px; }
.site-footer .footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.live-notice { position: fixed; right: 16px; bottom: 16px; z-index: 80; font-size: 12px; font-weight: 950; border-radius: 999px; padding: 9px 12px; color: white; background: var(--primary); box-shadow: var(--shadow); opacity: .86; }
.live-notice.live { background: #065F46; }
.live-notice.fallback { background: #92400E; }
.live-notice.setup { background: #991B1B; }
.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at top right, rgba(245,197,66,.24), transparent 35%), #EEF2F7; }
.auth-card { width: min(480px, 100%); background: white; border: 1px solid var(--line); border-radius: 30px; padding: 28px; box-shadow: var(--shadow); }
.auth-card img { width: 64px; height: 64px; border-radius: 18px; margin-bottom: 14px; }
.auth-card h1 { margin: 0 0 8px; font-size: 34px; letter-spacing: -.05em; }
.auth-card p, .muted { color: var(--muted); }
.auth-form { display: grid; gap: 10px; margin-top: 12px; }
.auth-separator { text-align: center; color: var(--muted); font-weight: 850; margin: 14px 0; }
.auth-row { display: flex; justify-content: space-between; gap: 12px; margin: 14px 0; }
.link-button { border: 0; background: transparent; padding: 0; color: var(--secondary); font-weight: 900; cursor: pointer; }
.setup-list { background: #F8FAFC; border: 1px solid var(--line); border-radius: 18px; padding: 16px; margin: 16px 0; }
.admin-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 16px 0; }
.admin-metrics div { border: 1px solid var(--line); background: #F8FAFC; border-radius: 20px; padding: 18px; }
.admin-metrics b { display: block; font-size: 24px; letter-spacing: -.03em; }
.admin-metrics span { color: var(--muted); font-weight: 850; font-size: 13px; }
.admin-actions.wrap { flex-wrap: wrap; }
.image-preview { width: 100%; max-height: 160px; object-fit: contain; background: #F8FAFC; border: 1px solid var(--line); border-radius: 18px; padding: 10px; }
.file-label { cursor: pointer; }
.toast[data-type="err"] { background: #991B1B; }
.toast[data-type="ok"] { background: #065F46; }

@media (max-width: 980px) {
  .nav-menu { display: none; position: absolute; left: 20px; right: 20px; top: 82px; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 10px; box-shadow: var(--shadow); }
  .nav-menu.open { display: grid; }
  .mobile-toggle { display: inline-flex; }
  .hero-grid, .contact-grid, .detail-columns { grid-template-columns: 1fr; }
  .cards.three, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .cards.three, .products-grid, .mini-grid, .stats-strip .stats-grid, .detail-columns, .admin-metrics { grid-template-columns: 1fr; }
  .site-footer .footer-grid { display: grid; }
  .auth-row { display: grid; }
}

/* BIQORA CMS v3 additions */
body { font-family: var(--font-body, Inter, ui-sans-serif, system-ui, sans-serif); overflow-x: hidden; }
h1, h2, h3, h4, .section-title, .brand-mark { font-family: var(--font-heading, Inter, ui-sans-serif, system-ui, sans-serif); }
.announcement { background: var(--primary); color: white; font-weight: 800; font-size: 14px; }
.announcement .container { display: flex; justify-content: center; gap: 16px; align-items: center; padding-top: 10px; padding-bottom: 10px; }
.announcement a { color: var(--accent); }
.product-card.featured { border-color: color-mix(in srgb, var(--accent) 58%, white); box-shadow: 0 18px 42px rgba(7,17,31,.11); }
.product-image, .card-image, .about-image, .custom-image, .page-image { width: 100%; display: block; object-fit: cover; border-radius: 20px; }
.product-image { height: 190px; margin-bottom: 18px; background: #eef2f7; }
.card-image { height: 160px; margin-bottom: 18px; }
.about-image { max-height: 280px; margin-bottom: 24px; }
.custom-image, .page-image { max-height: 520px; }
.cta-panel { display: flex; justify-content: space-between; gap: 28px; align-items: center; padding: 38px; border-radius: 30px; background: linear-gradient(135deg,var(--primary),var(--secondary)); color: white; box-shadow: var(--shadow); }
.cta-panel p { color: rgba(255,255,255,.72); }
.rich-copy { white-space: normal; line-height: 1.85; color: #334155; font-size: 18px; }
.page-detail { min-height: 70vh; }
.page-detail-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: 44px; align-items: start; }
.page-title { font-size: clamp(42px,7vw,78px); letter-spacing: -.06em; line-height: .98; margin: 14px 0 20px; }
.page-summary { font-size: 21px; color: var(--muted); }
.back-link { display: inline-flex; margin-bottom: 18px; font-weight: 900; }
.lead-form { display: grid; gap: 12px; margin-top: 24px; max-width: 780px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.lead-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; text-transform: capitalize; font-weight: 800; }
.maintenance-page { min-height: 100vh; display: grid; place-content: center; text-align: center; padding: 30px; background: #eef2f7; }
.maintenance-page img { width: 82px; height: 82px; margin: 0 auto 20px; }
.maintenance-page h1 { font-size: clamp(38px,6vw,68px); margin: 0 0 12px; letter-spacing: -.05em; }
.maintenance-page p { color: var(--muted); font-size: 18px; }

.admin-section-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 16px; }
.admin-section-head h2 { margin: 0; }
.item-controls { display: flex; gap: 6px; flex-wrap: wrap; }
.check-field { display: flex; align-items: flex-start; gap: 10px; border: 1px solid var(--line); border-radius: 16px; background: #f8fafc; padding: 13px 14px; cursor: pointer; min-height: 52px; }
.check-field input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green); }
.check-field span { display: grid; gap: 3px; }
.check-field small { color: var(--muted); }
.status-badge { display: inline-flex; border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 950; }
.status-badge.ok { background: #d1fae5; color: #065f46; }
.status-badge.warn { background: #fef3c7; color: #92400e; }
.notice.warn { background: #fff7ed; color: #9a3412; border-color: #fed7aa; }
.health-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.health-grid > div { display: grid; gap: 4px; border: 1px solid var(--line); border-radius: 17px; padding: 15px; background: #f8fafc; }
.health-grid span { color: var(--muted); font-size: 12px; font-weight: 800; }
.cards.compact .card { min-height: 130px; }
.config-health { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 13px; font-size: 12px; color: var(--muted); }
.uid-box { display: block; margin: 10px 0; padding: 12px; word-break: break-all; border-radius: 12px; background: #0f172a; color: #e2e8f0; }
.media-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.media-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; }
.media-card img { width: 100%; height: 150px; object-fit: cover; background: #eef2f7; }
.media-card > div { padding: 11px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.media-card b { width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.empty-state { padding: 28px; border: 1px dashed #cbd5e1; border-radius: 20px; text-align: center; color: var(--muted); background: #f8fafc; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 860px; }
.admin-table th, .admin-table td { padding: 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { background: #f8fafc; color: #475569; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.admin-table td { font-size: 13px; }
.history-list { display: grid; gap: 10px; }
.history-list article { display: flex; justify-content: space-between; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 17px; padding: 14px; }
.history-list article > div { display: grid; gap: 4px; }
.history-list span { color: var(--muted); font-size: 13px; }
.developer-box { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #08111f; color: white; }
.developer-box code { display: block; overflow-x: auto; padding: 13px; border-radius: 12px; background: rgba(255,255,255,.08); color: #fde68a; }
.developer-box .muted { color: rgba(255,255,255,.65); }

@media (max-width: 1100px) {
  .media-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .health-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .form-grid, .page-detail-grid { grid-template-columns: 1fr; }
  .cta-panel, .admin-section-head { display: grid; }
  .media-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .health-grid { grid-template-columns: 1fr; }
  .announcement .container { display: grid; text-align: center; gap: 4px; }
}
@media (max-width: 480px) {
  .media-grid { grid-template-columns: 1fr; }
}
.notice.info { background: #eff6ff; color: #1e3a8a; border-color: #bfdbfe; }
.inline-image-status { display: block; margin-top: -2px; color: #047857 !important; font-weight: 700; }

/* ============================================================
   BIQORA ENTERPRISE SOLUTION HUB V4
   Enterprise Technology + Buyer-first Solution Hub
   ============================================================ */
:root {
  --max: 1280px;
  --v4-navy: #071525;
  --v4-navy-2: #0d263e;
  --v4-slate: #53657a;
  --v4-soft: #eef3f7;
  --v4-line: rgba(7,21,37,.11);
}
body { background: #f5f7fa; color: var(--primary); }
.section { padding: 104px 0; }
.soft-section { background: #edf2f6; }
.section-kicker { display: inline-flex; margin-bottom: 15px; color: #32755f; font-size: 12px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker.light { color: #7ce6c6; }
.section-intro { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr); align-items: end; gap: 56px; margin-bottom: 46px; }
.section-intro h2, .command-section-head h2, .implementation-copy h2, .faq-copy h2, .contact-copy h2, .about-copy h2 { margin: 0; font-size: clamp(38px,5vw,66px); line-height: 1.02; letter-spacing: -.055em; }
.section-intro p, .command-section-head > p { margin: 0; color: var(--v4-slate); font-size: 17px; }

.site-header { background: rgba(247,249,251,.91); }
.nav-wrap { height: 86px; }
.brand-mark { min-width: 270px; letter-spacing: 0; }
.brand-logo-wrap { width: 48px; height: 48px; display: grid !important; place-items: center; overflow: hidden; border-radius: 15px; background: white; box-shadow: 0 12px 34px rgba(7,21,37,.13); }
.brand-logo-wrap .brand-logo { width: 100%; height: 100%; border-radius: 0; object-fit: contain; padding: 5px; box-shadow: none; }
.brand-copy b { display: block; color: var(--primary); font-size: 17px; letter-spacing: .08em; }
.brand-copy small { max-width: 280px; color: #65758a; font-size: 10px; line-height: 1.25; }
.nav-menu { gap: 2px; }
.nav-menu a { padding: 10px 12px; font-size: 13px; }
.nav-menu .nav-cta { margin-left: 8px; padding: 11px 17px; background: var(--primary); color: white; border: 1px solid var(--primary); }
.nav-menu .nav-cta:hover { background: var(--secondary); color: white; }
.mobile-toggle { width: 44px; height: 44px; display: none; place-items: center; gap: 4px; }
.mobile-toggle span { display: block; width: 18px; height: 2px; background: var(--primary); border-radius: 999px; }

.hero { min-height: 760px; padding: 96px 0 88px; background: radial-gradient(circle at 89% 16%,rgba(35,201,154,.12),transparent 31%), linear-gradient(180deg,#f8fafc 0%,#f3f6f9 100%); overflow: hidden; }
.hero::before, .hero::after { display: none; }
.hero-grid-lines { position: absolute; inset: 0; opacity: .42; pointer-events: none; background-image: linear-gradient(rgba(7,21,37,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(7,21,37,.035) 1px,transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom,black,transparent 88%); }
.hero-grid { grid-template-columns: minmax(420px,.88fr) minmax(620px,1.12fr); gap: 58px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { border-color: rgba(7,21,37,.12); background: rgba(255,255,255,.76); font-size: 11px; letter-spacing: .09em; }
.hero h1 { max-width: 650px; margin-top: 26px; font-size: clamp(54px,5.5vw,84px); line-height: .96; }
.hero p { max-width: 620px; color: #526477; font-size: 18px; line-height: 1.72; }
.hero-actions { margin-top: 33px; }
.hero-actions .btn { padding: 14px 21px; }
.btn-outline { border: 1px solid rgba(7,21,37,.14); background: rgba(255,255,255,.72); color: var(--primary); }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: #5c6f84; font-size: 12px; letter-spacing: .03em; }
.hero-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(35,201,154,.12); }
.hero-visual { min-height: auto; padding: 0; overflow: visible; background: transparent; border-radius: 0; box-shadow: none; }
.hero-visual::before { display: none; }
.hero-command-shell { position: relative; min-height: 570px; padding: 49px 214px 22px 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 31px; background: linear-gradient(150deg,#061321 0%,#0c263e 61%,#113451 100%); color: white; box-shadow: 0 34px 90px rgba(7,21,37,.28); overflow: hidden; }
.hero-command-shell::before { content:""; position:absolute; inset:auto -150px -190px auto; width:430px; height:430px; border-radius:50%; background:radial-gradient(circle,rgba(245,195,66,.2),transparent 67%); }
.command-window-bar { position: absolute; inset: 0 0 auto; height: 48px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(3,11,19,.43); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.window-dots { display:flex; gap:7px; }
.window-dots i { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.28); }
.command-window-bar b { display:flex; align-items:center; gap:6px; color:#8ee9cc; font-size:10px; letter-spacing:0; }
.command-window-bar b i { width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 10px var(--green); }
.command-main { position: relative; z-index: 2; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 23px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.command-heading { display:flex; align-items:start; justify-content:space-between; gap:18px; }
.command-heading small { color:#8ea2b8; font-size:10px; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.command-heading h3 { max-width:440px; margin:7px 0 0; font-size:27px; line-height:1.12; letter-spacing:-.04em; }
.command-filter { padding:6px 9px; border:1px solid rgba(255,255,255,.11); border-radius:8px; color:#9fb0c2; font-size:9px; white-space:nowrap; }
.command-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin:19px 0 11px; }
.command-metrics article { min-width:0; padding:12px; border:1px solid rgba(255,255,255,.08); border-radius:13px; background:rgba(2,10,17,.27); }
.command-metrics span { display:block; color:#8fa3b7; font-size:8px; font-weight:800; text-transform:uppercase; }
.command-metrics strong { display:block; margin:4px 0; font-size:21px; line-height:1; }
.command-metrics small { display:block; color:#77e2c1; font-size:8px; }
.command-chart-card { padding:12px; border-radius:15px; background:#f7fafc; color:var(--primary); }
.chart-card-title { display:flex; justify-content:space-between; gap:12px; font-size:9px; color:#67788a; }
.chart-card-title b { color:#20384e; }
.command-line-chart { width:100%; height:120px; margin:7px 0 0; overflow:visible; }
.chart-grid line { stroke:rgba(83,101,122,.16); stroke-width:1; }
.chart-points circle { fill:#f7fafc; stroke:var(--green); stroke-width:3; }
.chart-labels,.cc-labels { display:grid; grid-template-columns:repeat(7,1fr); color:#8795a4; font-size:8px; text-align:center; }
.command-side-stack { position:absolute; z-index:3; right:20px; top:82px; width:177px; display:grid; gap:12px; }
.command-side-stack article { padding:16px; border:1px solid rgba(255,255,255,.11); border-radius:18px; background:rgba(255,255,255,.08); backdrop-filter:blur(16px); box-shadow:0 20px 45px rgba(0,0,0,.14); }
.command-side-stack span { display:block; color:#8da1b6; font-size:8px; font-weight:900; letter-spacing:.1em; }
.command-side-stack strong { display:block; margin:7px 0 1px; font-size:30px; letter-spacing:-.05em; }
.command-side-stack small { color:#a5b3c1; font-size:9px; }
.progress { height:5px; margin-top:12px; overflow:hidden; border-radius:9px; background:rgba(255,255,255,.1); }
.progress i { display:block; height:100%; border-radius:inherit; background:var(--green); }
.visit-dots { display:flex; gap:5px; margin-top:13px; }
.visit-dots i { width:17px; height:5px; border-radius:6px; background:var(--accent); opacity:.8; }

.audience-strip { border-top:1px solid var(--v4-line); border-bottom:1px solid var(--v4-line); background:white; }
.audience-inner { min-height:76px; display:flex; align-items:center; justify-content:center; gap:31px; flex-wrap:wrap; }
.audience-inner span { color:#8795a4; font-size:11px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.audience-inner b { color:#34495d; font-size:13px; }
.proof-section { padding:31px 0; background:#071525; color:white; }
.proof-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.proof-grid article { padding:4px 29px; border-right:1px solid rgba(255,255,255,.11); }
.proof-grid article:last-child { border-right:0; }
.proof-grid strong { display:block; font-size:33px; line-height:1; letter-spacing:-.05em; color:var(--accent); }
.proof-grid span { display:block; max-width:190px; margin-top:8px; color:#aebbc8; font-size:11px; line-height:1.4; }

.problem-section { background:white; }
.split-intro { align-items:start; }
.problem-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--v4-line); border-bottom:1px solid var(--v4-line); }
.problem-grid article { min-height:290px; padding:35px 34px; border-right:1px solid var(--v4-line); }
.problem-grid article:last-child { border-right:0; }
.problem-grid > article > span { display:block; color:#77a592; font-size:12px; font-weight:950; }
.problem-grid h3 { margin:49px 0 12px; font-size:24px; line-height:1.13; letter-spacing:-.035em; }
.problem-grid p { margin:0; color:#5a6b7e; font-size:15px; }

.solution-section { background:#eaf0f4; }
.solution-layout { display:grid; grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr); gap:86px; align-items:start; }
.solution-sticky { position:sticky; top:130px; }
.solution-sticky h2 { margin:0 0 19px; font-size:clamp(39px,4.8vw,65px); line-height:1; letter-spacing:-.055em; }
.solution-sticky p { color:#586b7e; font-size:17px; }
.text-link { display:inline-flex; align-items:center; gap:12px; margin-top:23px; padding-bottom:5px; border-bottom:1px solid #87a89a; color:#1d634f; font-weight:900; }
.solution-list { border-top:1px solid rgba(7,21,37,.15); }
.solution-item { display:grid; grid-template-columns:72px 1fr; gap:28px; padding:33px 0; border-bottom:1px solid rgba(7,21,37,.15); }
.solution-code { width:46px; height:46px; display:grid; place-items:center; border:1px solid rgba(7,21,37,.14); border-radius:50%; background:rgba(255,255,255,.5); color:#3e7362; font-size:11px; font-weight:950; }
.solution-item small { color:#65788c; font-size:12px; font-weight:800; }
.solution-item h3 { margin:7px 0 8px; font-size:29px; line-height:1.12; letter-spacing:-.04em; }
.solution-item p { margin:0 0 13px; color:#52667a; }
.solution-item a { color:#0e5c46; font-size:13px; font-weight:950; }

.products-section { background:white; }
.product-heading { align-items:start; }
.products-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:25px; }
.product-card { display:grid; grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr); padding:0; overflow:hidden; min-height:470px; border-radius:26px; box-shadow:0 16px 50px rgba(7,21,37,.075); }
.product-card.featured { border-color:rgba(35,201,154,.42); }
.product-visual-wrap { min-height:100%; padding:24px; display:grid; place-items:center; background:linear-gradient(145deg,#071525,#12314c); }
.product-content { padding:30px; display:flex; flex-direction:column; }
.product-topline { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.product-topline span { color:#2b725c; font-size:10px; font-weight:950; letter-spacing:.11em; text-transform:uppercase; }
.product-topline b { padding:5px 8px; border-radius:7px; background:#edf3f7; color:#506277; font-size:9px; }
.product-content h3 { margin:25px 0 11px; font-size:32px; line-height:1; letter-spacing:-.045em; }
.product-short { margin:0; color:#596b7d; font-size:14px; }
.product-audience { margin-top:20px; color:#758598; font-size:10px; font-weight:900; text-transform:uppercase; letter-spacing:.09em; }
.product-outcome { display:flex; align-items:flex-start; gap:9px; margin-top:11px; padding:11px 13px; border-radius:12px; background:#eef8f4; color:#286b56; font-size:11px; font-weight:850; }
.product-outcome i { font-style:normal; }
.product-content details { margin-top:auto; }
.product-content summary { display:flex; align-items:center; justify-content:space-between; padding-top:18px; border-top:1px solid var(--v4-line); list-style:none; }
.product-content summary::-webkit-details-marker { display:none; }
.product-detail { padding-top:16px; color:#536579; }
.product-detail p { font-size:13px; }
.product-detail h4 { font-size:12px; }
.product-detail li { font-size:11px; }
.mockup { width:100%; max-width:340px; color:white; }
.mockup-title,.dash-head,.portal-head,.pos-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:13px; color:#b9c7d4; font-size:9px; }
.mockup-title b,.dash-head b,.portal-head b,.pos-head b { color:#fff; letter-spacing:.1em; }
.mapping-row { display:grid; grid-template-columns:1fr 25px 1fr; align-items:center; gap:5px; margin:8px 0; padding:10px; border:1px solid rgba(255,255,255,.1); border-radius:11px; background:rgba(255,255,255,.06); font-size:9px; }
.mapping-row i { font-style:normal; color:#91a5b9; }
.mapping-row em { color:var(--green); font-style:normal; text-align:center; }
.mapping-footer { display:flex; justify-content:space-between; margin-top:12px; color:#93a7ba; font-size:9px; }
.mapping-footer strong { color:#78e1c0; }
.mockup-dashboard,.mockup-harmonizer,.mockup-portal { padding:20px; border:1px solid rgba(255,255,255,.11); border-radius:19px; background:rgba(255,255,255,.06); }
.dash-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:7px; }
.dash-metrics span { padding:9px; border-radius:9px; background:rgba(255,255,255,.065); }
.dash-metrics small { display:block; color:#8197ab; font-size:7px; }
.dash-metrics b { display:block; font-size:15px; }
.bar-chart { height:105px; display:flex; align-items:end; gap:7px; margin:15px 0; padding:10px; border-radius:11px; background:#f7fafc; }
.bar-chart i { flex:1; min-height:8px; border-radius:5px 5px 2px 2px; background:linear-gradient(var(--green),#9cf0d6); }
.dash-caption { color:#8fa2b5; font-size:8px; }
.mockup-visit { display:grid; grid-template-columns:1.15fr .85fr; gap:12px; align-items:end; }
.phone-shell { padding:13px; border:1px solid rgba(255,255,255,.14); border-radius:25px; background:#f9fbfc; color:var(--primary); box-shadow:0 18px 35px rgba(0,0,0,.2); }
.phone-head { display:flex; justify-content:space-between; font-size:7px; }
.map-canvas { position:relative; height:130px; margin:10px 0; border-radius:14px; overflow:hidden; background:linear-gradient(135deg,#e4edf3,#cbdbe4); }
.map-canvas::before { content:""; position:absolute; inset:0; background:linear-gradient(36deg,transparent 43%,rgba(255,255,255,.76) 44% 49%,transparent 50%),linear-gradient(-27deg,transparent 53%,rgba(255,255,255,.57) 54% 59%,transparent 60%); }
.map-canvas > span { position:absolute; left:10px; bottom:9px; padding:4px 6px; border-radius:6px; background:#fff; color:#35705d; font-size:7px; font-weight:900; }
.pin { position:absolute; z-index:2; width:9px; height:9px; border-radius:50% 50% 50% 0; transform:rotate(-45deg); background:#0b7658; box-shadow:0 2px 5px rgba(0,0,0,.22); }
.pin.one { left:33%; top:29%; }.pin.two { left:63%; top:51%; }.pin.three { left:47%; top:72%; }
.visit-row b,.visit-row small { display:block; }
.visit-row b { font-size:9px; }.visit-row small { color:#6c7c8c; font-size:7px; }
.phone-shell button { width:100%; margin-top:10px; padding:7px; border:0; border-radius:8px; background:var(--accent); font-size:8px; font-weight:900; }
.visit-summary { padding:15px; border-radius:17px; background:rgba(255,255,255,.09); }
.visit-summary small,.visit-summary span { display:block; color:#8da2b7; font-size:8px; }
.visit-summary strong { display:block; margin:5px 0; font-size:30px; }
.portal-filter { display:flex; gap:8px; margin-bottom:11px; }
.portal-filter span { padding:5px 7px; border-radius:6px; background:rgba(255,255,255,.08); color:#9eb0c2; font-size:7px; }
.portal-table { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:1px; overflow:hidden; border-radius:9px; background:rgba(255,255,255,.12); }
.portal-table i,.portal-table b { padding:7px; background:#102b43; font-size:7px; font-style:normal; }
.portal-table i { color:#8ea4b8; }.portal-table b { color:#fff; font-weight:700; }
.portal-note { margin-top:11px; padding:9px; border:1px solid rgba(245,195,66,.27); border-radius:9px; color:var(--accent); font-size:8px; font-weight:900; }
.mockup-pos { display:grid; grid-template-columns:1.3fr .7fr; gap:12px; align-items:end; }
.pos-screen { padding:17px; border-radius:17px; background:#f7fafc; color:var(--primary); }
.pos-head span { color:#3f8c72; }.pos-items { display:grid; gap:8px; }
.pos-items span { display:flex; justify-content:space-between; padding-bottom:7px; border-bottom:1px solid rgba(7,21,37,.09); font-size:8px; }
.pos-items em { color:#66778a; font-style:normal; }
.pos-total { display:flex; justify-content:space-between; align-items:end; margin-top:15px; }
.pos-total small { color:#718196; font-size:8px; }.pos-total strong { font-size:20px; }
.stock-card { padding:14px; border-radius:15px; background:rgba(255,255,255,.08); }
.stock-card small { color:#91a6b9; font-size:8px; }.stock-card b { display:block; font-size:25px; }
.stock-card > div { height:5px; border-radius:5px; background:rgba(255,255,255,.1); }.stock-card i { display:block; height:100%; border-radius:inherit; background:var(--green); }
.product-real-image { width:100%; max-height:360px; object-fit:contain; border-radius:16px; }

.command-center-section { padding:104px 0; overflow:hidden; background:linear-gradient(145deg,#06121f,#0d2841 68%,#143b58); color:white; }
.command-section-head { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr); gap:70px; align-items:end; margin-bottom:42px; }
.command-section-head > p { color:#9eafc0; }
.command-center-dashboard { padding:20px; border:1px solid rgba(255,255,255,.1); border-radius:27px; background:rgba(255,255,255,.055); box-shadow:0 35px 80px rgba(0,0,0,.22); }
.cc-toolbar { display:flex; justify-content:space-between; align-items:center; padding:4px 4px 20px; color:#a0b2c3; font-size:10px; }
.cc-toolbar > div { display:flex; align-items:center; gap:14px; }.cc-toolbar b { color:white; letter-spacing:.08em; }.cc-toolbar i { color:#72e0bd; font-style:normal; }.cc-logo-dot { width:12px; height:12px; border-radius:3px; background:linear-gradient(135deg,var(--accent),var(--green)); }
.cc-metric-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.cc-metric-grid article { padding:19px; border:1px solid rgba(255,255,255,.08); border-radius:16px; background:rgba(1,8,14,.25); }
.cc-metric-grid span,.cc-metric-grid small { display:block; color:#8ea3b6; font-size:9px; }.cc-metric-grid strong { display:block; margin:7px 0; font-size:28px; }.cc-metric-grid small { color:#6fe0bb; }
.cc-main-grid { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(280px,.45fr); gap:12px; margin-top:12px; }
.cc-chart-panel,.cc-alert-panel { padding:20px; border:1px solid rgba(255,255,255,.08); border-radius:18px; background:#f6f9fb; color:var(--primary); }
.cc-panel-title { display:flex; justify-content:space-between; gap:14px; }
.cc-panel-title b,.cc-panel-title span { display:block; }.cc-panel-title b { font-size:12px; }.cc-panel-title span { color:#7a8999; font-size:9px; }.cc-panel-title > strong { font-size:26px; }.cc-panel-title > i { display:grid; place-items:center; width:27px; height:27px; border-radius:8px; background:#e9f7f2; color:#397560; font-style:normal; font-weight:900; }
.cc-chart { width:100%; height:250px; margin-top:5px; }.cc-alert-list { display:grid; gap:8px; margin-top:15px; }.cc-alert-list article { display:grid; grid-template-columns:28px 1fr auto; gap:10px; align-items:center; padding:13px 0; border-top:1px solid rgba(7,21,37,.08); }.cc-alert-list article > span { display:grid; place-items:center; width:25px; height:25px; border-radius:8px; background:#edf2f6; color:#648; font-size:8px; font-weight:900; }.cc-alert-list p { margin:0; color:#4c5f72; font-size:10px; }.cc-alert-list b { color:#26715b; font-size:8px; }

.workflow-section { background:#f5f7fa; }
.workflow-track { position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:17px; }
.workflow-track::before { content:""; position:absolute; left:7%; right:7%; top:43px; height:1px; background:rgba(7,21,37,.18); }
.workflow-track article { position:relative; z-index:2; padding:0 11px; }
.workflow-track > article > span { color:#83a294; font-size:10px; font-weight:900; }
.workflow-icon { width:50px; height:50px; display:grid; place-items:center; margin:12px 0 27px; border:1px solid rgba(7,21,37,.14); border-radius:50%; background:#f5f7fa; color:#266f58; font-size:11px; font-weight:950; box-shadow:0 0 0 9px #f5f7fa; }
.workflow-track h3 { margin:0 0 8px; font-size:21px; }.workflow-track p { margin:0; color:#5d6f82; font-size:13px; }
.implementation-section { background:white; }
.implementation-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:80px; align-items:center; }
.implementation-copy > p { color:#5a6e82; font-size:17px; }.implementation-list { display:grid; gap:20px; margin-top:34px; }.implementation-list article { display:grid; grid-template-columns:32px 1fr; gap:14px; }.implementation-list i { width:28px; height:28px; display:grid; place-items:center; border-radius:50%; background:#e4f6f0; color:#277258; font-style:normal; font-weight:900; }.implementation-list h3 { margin:0 0 5px; font-size:18px; }.implementation-list p { margin:0; color:#607184; font-size:13px; }
.security-panel { overflow:hidden; border-radius:28px; background:linear-gradient(145deg,#071525,#12314c); color:white; box-shadow:0 28px 65px rgba(7,21,37,.2); }.security-panel-head { padding:32px 32px 24px; border-bottom:1px solid rgba(255,255,255,.1); }.security-panel-head span { color:#79dfbf; font-size:9px; font-weight:950; letter-spacing:.13em; }.security-panel-head h3 { max-width:510px; margin:10px 0 0; font-size:32px; line-height:1.1; letter-spacing:-.045em; }.security-grid { display:grid; grid-template-columns:repeat(2,1fr); }.security-grid article { min-height:170px; padding:27px; border-right:1px solid rgba(255,255,255,.09); border-bottom:1px solid rgba(255,255,255,.09); }.security-grid article:nth-child(2n) { border-right:0; }.security-grid span { display:block; width:23px; height:4px; border-radius:5px; background:linear-gradient(90deg,var(--accent),var(--green)); }.security-grid h4 { margin:25px 0 7px; font-size:17px; }.security-grid p { margin:0; color:#a6b5c4; font-size:12px; }

.about-section { background:#edf2f6; }
.about-grid { grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:75px; align-items:center; }
.about-system-map { min-height:430px; padding:40px; display:grid; align-content:center; grid-template-columns:1fr 25px 1fr; gap:11px; border-radius:28px; background:linear-gradient(145deg,#071525,#12314c); color:white; box-shadow:0 30px 75px rgba(7,21,37,.18); }
.about-system-map span { padding:16px; border:1px solid rgba(255,255,255,.1); border-radius:12px; background:rgba(255,255,255,.065); color:#d5e0e9; font-size:10px; font-weight:900; text-align:center; }.about-system-map i { align-self:center; height:1px; background:linear-gradient(90deg,var(--green),var(--accent)); }.about-system-map b { grid-column:1/-1; justify-self:center; margin-top:21px; color:var(--accent); letter-spacing:.15em; }
.about-copy p { color:#56697d; font-size:17px; }.about-copy blockquote { margin:30px 0 0; padding:22px 0 0; border-top:1px solid rgba(7,21,37,.15); color:#244e41; font-size:20px; font-weight:800; line-height:1.45; }

.faq-section { background:white; }
.faq-layout { display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr); gap:80px; align-items:start; }
.faq-copy { position:sticky; top:130px; }.faq-copy p { color:#5c6f83; }
.faq-list { border-top:1px solid var(--v4-line); }
.faq-list details { padding:0; border:0; border-bottom:1px solid var(--v4-line); border-radius:0; background:transparent; }
.faq-list summary { display:grid; grid-template-columns:43px 1fr 26px; align-items:center; gap:13px; padding:25px 0; list-style:none; font-size:17px; }.faq-list summary::-webkit-details-marker { display:none; }.faq-list summary > span { color:#82a193; font-size:10px; }.faq-list summary i { font-style:normal; font-size:22px; font-weight:400; }.faq-list details[open] summary i { transform:rotate(45deg); }.faq-list details p { margin:0; padding:0 0 26px 56px; color:#5b6d80; font-size:14px; }

.contact-section { padding:105px 0; background:#071525; }
.contact-shell { display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:75px; align-items:start; }
.contact-copy h2 { color:white; }.contact-copy > p { color:#a7b5c4; font-size:17px; }.contact-meta { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:33px; }.contact-meta span { padding-top:13px; border-top:1px solid rgba(255,255,255,.13); }.contact-meta small,.contact-meta b,.contact-meta a { display:block; }.contact-meta small { color:#7e92a7; font-size:9px; font-weight:900; text-transform:uppercase; }.contact-meta b,.contact-meta a { margin-top:5px; color:white; font-size:11px; }.contact-form-wrap { padding:30px; border-radius:27px; background:white; color:var(--primary); }.contact-form-wrap .lead-form { margin-top:0; }.contact-form-wrap label > span { display:block; margin-bottom:5px; color:#586a7d; font-size:10px; font-weight:900; text-transform:uppercase; }.contact-form-wrap .input,.contact-form-wrap .textarea { background:#f5f7fa; }
.contact-section .social-links { margin-top:24px; }.contact-section .social-links a { border-color:rgba(255,255,255,.15); color:#c0ccd7; }
.site-footer { padding:38px 0; }.footer-grid { display:grid !important; grid-template-columns:minmax(0,1fr) auto auto; }.footer-brand { display:flex; gap:13px; align-items:center; }.footer-brand img { width:42px; height:42px; object-fit:contain; border-radius:12px; background:white; padding:4px; }.footer-brand strong { display:block; }.footer-brand p { margin:2px 0 0; font-size:10px; }.footer-links { display:flex; gap:15px; color:#aeb9c5; font-size:11px; font-weight:800; }.footer-copy { color:#7f8e9d; font-size:10px; }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns:minmax(350px,.85fr) minmax(520px,1.15fr); gap:36px; }
  .hero-command-shell { padding-right:175px; }
  .command-side-stack { width:145px; }
  .product-card { grid-template-columns:1fr; }
  .product-visual-wrap { min-height:290px; }
  .cc-main-grid { grid-template-columns:1fr; }
}
@media (max-width: 980px) {
  .section { padding:82px 0; }
  .nav-menu { top:76px; z-index:100; }
  .nav-menu .nav-cta { margin-left:0; }
  .mobile-toggle { display:grid; }
  .hero { min-height:auto; padding:72px 0; }
  .hero-grid,.section-intro,.command-section-head,.solution-layout,.implementation-grid,.about-grid,.faq-layout,.contact-shell { grid-template-columns:1fr; }
  .hero-grid { gap:46px; }
  .hero h1 { max-width:760px; }
  .hero-command-shell { max-width:760px; margin:auto; }
  .solution-sticky,.faq-copy { position:relative; top:auto; }
  .products-grid { grid-template-columns:1fr; }
  .product-card { grid-template-columns:minmax(280px,.85fr) minmax(0,1.15fr); }
  .workflow-track { grid-template-columns:repeat(3,1fr); row-gap:42px; }
  .workflow-track::before { display:none; }
  .footer-grid { grid-template-columns:1fr !important; }
}
@media (max-width: 720px) {
  .container { width:min(var(--max),calc(100% - 30px)); }
  .section { padding:68px 0; }
  .nav-wrap { height:74px; }.brand-mark { min-width:0; }.brand-logo-wrap { width:42px; height:42px; }.brand-copy small { display:none; }
  .hero { padding:58px 0 66px; }.hero-grid { gap:35px; }.hero h1 { font-size:clamp(45px,14vw,69px); }.hero p { font-size:16px; }
  .hero-actions { display:grid; }.hero-actions .btn { width:100%; }
  .hero-command-shell { min-height:540px; padding:61px 13px 13px; }.command-side-stack { position:relative; top:auto; right:auto; width:auto; grid-template-columns:repeat(2,1fr); margin-top:11px; }.command-main { padding:15px; }.command-heading h3 { font-size:22px; }.command-filter { display:none; }.command-metrics { grid-template-columns:repeat(3,1fr); }.command-metrics article { padding:9px; }.command-metrics strong { font-size:16px; }.command-line-chart { height:95px; }
  .audience-inner { justify-content:flex-start; gap:14px 20px; padding:19px 0; }.audience-inner span { width:100%; }.proof-grid { grid-template-columns:repeat(2,1fr); row-gap:20px; }.proof-grid article:nth-child(2) { border-right:0; }.proof-grid article { padding:4px 18px; }.proof-grid strong { font-size:27px; }
  .section-intro { gap:17px; }.section-intro h2,.command-section-head h2,.implementation-copy h2,.faq-copy h2,.contact-copy h2,.about-copy h2 { font-size:clamp(35px,11vw,50px); }
  .problem-grid { grid-template-columns:1fr; }.problem-grid article { min-height:auto; padding:27px 4px; border-right:0; border-bottom:1px solid var(--v4-line); }.problem-grid article:last-child { border-bottom:0; }.problem-grid h3 { margin:22px 0 8px; }
  .solution-item { grid-template-columns:49px 1fr; gap:14px; }.solution-item h3 { font-size:24px; }
  .product-card { grid-template-columns:1fr; }.product-content { padding:24px; }.product-visual-wrap { min-height:265px; padding:18px; }.product-content h3 { font-size:28px; }
  .cc-metric-grid { grid-template-columns:repeat(2,1fr); }.cc-main-grid { grid-template-columns:1fr; }.cc-chart-panel,.cc-alert-panel { padding:14px; }.cc-chart { height:190px; }.cc-alert-list article { grid-template-columns:25px 1fr; }.cc-alert-list article b { display:none; }
  .workflow-track { grid-template-columns:1fr; }.workflow-track article { display:grid; grid-template-columns:58px 1fr; column-gap:15px; }.workflow-track > article > span { display:none; }.workflow-icon { grid-row:1/3; margin:0; }.workflow-track h3 { margin-top:1px; }
  .security-grid { grid-template-columns:1fr; }.security-grid article { min-height:auto; border-right:0; }.security-panel-head,.security-grid article { padding:24px; }.security-panel-head h3 { font-size:27px; }
  .about-system-map { min-height:340px; padding:22px; }.about-system-map span { padding:11px; font-size:8px; }
  .faq-list summary { grid-template-columns:28px 1fr 22px; font-size:15px; }.faq-list details p { padding-left:41px; }
  .contact-meta { grid-template-columns:1fr; }.contact-form-wrap { padding:22px; }.form-grid { grid-template-columns:1fr; }
}
@media (max-width: 430px) {
  .command-metrics { grid-template-columns:1fr; }.command-chart-card { display:none; }.hero-command-shell { min-height:auto; }.command-side-stack { grid-template-columns:1fr 1fr; }.mockup-visit,.mockup-pos { grid-template-columns:1fr; }.visit-summary,.stock-card { display:none; }.detail-columns { grid-template-columns:1fr; }
}

/* ============================================================
   BIQORA V4.1 — Refined About / Operating Model
   Replaces the ambiguous raw-data diagram with a responsive,
   business-readable operating model visual.
   ============================================================ */
.about-section { background:linear-gradient(180deg,#eef3f7 0%,#f5f7fa 100%); }
.about-grid { display:grid; grid-template-columns:minmax(0,.78fr) minmax(560px,1.22fr); gap:66px; align-items:center; }
.about-copy { max-width:570px; }
.about-copy h2 { font-size:clamp(42px,4.5vw,66px); }
.about-copy p { margin-top:24px; color:#52667a; font-size:17px; line-height:1.75; }
.about-copy blockquote { position:relative; margin:34px 0 0; padding:22px 0 0 25px; border-top:1px solid rgba(7,21,37,.12); color:#173f35; font-size:18px; font-weight:800; line-height:1.5; }
.about-copy blockquote::before { content:""; position:absolute; left:0; top:25px; width:4px; height:42px; border-radius:999px; background:linear-gradient(var(--green),var(--accent)); }
.about-visual { min-width:0; }
.about-custom-image { width:100%; min-height:430px; max-height:560px; display:block; object-fit:cover; border-radius:30px; box-shadow:0 30px 75px rgba(7,21,37,.16); }
.about-operating-board { position:relative; min-height:490px; padding:25px; overflow:hidden; border:1px solid rgba(255,255,255,.11); border-radius:30px; background:radial-gradient(circle at 50% 48%,rgba(35,201,154,.16),transparent 28%),linear-gradient(145deg,#061321 0%,#0b2339 58%,#123754 100%); color:white; box-shadow:0 32px 80px rgba(7,21,37,.24); }
.about-operating-board::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.22; background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size:46px 46px; mask-image:linear-gradient(to bottom,black,transparent 92%); }
.about-board-head,.about-flow-grid,.about-board-foot { position:relative; z-index:2; }
.about-board-head { display:flex; align-items:flex-start; justify-content:space-between; gap:22px; padding:3px 4px 21px; border-bottom:1px solid rgba(255,255,255,.1); }
.about-board-head span { display:block; color:#75dfbf; font-size:9px; font-weight:950; letter-spacing:.16em; }
.about-board-head strong { display:block; max-width:380px; margin-top:7px; font-size:20px; line-height:1.2; letter-spacing:-.025em; }
.about-board-head em { display:flex; align-items:center; gap:7px; margin-top:4px; color:#9eb0c1; font-size:9px; font-style:normal; white-space:nowrap; }
.about-board-head em i { width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 13px var(--green); }
.about-flow-grid { display:grid; grid-template-columns:minmax(150px,.9fr) minmax(175px,1fr) minmax(160px,.95fr); gap:16px; align-items:center; padding:27px 0 23px; }
.about-flow-column { display:grid; gap:9px; }
.about-flow-column > small { margin-bottom:3px; color:#7f94a8; font-size:8px; font-weight:950; letter-spacing:.14em; }
.about-flow-column article { min-width:0; display:grid; grid-template-columns:29px 1fr; align-items:center; gap:10px; padding:11px; border:1px solid rgba(255,255,255,.095); border-radius:13px; background:rgba(255,255,255,.055); backdrop-filter:blur(8px); }
.about-flow-column article i { width:29px; height:29px; display:grid; place-items:center; border-radius:9px; background:rgba(255,255,255,.08); color:#f7cc59; font-size:8px; font-style:normal; font-weight:950; }
.about-outcomes article i { color:#67dbb8; }
.about-flow-column b { display:block; overflow:hidden; color:#edf5fa; font-size:10px; white-space:nowrap; text-overflow:ellipsis; }
.about-flow-column span { display:block; overflow:hidden; margin-top:3px; color:#8196aa; font-size:8px; line-height:1.25; white-space:nowrap; text-overflow:ellipsis; }
.about-core-layer { position:relative; min-height:270px; display:grid; place-items:center; padding:27px 13px; }
.about-core-layer::before,.about-core-layer::after { content:""; position:absolute; top:50%; width:28px; height:1px; background:linear-gradient(90deg,transparent,var(--green)); }
.about-core-layer::before { right:100%; }
.about-core-layer::after { left:100%; transform:rotate(180deg); }
.about-core-orbit { position:absolute; width:205px; height:205px; border:1px solid rgba(117,223,191,.2); border-radius:50%; box-shadow:inset 0 0 45px rgba(35,201,154,.06),0 0 45px rgba(35,201,154,.06); }
.about-core-orbit::before,.about-core-orbit::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(245,195,66,.16); }
.about-core-orbit::before { inset:22px; }
.about-core-orbit::after { inset:49px; }
.about-core-brand { position:relative; z-index:2; width:132px; height:132px; display:grid; place-content:center; text-align:center; border:1px solid rgba(255,255,255,.14); border-radius:50%; background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.045)); box-shadow:0 22px 48px rgba(0,0,0,.2); }
.about-core-brand span { color:var(--accent); font-size:17px; font-weight:950; letter-spacing:.13em; }
.about-core-brand small { max-width:88px; margin:6px auto 0; color:#91a7b9; font-size:7px; line-height:1.3; text-transform:uppercase; }
.about-core-modules { position:absolute; z-index:3; inset:auto 0 4px; display:flex; justify-content:center; gap:5px; }
.about-core-modules b { padding:6px 8px; border:1px solid rgba(255,255,255,.1); border-radius:999px; background:#102e47; color:#a9bdcd; font-size:7px; letter-spacing:.02em; }
.about-board-foot { display:flex; justify-content:center; gap:8px; flex-wrap:wrap; padding-top:16px; border-top:1px solid rgba(255,255,255,.09); }
.about-board-foot span { padding:6px 9px; border-radius:999px; background:rgba(255,255,255,.055); color:#899eb1; font-size:7px; font-weight:900; letter-spacing:.08em; }

@media (max-width:1180px) {
  .about-grid { grid-template-columns:minmax(0,.72fr) minmax(500px,1.28fr); gap:45px; }
  .about-operating-board { padding:21px; }
}
@media (max-width:980px) {
  .about-grid { grid-template-columns:1fr; gap:42px; }
  .about-copy { max-width:760px; }
  .about-visual { order:-1; }
  .about-operating-board { max-width:920px; min-height:430px; }
}
@media (max-width:720px) {
  .about-operating-board { min-height:auto; padding:18px; border-radius:24px; }
  .about-board-head { display:grid; }
  .about-board-head strong { font-size:18px; }
  .about-board-head em { display:none; }
  .about-flow-grid { grid-template-columns:1fr; gap:17px; padding:22px 0; }
  .about-flow-column { grid-template-columns:repeat(3,1fr); gap:7px; }
  .about-flow-column > small { grid-column:1/-1; }
  .about-flow-column article { grid-template-columns:1fr; gap:7px; padding:10px 7px; text-align:center; }
  .about-flow-column article i { margin:auto; }
  .about-flow-column b,.about-flow-column span { white-space:normal; }
  .about-core-layer { min-height:215px; }
  .about-core-layer::before,.about-core-layer::after { display:none; }
  .about-core-orbit { width:176px; height:176px; }
  .about-core-brand { width:116px; height:116px; }
}
@media (max-width:430px) {
  .about-flow-column { grid-template-columns:1fr; }
  .about-flow-column article { grid-template-columns:29px 1fr; text-align:left; padding:10px; }
  .about-flow-column article i { margin:0; }
  .about-board-foot { justify-content:flex-start; }
}

/* V4.2 — legacy-logo flash prevention */
.brand-safe-loader { text-align:center; }
.loader-wordmark, .auth-wordmark { font-family:var(--font-heading); font-weight:950; letter-spacing:.22em; color:#071525; }
.loader-wordmark { font-size:clamp(28px,5vw,46px); }
.loader-line { width:148px; height:3px; overflow:hidden; border-radius:999px; background:#e4e9ef; margin:2px auto 3px; }
.loader-line i { display:block; width:46%; height:100%; border-radius:inherit; background:linear-gradient(90deg,#23c99a,#f5c342); animation:biqoraLoader 1.1s ease-in-out infinite alternate; }
.auth-wordmark { font-size:24px; margin:0 0 22px; }
.brand-mark.no-logo .brand-copy { margin-left:0; }
.brand-logo-wrap:empty, .footer-brand > .logo-empty, .maintenance-page .logo-empty { display:none; }
@keyframes biqoraLoader { from { transform:translateX(-100%); } to { transform:translateX(220%); } }
@media (prefers-reduced-motion:reduce) { .loader-line i { animation:none; transform:none; width:100%; } }

.sidebar-wordmark{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;background:#fff;color:#071525;font-weight:950;letter-spacing:-.08em;}
.auth-brand-logo{display:block;max-width:112px;max-height:88px;object-fit:contain;margin:0 0 22px;}


/* ============================================================
   BIQORA V4.4 — MOBILE MENU VISIBILITY / DARK MODE FIX
   Keep the public navigation control readable when the device,
   browser, or accessibility layer requests a dark color scheme.
   ============================================================ */
html {
  color-scheme: only light;
}

.mobile-toggle {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  place-content: center;
  place-items: center;
  gap: 4px;
  overflow: visible;
  color: #071525 !important;
  background-color: #ffffff !important;
  border: 1px solid rgba(7, 21, 37, .18) !important;
  box-shadow: 0 8px 22px rgba(7, 21, 37, .12);
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  forced-color-adjust: none;
  isolation: isolate;
}

.mobile-toggle span {
  position: relative;
  z-index: 2;
  display: block !important;
  width: 20px !important;
  height: 2.5px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  opacity: 1 !important;
  visibility: visible !important;
  background-color: #071525 !important;
  box-shadow: 0 0 0 .01px #071525;
  filter: none !important;
  transition: transform .18s ease, opacity .18s ease;
  forced-color-adjust: none;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0 !important; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-toggle:focus-visible {
  outline: 3px solid rgba(245, 195, 66, .72);
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  html, body { color-scheme: only light; }
  .site-header {
    background: rgba(247, 249, 251, .96) !important;
    border-bottom-color: rgba(7, 21, 37, .10) !important;
  }
  .mobile-toggle {
    color: #071525 !important;
    background-color: #ffffff !important;
    border-color: rgba(7, 21, 37, .22) !important;
  }
  .mobile-toggle span {
    background-color: #071525 !important;
    box-shadow: 0 0 0 .01px #071525 !important;
  }
  .nav-menu {
    color: #071525 !important;
    background-color: #ffffff !important;
  }
  .nav-menu a:not(.nav-cta) { color: #334155 !important; }
}

@media (forced-colors: active) {
  .mobile-toggle {
    color: ButtonText !important;
    background: Canvas !important;
    border: 2px solid ButtonText !important;
    forced-color-adjust: auto;
  }
  .mobile-toggle span {
    background: ButtonText !important;
    box-shadow: none !important;
    forced-color-adjust: auto;
  }
}

/* =========================================================
   V4.5 — Dedicated menu pages + expanded product ecosystem
   ========================================================= */
.nav-menu a.active:not(.nav-cta){color:var(--primary);position:relative}
.nav-menu a.active:not(.nav-cta)::after{content:"";position:absolute;left:14px;right:14px;bottom:5px;height:2px;border-radius:999px;background:linear-gradient(90deg,var(--green),var(--accent))}
.nav-cta.active{box-shadow:0 0 0 3px rgba(35,201,154,.18)}

.route-hero{padding:76px 0 54px;background:
  radial-gradient(circle at 84% 18%,rgba(35,201,154,.15),transparent 28%),
  linear-gradient(180deg,#f8fafc 0%,#eef4f8 100%);border-bottom:1px solid rgba(7,21,37,.08)}
.route-hero-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(330px,.75fr);gap:64px;align-items:center}
.route-hero-copy{max-width:880px}
.route-hero-copy h1{font-size:clamp(44px,5.4vw,78px);line-height:.98;letter-spacing:-.055em;margin:18px 0 24px;color:var(--primary)}
.route-hero-copy p{font-size:clamp(18px,2vw,23px);line-height:1.65;color:#52657a;max-width:850px;margin:0}
.route-hero-panel{background:var(--primary);color:#fff;border-radius:30px;padding:34px;box-shadow:0 28px 65px rgba(7,21,37,.22);position:relative;overflow:hidden;min-height:250px;display:flex;flex-direction:column;justify-content:space-between}
.route-hero-panel::before{content:"";position:absolute;width:230px;height:230px;border:1px solid rgba(255,255,255,.1);border-radius:50%;right:-70px;top:-90px;box-shadow:0 0 0 38px rgba(255,255,255,.025),0 0 0 78px rgba(255,255,255,.018)}
.route-hero-panel small{font-size:12px;letter-spacing:.17em;color:var(--green);font-weight:900;position:relative}
.route-hero-panel>strong{font-size:30px;line-height:1.12;letter-spacing:-.035em;max-width:320px;position:relative}
.route-hero-panel>div{display:flex;flex-wrap:wrap;gap:9px;position:relative}
.route-hero-panel>div span{display:flex;align-items:center;gap:8px;padding:9px 12px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.055);border-radius:999px;font-size:12px;font-weight:800;color:#dfe9f2}
.route-hero-panel>div i{width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 4px rgba(245,195,66,.12)}

.home-product-preview{background:#fff}
.product-tile-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.product-tile{display:flex;flex-direction:column;min-height:260px;padding:24px;border:1px solid rgba(7,21,37,.1);border-radius:24px;background:linear-gradient(180deg,#fff,#f8fafc);text-decoration:none;color:inherit;transition:.24s ease;box-shadow:0 8px 24px rgba(7,21,37,.035)}
.product-tile:hover{transform:translateY(-5px);border-color:rgba(35,201,154,.48);box-shadow:0 22px 44px rgba(7,21,37,.1)}
.product-tile>span{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:var(--primary);color:var(--accent);font-weight:950;font-size:13px;margin-bottom:24px}
.product-tile small{font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#6a7c8f}
.product-tile h3{font-size:23px;line-height:1.08;letter-spacing:-.035em;margin:9px 0 10px;color:var(--primary)}
.product-tile p{font-size:14px;line-height:1.6;color:#5a6d80;margin:0 0 20px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.product-tile b{font-size:13px;color:#177b66;margin-top:auto}
.section-action{display:flex;justify-content:center;margin-top:34px}

.home-solution-preview{background:#f2f6f8}
.solution-preview-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.solution-preview-grid>a{padding:26px;border-radius:24px;background:#fff;border:1px solid rgba(7,21,37,.09);text-decoration:none;color:inherit;min-height:260px;display:flex;flex-direction:column;transition:.22s ease}
.solution-preview-grid>a:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(7,21,37,.08)}
.solution-preview-grid>a>span{font-size:13px;font-weight:950;color:var(--green);letter-spacing:.08em}
.solution-preview-grid small{font-size:13px;line-height:1.5;color:#718295;margin:30px 0 10px}
.solution-preview-grid h3{font-size:24px;line-height:1.12;letter-spacing:-.035em;color:var(--primary);margin:0 0 22px}
.solution-preview-grid b{font-size:13px;color:#177b66;margin-top:auto}

.product-directory{padding-top:42px;background:#fff}
.product-filter{position:sticky;top:86px;z-index:9;display:flex;gap:9px;overflow-x:auto;padding:12px;margin:0 0 36px;border:1px solid rgba(7,21,37,.08);border-radius:18px;background:rgba(255,255,255,.94);backdrop-filter:blur(16px);box-shadow:0 10px 30px rgba(7,21,37,.07);scrollbar-width:none}
.product-filter::-webkit-scrollbar{display:none}
.product-filter button{white-space:nowrap;border:0;border-radius:12px;padding:12px 17px;background:transparent;color:#52657a;font:800 13px var(--font-body);cursor:pointer;transition:.2s}
.product-filter button:hover{background:#eef4f7;color:var(--primary)}
.product-filter button.active{background:var(--primary);color:#fff;box-shadow:0 7px 18px rgba(7,21,37,.2)}
.product-page-grid{transition:.2s ease}
.product-card.product-hidden{display:none!important}
.product-page-cta{padding-top:20px;background:#fff}

.solution-directory{background:#fff}
.solution-directory-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.solution-directory-grid article{padding:34px;border:1px solid rgba(7,21,37,.1);border-radius:28px;background:linear-gradient(145deg,#fff 0%,#f7fafb 100%);min-height:330px;display:flex;flex-direction:column;position:relative;overflow:hidden;transition:.24s ease}
.solution-directory-grid article::after{content:"";position:absolute;width:150px;height:150px;border-radius:50%;right:-65px;top:-65px;border:1px solid rgba(35,201,154,.18)}
.solution-directory-grid article:hover{transform:translateY(-5px);box-shadow:0 26px 50px rgba(7,21,37,.09);border-color:rgba(35,201,154,.35)}
.solution-directory-grid article>span{font-size:13px;font-weight:950;letter-spacing:.12em;color:var(--green)}
.solution-directory-grid article small{font-size:14px;line-height:1.55;color:#718295;margin:32px 0 12px;max-width:520px}
.solution-directory-grid article h2{font-size:34px;line-height:1.05;letter-spacing:-.045em;color:var(--primary);margin:0 0 16px;max-width:560px}
.solution-directory-grid article p{font-size:16px;line-height:1.7;color:#536679;margin:0 0 28px;max-width:600px}
.solution-directory-grid article a{font-size:14px;font-weight:900;color:#177b66;text-decoration:none;margin-top:auto}
.route-closing{padding-top:30px}

/* Factory product visual */
.mockup-factory,.mockup-proposal{height:100%;min-height:360px;border-radius:24px;background:#0c2034;color:#fff;padding:24px;display:flex;flex-direction:column;box-shadow:inset 0 0 0 1px rgba(255,255,255,.08)}
.factory-head,.proposal-head{display:flex;justify-content:space-between;align-items:center;font-size:11px;letter-spacing:.09em}
.factory-head b,.proposal-head b{color:var(--accent)}
.factory-head span,.proposal-head span{color:#9fb3c5;padding:7px 10px;background:rgba(255,255,255,.06);border-radius:999px}
.factory-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:30px 0}
.factory-kpis span{padding:15px;border-radius:15px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.07)}
.factory-kpis small{display:block;color:#94a9bb;font-size:10px;margin-bottom:7px}.factory-kpis b{font-size:22px;color:#fff}
.factory-line{display:flex;align-items:center;gap:8px;margin:auto 0}
.factory-line>div{flex:1;text-align:center;padding:15px 8px;border-radius:16px;background:rgba(255,255,255,.045)}
.factory-line>em{height:2px;flex:0 0 20px;background:linear-gradient(90deg,var(--green),rgba(35,201,154,.15))}
.factory-line i{display:grid;width:24px;height:24px;border-radius:50%;margin:0 auto 9px;background:#506579;border:5px solid rgba(255,255,255,.08)}
.factory-line i.done{background:var(--green)}.factory-line i.active{background:var(--accent);box-shadow:0 0 0 6px rgba(245,195,66,.12)}
.factory-line b,.factory-line small{display:block}.factory-line b{font-size:12px}.factory-line small{font-size:9px;color:#8fa5b8;margin-top:4px}
.factory-footer,.proposal-footer{display:flex;justify-content:space-between;align-items:center;padding-top:18px;margin-top:24px;border-top:1px solid rgba(255,255,255,.08);font-size:10px;color:#94a9bb}.factory-footer strong,.proposal-footer strong{color:var(--green)}

/* Proposal product visual */
.proposal-title{margin:28px 0 24px;padding:18px;border-radius:17px;background:rgba(255,255,255,.06);border-left:3px solid var(--accent)}
.proposal-title small,.proposal-title strong,.proposal-title span{display:block}.proposal-title small{font-size:10px;color:#91a7ba}.proposal-title strong{font-size:18px;margin:7px 0}.proposal-title span{font-size:13px;color:var(--accent);font-weight:900}
.approval-flow{display:flex;align-items:center;gap:8px;margin:auto 0}
.approval-flow>div{flex:1;text-align:center;padding:14px 6px;border-radius:15px;background:rgba(255,255,255,.045)}
.approval-flow>em{height:2px;flex:0 0 16px;background:rgba(255,255,255,.13)}
.approval-flow i{display:grid;place-items:center;width:25px;height:25px;margin:0 auto 9px;border-radius:50%;font-style:normal;font-size:10px;font-weight:900;background:#4b6074;color:#fff}
.approval-flow .approved i{background:var(--green);color:#062218}.approval-flow .pending i{background:var(--accent);color:#2d2403;box-shadow:0 0 0 6px rgba(245,195,66,.1)}
.approval-flow b,.approval-flow small{display:block}.approval-flow b{font-size:11px}.approval-flow small{font-size:9px;color:#8fa5b8;margin-top:4px}

@media (max-width:1100px){
  .route-hero-grid{grid-template-columns:1fr;gap:34px}.route-hero-panel{min-height:220px}
  .product-tile-grid,.solution-preview-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:760px){
  .route-hero{padding:48px 0 36px}.route-hero-copy h1{font-size:45px}.route-hero-copy p{font-size:17px}
  .route-hero-panel{padding:25px;border-radius:23px}.route-hero-panel>strong{font-size:26px;margin:24px 0}
  .product-tile-grid,.solution-preview-grid,.solution-directory-grid{grid-template-columns:1fr}
  .product-filter{top:72px;margin-left:-4px;margin-right:-4px;border-radius:15px}
  .solution-directory-grid article{min-height:285px;padding:27px}.solution-directory-grid article h2{font-size:29px}
  .mockup-factory,.mockup-proposal{min-height:330px;padding:19px}
  .factory-line>em,.approval-flow>em{flex-basis:8px}.factory-line>div,.approval-flow>div{padding:12px 3px}
}
@media (prefers-color-scheme:dark){
  .route-hero,.home-product-preview,.product-directory,.product-page-cta,.solution-directory{color-scheme:light;background-color:#fff}
  .product-filter{background:#fff}.product-filter button{color:#52657a}.product-filter button.active{color:#fff;background:#071525}
}
.mockup-factory,.mockup-proposal{width:100%;max-width:100%;box-sizing:border-box;overflow:hidden}
.factory-line>div,.approval-flow>div{min-width:0}
.factory-line b,.approval-flow b{overflow-wrap:anywhere}


/* =========================================================
   V4.6 — SFA + Demo Interaktif integration
   ========================================================= */
.mockup-sfa{height:100%;min-height:360px;border-radius:24px;background:#0c2034;color:#fff;padding:24px;display:flex;flex-direction:column;box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);overflow:hidden}
.sfa-head{display:flex;align-items:center;justify-content:space-between;font-size:11px;letter-spacing:.09em}.sfa-head b{color:var(--accent)}.sfa-head span{color:#9fb3c5;padding:7px 10px;background:rgba(255,255,255,.06);border-radius:999px}
.sfa-layout{display:grid;grid-template-columns:1.35fr .65fr;gap:13px;margin:26px 0 18px;min-height:230px}.sfa-route,.sfa-phone{border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.045);border-radius:18px;padding:15px}.sfa-route>small{display:block;color:#8fa5b8;font-size:9px;letter-spacing:.1em;margin-bottom:11px}
.sfa-route article{display:grid;grid-template-columns:28px 1fr auto;gap:10px;align-items:center;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.07)}.sfa-route article:last-child{border-bottom:0}.sfa-route article>i{display:grid;place-items:center;width:26px;height:26px;border-radius:9px;background:#42596e;color:#fff;font-style:normal;font-size:10px;font-weight:950}.sfa-route article.done>i{background:var(--green);color:#062218}.sfa-route article.active>i{background:var(--accent);color:#2d2403;box-shadow:0 0 0 5px rgba(245,195,66,.1)}.sfa-route article b,.sfa-route article span{display:block}.sfa-route article b{font-size:11px}.sfa-route article span{font-size:9px;color:#8fa5b8;margin-top:3px}.sfa-route article em{font-style:normal;font-size:9px;color:#b7c6d3;font-weight:800}
.sfa-phone{display:flex;flex-direction:column;background:linear-gradient(180deg,#f9fbfc,#e9f1f5);color:#071525}.sfa-phone-top{display:flex;align-items:center;justify-content:space-between}.sfa-phone-top span{font-size:9px;font-weight:900;color:#617486}.sfa-phone-top b{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#071525;color:var(--accent);font-size:10px}.sfa-phone>strong{font-size:17px;margin:23px 0 4px}.sfa-phone>small{font-size:9px;color:#718295}.sfa-actions{display:grid;grid-template-columns:repeat(3,1fr);gap:5px;margin:auto 0 12px}.sfa-actions span{text-align:center;padding:8px 2px;border-radius:8px;background:#fff;border:1px solid rgba(7,21,37,.08);font-size:8px;font-weight:900}.sfa-phone button{border:0;border-radius:10px;padding:10px;background:var(--primary);color:#fff;font:900 10px var(--font-body)}
.sfa-footer{display:grid;grid-template-columns:auto auto 1fr;gap:16px;align-items:center;padding-top:16px;border-top:1px solid rgba(255,255,255,.08);font-size:9px;color:#93a9bb}.sfa-footer span b{color:#fff;margin-left:5px}.sfa-footer>strong{text-align:right;color:var(--green)}

.demo-experience-section{background:#fff}.demo-experience-grid{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:24px;align-items:stretch}.demo-intro-card,.demo-module-panel{border-radius:30px;border:1px solid rgba(7,21,37,.09);box-shadow:0 20px 48px rgba(7,21,37,.07)}.demo-intro-card{padding:38px;background:linear-gradient(145deg,#fff,#f3f8fa)}.demo-intro-card h2{font-size:clamp(34px,3.5vw,54px);line-height:1.02;letter-spacing:-.05em;color:var(--primary);margin:16px 0}.demo-intro-card>p{font-size:17px;line-height:1.7;color:#586c7f}.demo-highlight-list{display:flex;flex-wrap:wrap;gap:9px;margin:24px 0}.demo-highlight-list span{display:flex;align-items:center;gap:8px;padding:9px 12px;border-radius:999px;background:#fff;border:1px solid rgba(7,21,37,.08);font-size:12px;font-weight:850;color:#3c5165}.demo-highlight-list i{font-style:normal;color:#159776}.demo-notice{padding:18px;border-radius:17px;background:#fff8df;border:1px solid rgba(245,195,66,.45);margin:26px 0}.demo-notice b{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:#70550a}.demo-notice p{margin:7px 0 0;color:#665c40;font-size:13px;line-height:1.6}.demo-main-actions{display:flex;flex-wrap:wrap;gap:11px}
.demo-module-panel{padding:28px;background:var(--primary);color:#fff;position:relative;overflow:hidden}.demo-module-panel::before{content:"";position:absolute;width:280px;height:280px;border-radius:50%;border:1px solid rgba(255,255,255,.07);right:-110px;top:-120px;box-shadow:0 0 0 48px rgba(255,255,255,.018),0 0 0 92px rgba(255,255,255,.012)}.demo-panel-head{display:flex;justify-content:space-between;align-items:flex-start;position:relative;margin-bottom:20px}.demo-panel-head small{display:block;color:var(--green);font-size:10px;letter-spacing:.13em;font-weight:900}.demo-panel-head h3{font-size:28px;letter-spacing:-.035em;margin:8px 0 0}.demo-panel-head>span{padding:8px 11px;border-radius:999px;background:rgba(255,255,255,.07);font-size:10px;color:#c7d4df}.demo-module-grid{display:grid;grid-template-columns:1fr 1fr;gap:11px;position:relative}.demo-module-grid>a{display:grid;grid-template-columns:35px 1fr;gap:11px;padding:18px;border-radius:18px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09);text-decoration:none;color:#fff;min-height:185px;transition:.2s}.demo-module-grid>a:hover{transform:translateY(-3px);background:rgba(255,255,255,.09);border-color:rgba(35,201,154,.5)}.demo-module-grid>a>span{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;background:rgba(35,201,154,.14);color:var(--green);font-size:10px;font-weight:950}.demo-module-grid small{font-size:9px;letter-spacing:.08em;color:#9fb2c3;font-weight:900}.demo-module-grid h4{font-size:18px;line-height:1.12;margin:7px 0;color:#fff}.demo-module-grid p{font-size:11px;line-height:1.55;color:#aec0cf;margin:0}.demo-module-grid b{grid-column:2;font-size:11px;color:var(--accent);margin-top:auto;align-self:end}.demo-followup-section{padding-top:20px;background:#fff}.demo-unavailable{background:#fff}

@media(max-width:1040px){.demo-experience-grid{grid-template-columns:1fr}.sfa-layout{grid-template-columns:1fr}.sfa-phone{display:none}.sfa-footer{grid-template-columns:1fr 1fr}.sfa-footer>strong{grid-column:1/-1;text-align:left}}
@media(max-width:760px){.mockup-sfa{min-height:330px;padding:19px}.demo-intro-card,.demo-module-panel{padding:24px;border-radius:23px}.demo-module-grid{grid-template-columns:1fr}.demo-module-grid>a{min-height:155px}.demo-main-actions{display:grid}.demo-main-actions .btn{width:100%}.demo-panel-head h3{font-size:24px}}
@media(prefers-color-scheme:dark){.demo-experience-section,.demo-followup-section,.demo-unavailable{color-scheme:light;background:#fff}}


/* =========================================================
   V4.7.1 — Homepage landscape editorial hook
   The social-style creatives are contained inside a calm,
   corporate frame so they support the story without taking
   over the full website identity.
   ========================================================= */
.campaign-hook-section{background:#eef3f6;padding-top:34px;padding-bottom:92px}
.campaign-hook-shell{display:grid;grid-template-columns:minmax(320px,.72fr) minmax(0,1.28fr);gap:28px;padding:28px;border-radius:34px;background:linear-gradient(145deg,#071525 0%,#0d2a43 72%,#123b56 100%);color:#fff;box-shadow:0 30px 76px rgba(7,21,37,.2);overflow:hidden;position:relative}
.campaign-hook-shell::before{content:"";position:absolute;width:430px;height:430px;border-radius:50%;right:-210px;top:-250px;background:radial-gradient(circle,rgba(245,195,66,.2),transparent 68%);pointer-events:none}
.campaign-hook-copy{padding:24px 12px 24px 18px;align-self:center;position:relative;z-index:1}
.campaign-hook-copy .section-kicker{color:var(--green)}
.campaign-hook-copy h2{margin:18px 0 20px;font-size:clamp(38px,4.5vw,66px);line-height:.98;letter-spacing:-.055em;color:#fff}
.campaign-hook-copy p{margin:0;color:#b7c7d4;font-size:16px;line-height:1.75;max-width:590px}
.campaign-hook-actions{display:flex;flex-wrap:wrap;gap:11px;margin-top:29px}
.btn-ghost-light{border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.06);color:#fff}
.btn-ghost-light:hover{background:rgba(255,255,255,.12);transform:translateY(-1px)}
.campaign-hook-feature{position:relative;display:block;width:100%;min-height:430px;padding:0;border:0;border-radius:25px;overflow:hidden;background:#03090f;cursor:zoom-in;box-shadow:0 18px 48px rgba(0,0,0,.24);z-index:1}
.campaign-hook-feature img{display:block;width:100%;height:100%;min-height:430px;object-fit:cover;object-position:center}
.campaign-hook-feature::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(3,9,15,.88),transparent 32%);pointer-events:none}
.campaign-hook-feature>span{position:absolute;left:22px;right:22px;bottom:18px;z-index:2;display:flex;justify-content:space-between;align-items:end;gap:20px;text-align:left;color:#fff}
.campaign-hook-feature b,.campaign-hook-feature small{display:block}.campaign-hook-feature b{font-size:13px;letter-spacing:.08em;text-transform:uppercase}.campaign-hook-feature small{font-size:11px;color:#d2dce5}
.hook-gallery-block{grid-column:1/-1;position:relative;z-index:1;padding-top:4px}
.hook-gallery-head{display:flex;justify-content:space-between;align-items:end;padding:0 4px 13px;color:#fff}.hook-gallery-head span{font-size:18px;font-weight:900}.hook-gallery-head small{font-size:11px;color:#9fb2c3}
.hook-gallery-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}
.hook-gallery-card{position:relative;display:grid;grid-template-columns:140px 1fr;align-items:center;gap:18px;padding:12px;border:1px solid rgba(255,255,255,.1);border-radius:22px;background:rgba(255,255,255,.055);color:#fff;text-align:left;cursor:zoom-in;transition:.22s ease;overflow:hidden}
.hook-gallery-card:hover{transform:translateY(-3px);background:rgba(255,255,255,.09);border-color:rgba(35,201,154,.38)}
.hook-gallery-card img{width:140px;height:150px;object-fit:cover;object-position:top;border-radius:14px;display:block}
.hook-gallery-card span{display:grid;gap:9px;padding-right:10px;font-size:16px;font-weight:850;line-height:1.35}.hook-gallery-card b{display:grid;place-items:center;width:31px;height:31px;border-radius:10px;background:rgba(35,201,154,.14);color:var(--green);font-size:10px}
.campaign-hook-home .hook-gallery-block{display:none}
.hook-lightbox{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:28px;background:rgba(2,8,14,.92);backdrop-filter:blur(10px)}
.hook-lightbox img{display:block;max-width:min(94vw,1200px);max-height:90vh;width:auto;height:auto;border-radius:18px;box-shadow:0 30px 90px rgba(0,0,0,.55)}
.hook-lightbox-close{position:fixed;top:22px;right:25px;display:grid;place-items:center;width:48px;height:48px;border:1px solid rgba(255,255,255,.22);border-radius:50%;background:rgba(255,255,255,.09);color:#fff;font-size:30px;line-height:1;cursor:pointer}
body.lightbox-open{overflow:hidden}
@media(max-width:1000px){.campaign-hook-shell{grid-template-columns:1fr}.campaign-hook-copy{padding:15px 8px}.campaign-hook-feature{min-height:360px}.campaign-hook-feature img{min-height:360px}.hook-gallery-card{grid-template-columns:115px 1fr}.hook-gallery-card img{width:115px;height:135px}}
@media(max-width:700px){.campaign-hook-section{padding:24px 0 62px}.campaign-hook-shell{padding:18px;border-radius:25px;gap:20px}.campaign-hook-copy h2{font-size:39px}.campaign-hook-copy p{font-size:15px}.campaign-hook-actions{display:grid}.campaign-hook-actions .btn{width:100%}.campaign-hook-feature{min-height:235px;border-radius:18px}.campaign-hook-feature img{min-height:235px}.campaign-hook-feature>span{left:15px;right:15px;bottom:13px}.hook-gallery-head{align-items:flex-start;gap:8px;flex-direction:column}.hook-gallery-grid{grid-template-columns:1fr}.hook-gallery-card{grid-template-columns:95px 1fr;border-radius:18px}.hook-gallery-card img{width:95px;height:115px}.hook-lightbox{padding:16px}.hook-lightbox-close{top:14px;right:14px;width:43px;height:43px}}
@media(prefers-color-scheme:dark){.campaign-hook-section{color-scheme:light;background:#eef3f6}}


/* =========================================================
   V4.7.2 — Raw-data hook as the first homepage experience
   ========================================================= */
.campaign-hook-opening{padding-top:22px;padding-bottom:58px;scroll-margin-top:86px}
.campaign-hook-opening .campaign-hook-shell{min-height:min(650px,calc(100vh - 126px));align-items:center}
.campaign-hook-opening .campaign-hook-feature{min-height:500px}
.campaign-hook-opening .campaign-hook-feature img{min-height:500px}
.hero#platform-intro{padding-top:86px}
@media(max-width:1000px){
  .campaign-hook-opening .campaign-hook-shell{min-height:auto}
  .campaign-hook-opening .campaign-hook-feature,.campaign-hook-opening .campaign-hook-feature img{min-height:360px}
}
@media(max-width:700px){
  .campaign-hook-opening{padding-top:14px;padding-bottom:46px}
  .campaign-hook-opening .campaign-hook-shell{min-height:auto}
  .campaign-hook-opening .campaign-hook-feature,.campaign-hook-opening .campaign-hook-feature img{min-height:235px}
  .hero#platform-intro{padding-top:64px}
}

/* =========================================================
   V4.7.3 — Mobile first-entry keeps the Raw Data hook first
   ========================================================= */
@media(max-width:820px){
  body{scroll-behavior:auto}
  .campaign-hook-opening{display:block;visibility:visible;content-visibility:visible;contain-intrinsic-size:auto}
  .campaign-hook-opening .campaign-hook-shell{display:flex;flex-direction:column}
  .campaign-hook-opening .campaign-hook-copy{order:1}
  .campaign-hook-opening .campaign-hook-feature{order:2}
}

/* ============================================================
   BIQORA V4.8 — Stronger brand presence + bilingual navigation
   ============================================================ */
.nav-wrap { min-height: 98px; height: 98px; }
.brand-mark { min-width: 350px; gap: 16px; }
.brand-logo-wrap {
  width: 66px;
  height: 66px;
  border-radius: 19px;
  flex: 0 0 66px;
}
.brand-logo-wrap .brand-logo {
  width: 100%;
  height: 100%;
  padding: 2px;
  transform: scale(1.28);
  transform-origin: center;
}
.brand-copy b {
  font-size: 24px;
  line-height: 1;
  letter-spacing: .095em;
}
.brand-copy small {
  max-width: 330px;
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .095em;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 7px;
  padding: 4px;
  border: 1px solid rgba(7,21,37,.13);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7,21,37,.07);
}
.language-switch button {
  min-width: 35px;
  height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #607186;
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}
.language-switch button.active {
  background: var(--primary);
  color: #fff;
}
.language-switch button:focus-visible {
  outline: 3px solid rgba(35,201,154,.32);
  outline-offset: 2px;
}

@media (max-width: 1320px) {
  .brand-mark { min-width: 300px; }
  .brand-copy b { font-size: 21px; }
  .brand-copy small { max-width: 255px; font-size: 9px; }
  .nav-menu a { padding-inline: 9px; font-size: 12px; }
  .nav-menu .nav-cta { padding-inline: 14px; }
}

@media (max-width: 1180px) {
  .nav-wrap { height: 88px; min-height: 88px; }
  .brand-mark { min-width: 0; }
  .brand-logo-wrap { width: 58px; height: 58px; flex-basis: 58px; }
  .brand-copy b { font-size: 21px; }
  .brand-copy small { display: block; max-width: 260px; }
  .nav-menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    z-index: 100;
    padding: 14px;
    border: 1px solid rgba(7,21,37,.1);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(7,21,37,.18);
  }
  .nav-menu.open { display: grid; }
  .mobile-toggle { display: grid; }
  .nav-menu .nav-cta { margin-left: 0; }
  .language-switch { width: max-content; margin: 7px 8px; }
}

@media (max-width: 720px) {
  .nav-wrap { height: 84px; min-height: 84px; }
  .brand-mark { gap: 12px; }
  .brand-logo-wrap { width: 54px; height: 54px; flex-basis: 54px; border-radius: 17px; }
  .brand-logo-wrap .brand-logo { transform: scale(1.34); }
  .brand-copy b { font-size: 21px; letter-spacing: .105em; }
  .brand-copy small { display: none; }
  .nav-menu { top: 84px; }
}

@media (max-width: 390px) {
  .brand-logo-wrap { width: 50px; height: 50px; flex-basis: 50px; }
  .brand-copy b { font-size: 19px; }
}
