/* ============================================================
   2DRK Lab — Homepage Styles
   ============================================================ */

/* ── Image Placeholder ── */
.img-placeholder {
  width: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(0,96,201,0.07) 0%, rgba(10,25,47,0.5) 100%);
  border: 1px dashed rgba(0,96,201,0.3);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.img-placeholder svg { opacity: 0.35; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 72px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
}

/* Circle center at header bottom (68px).
   Arc enters from LEFT & RIGHT corners exactly at header bottom.
   Dome curves down ~720px below header into the hero. */
.hero-arc-ring {
  position: absolute;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  top: var(--header-h);
  left: 50%;
  transform: translate(-50%, -50%);
  border: 30px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #0060C9 0%, #38b0ff 50%, #FFD100 100%) border-box;
  pointer-events: none;
  z-index: 0;
}

/* Outer arc — 30px gap outside the main 30px arc = 60px total offset */
.hero-arc-outer {
  position: absolute;
  width: calc(80vw + 120px);
  height: calc(80vw + 120px);
  border-radius: 50%;
  top: var(--header-h);
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgba(0,96,201,0.4) 0%, rgba(56,176,255,0.4) 50%, rgba(255,209,0,0.4) 100%) border-box;
  pointer-events: none;
  z-index: 0;
}

/* Inner arc — 50px gap inside the main arc (30px border + 50px gap = 80px inset each side) */
.hero-arc-inner {
  position: absolute;
  width: calc(80vw - 160px);
  height: calc(80vw - 160px);
  border-radius: 50%;
  top: var(--header-h);
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgba(0,96,201,0.4) 0%, rgba(56,176,255,0.4) 50%, rgba(255,209,0,0.4) 100%) border-box;
  pointer-events: none;
  z-index: 0;
}


/* ── Floating stat badges ── */
.hero-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: #ffffff;
  border: 1px solid rgba(0,96,201,0.15);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}
.hb-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-secondary);
  line-height: 1;
}
.hb-label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1;
}

/* Positions — outside/along the arc */
.hero-badge--tl { left: 3%;  top: 22%; animation: badge-float 4s ease-in-out infinite; }
.hero-badge--tr { right: 3%; top: 18%; animation: badge-float 4s ease-in-out infinite 1s; }
.hero-badge--bl { left: 2%;  top: 55%; animation: badge-float 4s ease-in-out infinite 0.5s; }
.hero-badge--br { right: 2%; top: 50%; animation: badge-float 4s ease-in-out infinite 1.5s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Hero wrap — contains hero + floating badges, no overflow clip ── */
.hero-wrap { position: relative; }

/* ── Floating stat badges ── */
.hero-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 10;
  pointer-events: none;
  text-align: center;
  will-change: transform, opacity;
  animation: badge-pulse 6s ease-in-out infinite;
}
.hb-val {
  font-size: 16px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
}
.hb-lbl {
  font-size: 8px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
@keyframes badge-pulse {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px);
  }
}

/* Left side */
.hb-1 { left: 3%;  top: 24%; animation-delay: 0.0s, 0.0s; }
.hb-2 { left: 5%;  top: 33%; animation-delay: 0.6s, 0.6s; }
.hb-3 { left: 4%;  top: 52%; animation-delay: 1.2s, 1.2s; }
.hb-4 { left: 2%;  top: 80%; animation-delay: 0.3s, 0.3s; }
/* Right side */
.hb-5 { right: 3%;  top: 24%; animation-delay: 0.9s, 0.9s; }
.hb-6 { right: 5%;  top: 30%; animation-delay: 1.5s, 1.5s; }
.hb-7 { right: 15%; top: 50%; animation-delay: 0.4s, 0.4s; }
.hb-8 { right: 3%;  top: 80%; animation-delay: 1.1s, 1.1s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* Orbiting dot — travels around outer arc */
.hero-orbit-wrap {
  position: absolute;
  top: var(--header-h);
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  pointer-events: none;
  z-index: 2;
  animation: drk-orbit 50s linear infinite;
}
.hero-orbit-dot {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD100 0%, #38b0ff 50%, #FFD100 100%);
  top: 0;
  left: calc(40vw + 60px);
  transform: translate(-50%, -50%);
}
@keyframes drk-orbit {
  from { transform: rotate(90deg); }
  to   { transform: rotate(450deg); }
}

/* Inner orbit dot — counter-clockwise, red/orange */
.hero-orbit-inner-wrap {
  position: absolute;
  top: var(--header-h);
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  pointer-events: none;
  z-index: 2;
  animation: drk-orbit-inner 35s linear infinite;
}
.hero-orbit-inner-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD100 100%);
  top: 0;
  left: calc(40vw - 80px); /* radius of inner arc */
  transform: translate(-50%, -50%);
}
@keyframes drk-orbit-inner {
  from { transform: rotate(90deg); }
  to   { transform: rotate(-270deg); }
}

/* Hero content — centered */
.hero-inner { position: relative; z-index: 1; margin-top: -100px; }
.hero-content {
  max-width: 660px;
  margin: 0 auto;
}
.hero-content .section-label { margin-bottom: 10px; display: block; color: var(--clr-secondary); }
.hero-content h1 { margin: 0 0 14px; color: var(--clr-primary); }
.hero-content h1 .text-accent { color: var(--clr-secondary); }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.btn-lg  { font-size: 16px; padding: 12px 26px; }
.btn-xl  { font-size: 18px; padding: 15px 30px; }
.hero-note { margin-top: 12px; font-size: 13px; color: #6b7280; }
.hero .btn-outline {
  border-color: #cbd5e0;
  color: var(--clr-primary);
  height: 46px;
  padding: 0 24px;
  font-size: 16px;
}
.hero .btn-audit {
  height: 46px;
  padding: 0 24px;
  font-size: 16px;
}
.hero .btn-outline:hover { border-color: var(--clr-secondary); color: var(--clr-secondary); }


/* ── Section Head ── */
.section-head { margin-bottom: 40px; }
.section-head.centered { text-align: center; }
.section-head h2 { margin-top: 8px; }

/* ── Industry Cards ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  display: block;
  background: rgba(13,33,55,0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
/* Corner-to-corner light sweep on hover */
.industry-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,209,0,0.18) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-15deg) translateX(0);
  pointer-events: none;
  z-index: 2;
  transition: none;
}
.industry-card:hover::before {
  transform: skewX(-15deg) translateX(550%);
  transition: transform 0.65s ease;
}
.industry-card:hover {
  border-color: rgba(255,255,255,0.06);
  background: rgba(6,13,30,0.95);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(-4px);
}
.ic-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.ic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.industry-card:hover .ic-image img { transform: scale(1.04); }
.ic-image .img-placeholder { min-height: 140px; border: none; border-radius: 0; }
.industry-card h3,
.industry-card p,
.ic-link,
.ic-icon { padding: 0 20px; }
.ic-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  margin: 20px 20px 14px;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}
.industry-card:hover .ic-icon { border-color: rgba(255,209,0,0.4); background: rgba(255,209,0,0.08); }
.industry-card h3 { font-size: 19px; margin-bottom: 8px; }
.industry-card p  { font-size: 14px; color: var(--clr-muted); line-height: 1.55; margin-bottom: 16px; }
.ic-link { font-size: 13px; font-weight: 700; color: var(--clr-accent); display: block; padding-bottom: 20px; }


/* ── Who We Serve label fix on dark bg ── */
.who-section .section-label { color: var(--clr-accent); }
.who-section .section-head h2 { color: var(--clr-white); }

/* ── Problem Section (The Hard Truth) ── */
.problem-section {
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 80px 0;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.problem-content .section-label { margin-bottom: 10px; }
.problem-content h2 { margin: 0 0 14px; }
.problem-intro {
  font-size: 16px;
  color: var(--clr-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.problem-stats {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--clr-border);
  margin-bottom: 36px;
}
.pstat {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--clr-border);
}
.pstat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  min-width: 82px;
}
.pstat-text { font-size: 15px; color: var(--clr-muted); line-height: 1.55; padding-top: 6px; }

/* Right column */
.problem-visual { display: flex; flex-direction: column; gap: 20px; }

.prob-img-ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px dashed rgba(0,96,201,0.3);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,96,201,0.04);
  color: var(--clr-muted);
}
.prob-img-ph svg { opacity: 0.45; color: var(--clr-secondary); }
.prob-img-ph span { font-size: 14px; font-weight: 600; color: var(--clr-muted); }
.prob-img-ph small { font-size: 12px; color: rgba(122,143,166,0.55); }
.prob-img-wrap img { width: 100%; border-radius: var(--radius); display: block; object-fit: cover; }

.prob-cta-card {
  background: rgba(10,25,47,0.7);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.prob-cta-card .pcb-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.prob-cta-card h3 { font-size: 20px; margin-bottom: 8px; }
.prob-cta-card p  { font-size: 14px; color: var(--clr-muted); line-height: 1.6; margin-bottom: 18px; }

/* legacy compat */
.pcb-label { display: block; font-size: 12px; font-weight: 700; color: var(--clr-secondary); text-transform: uppercase; letter-spacing: 1px; padding: 24px 28px 8px; }

/* ── Process ── */
.process-section { background: transparent; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step { flex: 1; }
.ps-num {
  font-size: 44px;
  font-weight: 800;
  color: rgba(0,96,201,0.22);
  line-height: 1;
  margin-bottom: 10px;
}
.ps-line {
  width: 36px;
  height: 3px;
  background: var(--clr-secondary);
  border-radius: 2px;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 21px; margin-bottom: 8px; }
.process-step p   { font-size: 15px; color: var(--clr-muted); line-height: 1.6; }
.process-connector {
  font-size: 22px;
  color: var(--clr-secondary);
  padding: 38px 20px 0;
  flex-shrink: 0;
  opacity: 0.45;
}

/* ── Services ── */
.services-section { background: transparent; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  display: block;
  background: rgba(13,33,55,0.5);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: rgba(0,96,201,0.5);
  background: rgba(0,96,201,0.06);
  transform: translateY(-3px);
}
.service-card--featured {
  border-color: rgba(0,96,201,0.4);
  background: rgba(0,96,201,0.08);
}

/* Service image */
.svc-image {
  width: 100%;
  height: 130px;
  overflow: hidden;
}
.svc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .svc-image img { transform: scale(1.04); }
.svc-image--placeholder { background: rgba(0,96,201,0.05); border-bottom: 1px solid var(--clr-border); }
.svc-img-ph {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-secondary);
  opacity: 0.5;
}

.svc-body { padding: 20px; }
.svc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.svc-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.svc-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-primary);
  background: var(--clr-accent);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.service-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.4; }
.service-card p   { font-size: 14px; color: var(--clr-muted); line-height: 1.55; margin-bottom: 14px; }
.svc-link { font-size: 13px; font-weight: 700; color: var(--clr-secondary); }

/* ── Why NOT Us ── */
.whynot-section {
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 72px 0;
}
.whynot-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.whynot-head h2 { margin: 8px 0 12px; }
.whynot-head p  { font-size: 15px; color: var(--clr-muted); line-height: 1.6; }
.whynot-list { display: flex; flex-direction: column; }
.wn-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--clr-border);
}
.wn-item:first-child { border-top: 1px solid var(--clr-border); }
.wn-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(255,60,60,0.1);
  color: #ff4444;
  border: 1px solid rgba(255,60,60,0.2);
}
.wn-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--clr-white); margin-bottom: 3px; }
.wn-item p { font-size: 14px; color: var(--clr-muted); line-height: 1.5; margin: 0; }
.whynot-yes {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.wy-label { font-size: 16px; font-weight: 600; color: var(--clr-body); }

/* ── Results ── */
.results-section { background: transparent; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.result-card {
  background: rgba(13,33,55,0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.result-card--featured {
  border-color: rgba(0,96,201,0.5);
  background: rgba(0,96,201,0.07);
}
.rc-client-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
}
.rc-client-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rc-client-img--ph .img-placeholder { min-height: 120px; border: none; border-radius: 0; }

.rc-industry {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px 12px;
}
.rc-metrics { display: flex; gap: 20px; padding: 0 20px 14px; }
.rc-metric { display: flex; flex-direction: column; gap: 3px; }
.rc-num   { font-size: 30px; font-weight: 800; line-height: 1; }
.rc-label { font-size: 12px; color: var(--clr-muted); }
.rc-desc  { font-size: 14px; color: var(--clr-muted); line-height: 1.55; font-style: italic; padding: 0 20px 16px; }
.rc-bar   { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.rc-bar-row { display: flex; align-items: center; gap: 10px; }
.rc-bar-label { font-size: 11px; color: var(--clr-muted); font-weight: 600; width: 36px; flex-shrink: 0; }
.rc-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.rc-bar-fill { height: 100%; background: rgba(255,255,255,0.15); border-radius: 2px; }
.rc-bar-after { background: var(--clr-accent); }

/* ── FAQ ── */
.faq-section { background: transparent; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq-head h2 { margin: 8px 0 10px; }
.faq-head p  { font-size: 15px; color: var(--clr-muted); }
.faq-list { border-top: 1px solid var(--clr-border); }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-body);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--clr-white); }
.faq-q[aria-expanded="true"] { color: var(--clr-white); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--clr-secondary);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; color: var(--clr-muted); line-height: 1.65; }

/* ── Final CTA ── */
.final-cta {
  position: relative;
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
  padding: 80px 0;
  margin-top: 0;
  overflow: hidden;
}
.fcta-bg { position: absolute; inset: 0; z-index: 0; }
.fcta-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fcta-content h2 { margin: 8px 0 14px; }
.fcta-content p  { font-size: 16px; color: var(--clr-muted); line-height: 1.65; }
.fcta-action { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.fcta-note { font-size: 13px; color: var(--clr-muted); }
.fcta-contact { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.fcta-contact span { color: var(--clr-muted); }
.fcta-contact a { color: var(--clr-secondary); font-weight: 600; transition: color 0.2s; }
.fcta-contact a:hover { color: var(--clr-body); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .industry-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .problem-inner      { grid-template-columns: 1fr; gap: 36px; }
  .whynot-inner       { grid-template-columns: 1fr; gap: 36px; }
  .faq-inner          { grid-template-columns: 1fr; gap: 36px; }
  .final-cta-inner    { grid-template-columns: 1fr; gap: 40px; }
  .results-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero               { padding: 100px 0 52px; }
  .industry-grid      { grid-template-columns: 1fr 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .results-grid       { grid-template-columns: 1fr; }
  .process-steps      { flex-direction: column; gap: 32px; }
  .process-connector  { display: none; }
  .whynot-yes         { flex-direction: column; align-items: flex-start; }
  .section            { padding: 56px 0; }
  .whynot-section,
  .problem-section    { padding: 56px 0; }
}

@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
  .rc-metrics    { flex-wrap: wrap; gap: 12px; }
  .fcta-action   { width: 100%; }
  .btn-xl        { width: 100%; justify-content: center; }
}
