:root {
  --bg: #F8FAFC;
  --bg-alt: #EEF2F7;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --text: #0F172A;
  --muted: #475569;
  --subtle: #64748B;
  --primary: #0A2540;
  --accent: #0066FF;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --radius-lg: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body.body-industry {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-bottom: 5.5rem;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}
.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
  color: var(--subtle);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.top-nav .dot { color: #CBD5E1; }

/* Hero */
.hero {
  background: radial-gradient(circle at 100% 0%, rgba(0, 102, 255, 0.1), transparent 42%), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.16);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}
h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 780px;
}
.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.68rem 1.15rem;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.2);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
}
.highlight-grid {
  margin-top: 1.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.highlight {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem 1rem 0.95rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.highlight-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.highlight .k {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.highlight .v {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.45;
  font-weight: 600;
}

/* Proof strip */
.proof-strip {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, #0A2540 0%, #0f3460 100%);
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.proof-strip__title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.95);
}
.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
}
.proof-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.proof-strip__bullet {
  color: #4ADE80;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* Section bands */
.section-band {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.section-band--alt {
  background: var(--bg-alt);
  border-color: #E2E8F0;
}
.section-head {
  margin: 0 0 1.15rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  color: var(--primary);
  line-height: 1.25;
}
.section-sub {
  margin: -0.5rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 720px;
}

/* Before / After */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ba-card {
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.ba-card--before {
  background: #fff;
  border-left: 4px solid #94A3B8;
}
.ba-card--after {
  background: linear-gradient(180deg, #fff 0%, #F0F9FF 100%);
  border-left: 4px solid var(--accent);
}
.ba-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.ba-card--before .ba-label { color: #64748B; }
.ba-card--after .ba-label { color: var(--accent); }
.ba-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.93rem;
}
.ba-list li { margin-bottom: 0.4rem; }

/* 3 steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
}
.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Case snapshot */
.case-snapshot {
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(0, 102, 255, 0.06), rgba(10, 37, 64, 0.04));
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.case-snapshot__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.case-snapshot h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--primary);
}
.case-snapshot__intro {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.case-snapshot ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.93rem;
}
.case-snapshot li { margin-bottom: 0.35rem; }
.case-snapshot__note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--subtle);
  line-height: 1.5;
}

/* Main two-column */
.content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.15rem;
}
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.section + .section {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}
h2 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--primary);
}
p { margin: 0; color: var(--muted); font-size: 0.96rem; }
p + p { margin-top: 0.65rem; }
.stack { display: grid; gap: 0.85rem; }
.mini-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.mini-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.mini-card p {
  font-size: 0.87rem;
  color: var(--subtle);
  line-height: 1.55;
}
.final-cta {
  margin-top: 1rem;
  background: linear-gradient(120deg, rgba(10, 37, 64, 0.06), rgba(0, 102, 255, 0.1));
  border: 1px solid rgba(0, 102, 255, 0.22);
  border-radius: 12px;
  padding: 1.05rem;
}
.final-cta strong { color: var(--primary); }
.final-cta p { margin-top: 0.45rem; font-size: 0.9rem; color: #334155; }
.pain-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.pain-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.pain-list li { margin-bottom: 0.35rem; }
.outcome-box {
  margin-top: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.07);
  border: 1px solid rgba(0, 102, 255, 0.18);
  font-size: 0.96rem;
  color: #334155;
  line-height: 1.55;
}
.outcome-box strong { color: var(--accent); font-weight: 600; }
.meta-row {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.meta-row div { color: var(--muted); }
.meta-row span.label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.related-services h3 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}
.related-services ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.related-services li { margin-bottom: 0.3rem; }
.note-muted {
  font-size: 0.85rem;
  color: var(--subtle);
  margin-top: 0.75rem;
  line-height: 1.55;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.why-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-sm);
}
.why-item svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}
.why-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--primary);
}
.why-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a {
  padding: 0 1.1rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  margin: 0;
  padding-top: 0.75rem;
}

/* Bottom CTA */
.bottom-cta {
  margin-top: 2rem;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, #0d3d6b 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bottom-cta h2 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}
.bottom-cta > p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 1.25rem;
  font-size: 0.98rem;
}
.bottom-cta .hero-actions { justify-content: center; margin-top: 0; }
.bottom-cta .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.bottom-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  border-color: #fff;
}
.bottom-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.bottom-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.bottom-cta__local {
  margin-top: 1.1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}
.bottom-cta__local a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.bottom-cta__local a:hover {
  border-bottom-color: #fff;
}

.industry-nap {
  display: block;
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.25rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--subtle);
  line-height: 1.75;
  box-shadow: var(--shadow-sm);
}
.industry-nap strong {
  color: var(--text);
  font-weight: 600;
}
.industry-nap a {
  color: var(--muted);
  border-bottom: 1px dotted #cbd5e1;
  text-decoration: none;
}
.industry-nap a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Sticky bar + WhatsApp */
.industry-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 94;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.65rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  box-shadow: 0 -10px 32px rgba(10, 37, 64, 0.22);
}
.industry-sticky a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: transform 0.2s, background 0.2s;
}
.industry-sticky a:hover { text-decoration: none; transform: translateY(-1px); }
.industry-sticky__primary {
  background: #fff;
  color: var(--primary);
}
.industry-sticky__primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
}
.industry-sticky__wa {
  background: #25D366;
  color: #fff;
}
.industry-sticky__wa:hover {
  background: #20bd5a;
  color: #fff;
}
.industry-sticky__ghost {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}
.industry-sticky__ghost:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 4.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
  z-index: 95;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.48);
  text-decoration: none;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Hub */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.hub-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hub-card:hover {
  border-color: rgba(0, 102, 255, 0.25);
  box-shadow: var(--shadow-md);
}
.hub-card a { font-weight: 600; color: var(--primary); text-decoration: none; }
.hub-card a:hover { color: var(--accent); text-decoration: underline; }
.hub-card p {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--subtle);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .content { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .proof-strip__grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 1.35rem; }
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 5.5rem; }
  body.body-industry { padding-bottom: 6.5rem; }
}
