/* ═══════════════════════════════════════════════════════════════════════════
   VAGT "marketing" design layer — public-site polish, 2026 refresh
   Brings the public marketing pages up to the Intelligent Solutions / IQ
   language: rounder cards with a lifted hover, amber kicker labels, gradient
   amber buttons, pill badges, and a more generous section rhythm.

   Loads AFTER main.css and only overrides presentation (radius, shadow, colour,
   spacing, type scale) — no layout structure changes. Reuses main.css tokens.
   Link this sheet on a page to upgrade it; pilot page: index.html.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Kicker labels: grey → amber, a touch bolder ───────────────────────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--amber-dark);
}
.section-label::before { width: 24px; height: 2px; }
.section-dark .section-label { color: var(--amber); }

/* ── Section rhythm: a little more air ─────────────────────────────────────── */
.section-head { margin-bottom: 56px; }

/* ── Cards: 18px radius, softer resting shadow, smoother lift ───────────────── */
.card {
  border-radius: 18px;
  border-color: rgba(13,31,60,0.09);
  padding: 30px 28px;
  box-shadow: 0 1px 3px rgba(13,31,60,0.05);
  transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}
.card:hover {
  box-shadow: 0 12px 30px rgba(13,31,60,0.13);
  transform: translateY(-2px);
  border-color: rgba(13,31,60,0.12);
}

/* ── Service icon: flat navy → subtle navy gradient, slightly larger ───────── */
.service-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--navy), var(--portal-navy-soft));
  box-shadow: 0 4px 12px rgba(13,31,60,0.18);
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; }

/* ── Card type: bump the title, ease the body ──────────────────────────────── */
.card h3 { font-size: 18px; letter-spacing: -0.01em; margin-bottom: 10px; }
.card > p { font-size: 14px; line-height: 1.75; }

/* ── Card link: brighter, on-brand amber ───────────────────────────────────── */
.card-link { color: var(--amber-dark); font-size: 12px; }

/* ── Badges: square chip → soft rounded pill ───────────────────────────────── */
.coming-badge {
  background: #fffbeb;
  color: #b45309;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 1px;
}

/* ── Amber buttons: flat → gradient with a richer shadow ───────────────────── */
.btn-amber {
  background: linear-gradient(135deg, #F5C400, #E8B400);
  box-shadow: 0 4px 14px rgba(245,196,0,0.40);
}
.btn-amber:hover {
  background: linear-gradient(135deg, #F7CD1F, #EFB900);
  box-shadow: 0 8px 22px rgba(245,196,0,0.48);
  transform: translateY(-1px);
}

/* ── Stat values: tabular figures, tighter tracking ────────────────────────── */
.stat-value { font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* ── CTA strip: rounded, inset from edges, deeper presence ─────────────────── */
.cta-strip {
  border-radius: 24px;
  margin: 0 24px 24px;
  box-shadow: 0 10px 40px rgba(13,31,60,0.18);
}

/* ── Photo break: round the corners to match the card language ─────────────── */
.photo-break img { border-radius: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   Centered, airy composition — match the Intelligent Solutions page sitewide
   ═══════════════════════════════════════════════════════════════════════════ */

/* Inner-page hero (.page-header): center it, drop the left bar + corner circle */
.page-header { text-align: center; padding-top: 76px; padding-bottom: 60px; }
.page-header::after { display: none; }
.page-header p { max-width: 620px; margin-left: auto; margin-right: auto; }

/* Section headers centered everywhere (content sections) */
.section-head { text-align: center; }
.section-sub { margin-left: auto; margin-right: auto; }

/* Eyebrow: unify to plain amber text (drop the line + the page-header bar),
   and center it within page/section headers — leaves in-form labels untouched */
.section-label::before { display: none; }
.page-header .section-label,
.section-head .section-label {
  justify-content: center;
  border-left: none;
  padding-left: 0;
}

/* ── Mobile: keep the CTA strip inset sensible on small screens ────────────── */
@media (max-width: 640px) {
  .cta-strip { margin: 0 14px 14px; border-radius: 18px; }
}
