/* Sumaya Tech — unified design system */
:root {
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 12px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 32px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 16px 48px rgba(11, 31, 58, 0.12);

  --navy: #0B1F3A;
  --blue: #1A56DB;
  --blue-light: #3B82F6;
  --cyan: #0EA5E9;
  --cyan-soft: #E0F2FE;

  --accent: #1A56DB;
  --accent-bg: #EFF6FF;
  --accent-glow: rgba(26, 86, 219, 0.25);

  --text: #0B1F3A;
  --text-muted: #475569;
  --text-light: #64748B;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  --nav-bg: rgba(255, 255, 255, 0.96);
  --hero-bg: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
  --footer-bg: #0B1F3A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Nav ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.nav-row {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-word {
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em;
  color: var(--navy); line-height: 1.1;
}
.logo-word span { display: block; font-size: 0.68rem; font-weight: 600; color: var(--cyan); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.15s;
}
.nav-menu a:hover { color: var(--blue); }
.btn-nav {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
  background: var(--blue); color: #fff !important;
  box-shadow: 0 2px 14px var(--accent-glow);
  transition: transform 0.15s, background 0.15s;
}
.btn-nav:hover { background: var(--blue-light); transform: translateY(-1px); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius); color: var(--navy);
  border: 1px solid var(--border);
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: currentColor;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px;
  background: currentColor; transition: transform 0.2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.25rem 1.25rem; z-index: 199;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block; padding: 0.85rem 0; font-weight: 500;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-drawer a:last-child { border: none; margin-top: 0.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.4rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; transition: all 0.15s;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 2px 14px var(--accent-glow); }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-ghost {
  background: var(--surface); color: var(--navy);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-yt { background: #DC2626; color: #fff; font-size: 0.85rem; padding: 0.6rem 1.1rem; }
.btn-yt:hover { background: #B91C1C; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  background: var(--hero-bg);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 4px var(--cyan-soft);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.12;
  margin-bottom: 1rem; color: var(--navy);
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-lead {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 34rem; margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }

.hero-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.hero-panel h3 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 1rem;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-chips span {
  font-size: 0.78rem; font-weight: 600; padding: 0.45rem 0.75rem;
  border-radius: 100px; background: var(--accent-bg); color: var(--blue);
  border: 1px solid #BFDBFE;
}

.hero-lead strong { color: var(--navy); font-weight: 600; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; max-width: 48rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0 1.15rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; color: var(--navy);
  padding: 1rem 0; list-style: none; position: relative; padding-right: 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.1rem; color: var(--blue); font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
  padding-bottom: 1rem; margin-top: -0.25rem;
}
.faq-item a { color: var(--blue); font-weight: 600; }
.faq-item a:hover { text-decoration: underline; }

/* ── Sections ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.5rem;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.6rem; color: var(--navy);
}
.section-head p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Product cards (overview strip) ── */
.product-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.strip-card.strip-featured { border-color: #BFDBFE; background: linear-gradient(180deg, #EFF6FF 0%, #fff 100%); }
.strip-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem;
  text-align: center; transition: border-color 0.2s, box-shadow 0.2s;
}
.strip-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.icon-box, .product-icon {
  width: 48px; height: 48px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid #BFDBFE; flex-shrink: 0;
}
.strip-card .icon-box { margin: 0 auto 0.5rem; width: 44px; height: 44px; border-radius: 10px; }
.icon-box svg, .product-icon svg { width: 22px; height: 22px; }
.product-icon { width: 52px; height: 52px; }
.product-icon svg { width: 26px; height: 26px; }
.strip-card strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.strip-card span { font-size: 0.68rem; color: var(--text-light); font-weight: 500; }

/* ── Full product blocks ── */
.product-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: 1.25rem;
  overflow: hidden; scroll-margin-top: calc(var(--nav-h) + 1rem);
  box-shadow: var(--shadow-sm);
}
.product-block-head {
  padding: 1.35rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  background: linear-gradient(90deg, var(--accent-bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}
.product-block-head h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.product-block-head .tagline { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem; }
.product-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
  background: #fff; border: 1px solid #BFDBFE;
  padding: 0.3rem 0.65rem; border-radius: 100px; display: inline-block; margin-bottom: 0.35rem;
}
.product-block-body { padding: 1.35rem 1.5rem 1.5rem; }
.product-block-body p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 0.85rem;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0; }
.product-tags span {
  font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.65rem;
  border-radius: 100px; background: var(--bg); color: var(--text-light);
  border: 1px solid var(--border);
}
.product-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.product-actions .link-muted {
  font-size: 0.85rem; font-weight: 600; color: var(--blue); margin-left: 0.25rem;
}
.product-actions .link-muted:hover { text-decoration: underline; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: var(--bg); border: 1px solid var(--border);
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Pillars ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pillar {
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
}
.pillar-num { font-size: 0.7rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.pillar p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Contact ── */
.contact-section {
  padding: 3.5rem 0; background: var(--navy); color: #fff; text-align: center;
}
.contact-section h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 800; margin-bottom: 0.5rem; }
.contact-section > .container > p { opacity: 0.85; margin-bottom: 1.25rem; font-size: 0.95rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.contact-section .btn { background: #fff; color: var(--navy); }
.contact-meta {
  margin-top: 1.25rem; font-size: 0.85rem; opacity: 0.8;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem;
}
.contact-meta a:hover { text-decoration: underline; }

.contact-social { margin-top: 1.75rem; }
.contact-social-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.7; margin-bottom: 0.75rem;
}
.social-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem;
}
.social-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.85rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}
.social-link:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); color: #fff; }
.social-link svg { flex-shrink: 0; }
.social-linkedin:hover { border-color: #93C5FD; }
.social-insta:hover { border-color: #F472B6; color: #FBCFE8; }
.social-x:hover { border-color: rgba(255,255,255,0.45); }
.social-yt:hover { border-color: #FCA5A5; color: #FECACA; }

/* ── Footer ── */
.site-footer {
  padding: 2rem 0 1.5rem; background: #071525; color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}
.footer-main {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  justify-content: space-between; gap: 1.5rem; margin-bottom: 1.25rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name { font-weight: 800; color: #fff; font-size: 1rem; margin-bottom: 0.2rem; }
.footer-brand-tag { font-size: 0.72rem; color: var(--cyan); margin-bottom: 0.85rem; }
.footer-social-icons { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.footer-social {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.75);
  transition: background 0.15s, transform 0.15s, color 0.15s;
}
.footer-social:hover { background: rgba(255,255,255,0.16); color: #fff; transform: translateY(-1px); }
.footer-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a:hover { color: #fff; }
.footer-social-text { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-social-text a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .product-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 2.75rem 0; }
  .product-strip { grid-template-columns: 1fr 1fr; }
  .product-block-head, .product-block-body { padding: 1.15rem; }
}
@media (min-width: 769px) {
  .mobile-drawer { display: none !important; }
}

/* ── Hero pillars ── */
.hero-pillars {
  display: flex; gap: 1.25rem; margin-top: 1.5rem;
  padding: 1.25rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.hero-pillar { flex: 1; min-width: 0; }
.pillar-title { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.pillar-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.pillar-chips span {
  font-size: 0.68rem; font-weight: 600; padding: 0.3rem 0.55rem;
  border-radius: 100px; background: var(--bg); color: var(--text-muted);
  border: 1px solid var(--border);
}
.pillar-divider { width: 1px; background: var(--border); flex-shrink: 0; }

/* ── Presentation reel ── */
.reel-section { background: var(--navy); padding: 0; overflow: hidden; }
.reel-slides { position: relative; min-height: 420px; }
.reel-slide {
  display: none; padding: 3.5rem 1.25rem; max-width: 1140px; margin: 0 auto;
  gap: 2.5rem; align-items: center;
}
.reel-slide.active { display: flex; }
.reel-slide-inner { flex: 1; min-width: 0; }
.reel-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #93C5FD; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}
.reel-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; color: #fff;
  line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 0.85rem;
}
.reel-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.7;
  max-width: 32rem; margin-bottom: 1.1rem;
}
.reel-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.reel-pills span {
  font-size: 0.72rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 0.3rem 0.7rem; color: rgba(255,255,255,0.78); font-weight: 500;
}
.reel-visual { flex: 0 0 min(420px, 100%); }
.reel-card-anim {
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
}
.anim-header {
  background: rgba(0,0,0,0.4); padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.35rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.68rem; color: rgba(255,255,255,0.5);
}
.anim-dot { width: 9px; height: 9px; border-radius: 50%; }
.anim-dot.red { background: #EF4444; }
.anim-dot.amber { background: #F59E0B; }
.anim-dot.green { background: #10B981; }
.anim-rows { padding: 1.1rem 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.anim-row { display: flex; align-items: center; gap: 0.5rem; }
.anim-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); width: 6.5rem; flex-shrink: 0; }
.anim-bar {
  flex: 1; height: 6px; background: rgba(255,255,255,0.1);
  border-radius: 100px; overflow: hidden; position: relative;
}
.anim-bar::after {
  content: ''; position: absolute; left: 0; top: 0; height: 100%;
  width: var(--w, 50%); max-width: 100%; background: var(--c, #3B82F6);
  border-radius: 100px; animation: barIn 1.2s ease forwards;
}
.anim-pct { font-size: 0.68rem; font-weight: 700; width: 3.5rem; text-align: right; }
.anim-pct.bad { color: #EF4444; }
.anim-pct.warn { color: #F59E0B; }
.anim-pct.ok { color: #10B981; }
.anim-alert {
  margin: 0 1rem 1rem; background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3); border-radius: 8px;
  padding: 0.55rem 0.85rem; font-size: 0.72rem; color: #FCA5A5; font-weight: 500;
}
.anim-alert.ok { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.3); color: #6EE7B7; }
.proj-grid { padding: 1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.proj-item { display: flex; align-items: center; gap: 0.5rem; }
.proj-name { font-size: 0.72rem; color: rgba(255,255,255,0.65); width: 5.5rem; flex-shrink: 0; }
.proj-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.proj-bar {
  height: 100%; width: var(--pw, 50%); background: var(--pc, #3B82F6);
  border-radius: 100px; animation: barIn 1.4s ease forwards;
}
.proj-status { font-size: 0.62rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 100px; }
.proj-status.ok { background: rgba(16,185,129,0.2); color: #6EE7B7; }
.proj-status.bad { background: rgba(239,68,68,0.2); color: #FCA5A5; }
.proj-status.warn { background: rgba(245,158,11,0.2); color: #FDE68A; }
.flow-steps { display: flex; align-items: center; justify-content: center; gap: 0.35rem; padding: 1.1rem 1rem 0.75rem; flex-wrap: wrap; }
.flow-step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 0.55rem 0.65rem; text-align: center; min-width: 4.5rem;
}
.flow-step.active { background: rgba(26,86,219,0.3); border-color: rgba(100,149,255,0.5); }
.flow-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.flow-arrow { color: rgba(255,255,255,0.3); font-size: 0.9rem; }
.flow-log { padding: 0 1rem 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.log-line { font-size: 0.68rem; padding: 0.35rem 0.55rem; border-radius: 6px; font-weight: 500; }
.log-line.done { background: rgba(16,185,129,0.12); color: #6EE7B7; }
.log-line.typing { background: rgba(245,158,11,0.12); color: #FDE68A; animation: blink 1s infinite; }
.pipeline-steps { display: flex; align-items: center; padding: 1.1rem 1rem 0.75rem; gap: 0.2rem; flex-wrap: wrap; justify-content: center; }
.pipe-step { text-align: center; flex: 1; min-width: 3.5rem; }
.pipe-name { font-size: 0.62rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.pipe-time { font-size: 0.58rem; color: rgba(255,255,255,0.4); margin-top: 0.15rem; }
.pipe-line { flex: 0 0 1rem; height: 2px; background: rgba(255,255,255,0.12); }
.pipe-line.done { background: #10B981; }
.pipe-step.running .pipe-name { color: #FDE68A; animation: blink 1s infinite; }
.reel-controls {
  background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.25rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.reel-dots { display: flex; gap: 0.45rem; }
.reel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25);
  border: none; cursor: pointer; transition: all 0.2s; padding: 0;
}
.reel-dot.active { background: #fff; width: 22px; border-radius: 100px; }
.reel-nav { display: flex; align-items: center; gap: 0.75rem; }
.reel-btn {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.reel-btn:hover { background: rgba(255,255,255,0.2); }
.reel-counter { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; min-width: 2.5rem; text-align: center; }
.reel-progress-bar {
  flex: 1; max-width: 180px; height: 3px; background: rgba(255,255,255,0.15);
  border-radius: 100px; overflow: hidden;
}
.reel-progress-fill { height: 100%; background: #fff; border-radius: 100px; width: 0; transition: width 0.1s linear; }

@keyframes barIn { from { width: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ── Problem / outsource audit ── */
.problem-section {
  background: #0A0F1E; padding: 4rem 0; position: relative; overflow: hidden;
}
.problem-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(27,104,242,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,104,242,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.problem-section .container { position: relative; z-index: 1; }
.problem-section .section-head h2 { color: #fff; }
.problem-section .section-head p { color: rgba(255,255,255,0.62); }
.problem-section .section-head { max-width: 44rem; margin: 0 auto 2.5rem; text-align: center; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.problem-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 1.75rem 1.35rem;
}
.problem-icon { margin-bottom: 0.65rem; }
.problem-num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28); margin-bottom: 0.65rem;
}
.problem-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.problem-card p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.65; margin-bottom: 1rem; }
.problem-stat {
  display: flex; align-items: center; gap: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.85rem;
}
.pstat-num { font-size: 1.35rem; font-weight: 800; color: #93C5FD; }
.pstat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.35; }
.problem-cta {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem;
}
.pcta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
}
.pcta-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #93C5FD; margin-bottom: 0.4rem;
}
.pcta-inner h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.35rem; }
.pcta-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 36rem; }

/* ── Audit services ── */
.audit-section {
  background: var(--navy); padding: 4rem 0; position: relative; overflow: hidden;
}
.audit-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.audit-section .container { position: relative; z-index: 1; }
.audit-header { text-align: center; max-width: 44rem; margin: 0 auto 2.5rem; }
.audit-header .section-label { color: #93C5FD; }
.audit-header h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 0.6rem; }
.audit-header p { color: #C5D8F8; font-size: 0.95rem; }
.audit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden;
}
.audit-card {
  background: rgba(255,255,255,0.05); padding: 1.75rem 1.35rem;
  transition: background 0.25s;
}
.audit-card:hover { background: rgba(255,255,255,0.1); }
.audit-card.featured { background: rgba(255,255,255,0.1); }
.audit-card.featured h3 { color: #93C5FD; }
.audit-number {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35); margin-bottom: 0.85rem; display: block;
}
.audit-icon-box {
  width: 48px; height: 48px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.audit-icon-box svg { width: 22px; height: 22px; }
.audit-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.55rem; }
.audit-card p { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 0.85rem; }
.audit-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.audit-tag {
  font-size: 0.65rem; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 100px;
  padding: 0.2rem 0.55rem; font-weight: 500;
}

/* ── Insight360 platform ── */
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.platform-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.platform-card-featured { border-color: rgba(124,58,237,0.3); }
.platform-card-header {
  padding: 1.75rem 1.35rem 1.25rem; min-height: 7.5rem;
  display: flex; flex-direction: column; justify-content: space-between; position: relative;
}
.platform-card-header.blue { background: linear-gradient(135deg, #1558D6, #0891B2); }
.platform-card-header.purple { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.platform-card-header.green { background: linear-gradient(135deg, #065F46, #047857); }
.platform-card-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.platform-star {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px; padding: 0.15rem 0.65rem; font-size: 0.65rem; font-weight: 700; color: #fff;
}
.platform-card-body { padding: 1.35rem; }
.platform-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
.platform-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.85rem; }
.platform-features { display: flex; flex-direction: column; gap: 0.45rem; }
.pf-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--text-muted); }
.pf-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.insight-hero {
  background: linear-gradient(135deg, var(--accent-bg) 0%, var(--surface) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; margin-bottom: 1.5rem;
}
.insight-hero h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.insight-hero p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; max-width: 52rem; }

@media (max-width: 960px) {
  .hero-pillars { flex-direction: column; }
  .pillar-divider { width: 100%; height: 1px; }
  .reel-slide { flex-direction: column; padding: 2.5rem 1.25rem; }
  .reel-visual { flex: none; width: 100%; }
  .problem-grid, .audit-grid, .platform-grid { grid-template-columns: 1fr; }
}
