/* ============================================================
   SAFIENCE — Airports Section Pages
   /industries/airports/
   /industries/airports/landside-security/
   /industries/airports/airside-security/
   Also used by /solutions/emotive/ and product pages (RTIS, RVIS, UMbRA, QAPLA, X-LST)
   ============================================================ */

/* ---------- Shared Variables ---------- */
.apt-page {
  --apt-navy: #08091b;
  --apt-dark: #1e1f2b;
  --apt-blue: #0229df;
  --apt-blue-light: #448ed7;
  --apt-grey-bg: #f4f5f7;
  --apt-white: #ffffff;
  --apt-text: #33343f;
  --apt-muted: #6b7280;
  --apt-border: #e5e7eb;
  --apt-radius: 12px;
  --apt-radius-lg: 20px;
  --apt-transition: all 0.3s ease-in-out;
  font-family: "Mona Sans", sans-serif;
}

/* ---------- Hero Banner (matches live Higher Education: min-height 720px) ---------- */
.apt-hero {
  font-family: "Mona Sans", sans-serif;
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding: 240px 0 80px;
  overflow: hidden;
  width: calc(100% - 10px);
  max-width: 1590px;
  margin: 5px auto 0;
  border-radius: 20px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center center;
  background-color: var(--apt-navy);
}
.apt-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.apt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,27,0) 0%, rgba(8,9,27,.10) 48%, rgba(8,9,27,.38) 100%);
  z-index: 1;
}
.apt-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.apt-hero__eyebrow {
  display: none;
}
.apt-hero h1,
.apt-hero .stadium-hero-compact__title {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  font-stretch: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--apt-white);
  margin: 0 0 20px;
  max-width: 900px;
}
.apt-hero__sub,
.apt-hero .stadium-hero-compact__subtitle {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  color: rgba(255,255,255,0.8);
  max-width: 760px;
  margin: 0 0 28px;
}
.apt-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.apt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--apt-white);
  font-size: 14px;
  font-weight: 600;
}
.apt-hero__badge i,
.apt-hero__badge .saf-icon {
  color: var(--apt-blue-light);
}

.apt-page .stadium-breadcrumb,
.apt-page .apt-breadcrumb,
.apt-page .wds-breadcrumbs,
.apt-page .yoast-breadcrumb,
.apt-page #breadcrumbs,
.apt-page .rank-math-breadcrumb,
.apt-page nav[aria-label="Breadcrumb"],
.apt-page nav[aria-label="breadcrumb"],
body.page-template-template-product-apt-php nav[aria-label="Breadcrumb"],
body.page-template-template-emotive-php nav[aria-label="Breadcrumb"],
body.page-template-template-insurance-php nav[aria-label="Breadcrumb"],
body.page-template-template-product-apt-php .stadium-breadcrumb,
body.page-template-template-emotive-php .stadium-breadcrumb,
body.page-template-template-insurance-php .stadium-breadcrumb {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* RVIS-Banner-2.png has charcoal letterbox bars baked in (y 0–134 and 528–628 of 628).
   Crop them so portraits fill the HE-style hero card. */
.apt-page--rvis .apt-hero__img {
  object-fit: cover;
  object-position: center 52.7%;
  transform: scale(1.62);
  transform-origin: 50% 52.7%;
}

.apt-faq {
  max-width: 820px;
  margin: 0 auto;
}
.apt-faq__item {
  background: var(--apt-white);
  border: 1px solid var(--apt-border);
  border-radius: var(--apt-radius);
  padding: 4px 24px;
  margin-bottom: 12px;
}
.apt-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--apt-dark);
  padding: 16px 0;
  list-style: none;
}
.apt-faq__item summary::-webkit-details-marker {
  display: none;
}
.apt-faq__item p {
  margin: 0 0 16px;
  color: var(--apt-text);
  line-height: 1.65;
}

/* ---------- Section Containers ---------- */
.apt-section {
  padding: 80px 0;
}
.apt-section--grey {
  background: var(--apt-grey-bg);
}
.apt-section--dark {
  background: var(--apt-navy);
  color: var(--apt-white);
}
.apt-section--dark h2,
.apt-section--dark h3 {
  color: var(--apt-white);
}
.apt-section--dark p,
.apt-section--dark li {
  color: rgba(255,255,255,0.75);
}
.apt-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Headers ---------- */
.apt-section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--apt-blue);
  margin-bottom: 12px;
}
.apt-section--dark .apt-section__eyebrow {
  color: var(--apt-blue-light);
}
.apt-section h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--apt-dark);
  margin-bottom: 16px;
}
.apt-section h3 {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--apt-dark);
  margin-bottom: 12px;
}
.apt-section__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--apt-muted);
  max-width: 720px;
  margin-bottom: 40px;
}

/* ---------- CTA Buttons ---------- */
.apt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  height: 56px;
  font-size: 17px;
  font-weight: 600;
  color: var(--apt-white);
  border-radius: 48px;
  text-decoration: none;
  transition: var(--apt-transition);
  border: none;
  cursor: pointer;
  background: radial-gradient(130% 130% at 0% 100%, #448ed7 29%, #0025e0 70%, #235dca 100%);
}
.apt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,41,223,0.3);
  color: var(--apt-white);
}
.apt-btn--outline {
  background: transparent;
  border: 2px solid var(--apt-blue);
  color: var(--apt-blue);
}
.apt-btn--outline:hover {
  background: var(--apt-blue);
  color: var(--apt-white);
}
.apt-btn--white {
  background: var(--apt-white);
  color: var(--apt-navy);
}
.apt-btn--white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--apt-navy);
}
.apt-btn--sm {
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
}
.apt-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ---------- Two-Column Problem/Solution ---------- */
.apt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.apt-split--reverse {
  direction: rtl;
}
.apt-split--reverse > * {
  direction: ltr;
}
.apt-split--text-only {
  grid-template-columns: 1fr;
  max-width: 800px;
}
.apt-split__img {
  border-radius: var(--apt-radius-lg);
  overflow: hidden;
}
.apt-split__img img {
  width: 100%;
  height: auto;
  display: block;
}
.apt-split__content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--apt-text);
  margin-bottom: 16px;
}

/* ---------- Zone Cards ---------- */
.apt-zones {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.apt-zone-card {
  background: var(--apt-white);
  border-radius: var(--apt-radius-lg);
  padding: 32px;
  border: 1px solid var(--apt-border);
  transition: var(--apt-transition);
  position: relative;
  overflow: hidden;
}
.apt-zone-card:hover {
  border-color: var(--apt-blue);
  box-shadow: 0 8px 32px rgba(2,41,223,0.08);
  transform: translateY(-4px);
}
.apt-zone-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--apt-blue), var(--apt-blue-light));
  color: var(--apt-white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.apt-zone-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--apt-dark);
}
.apt-zone-card__location {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--apt-muted);
  margin-bottom: 16px;
}
.apt-zone-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--apt-text);
  margin-bottom: 16px;
}
.apt-zone-card__status-quo {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}
.apt-zone-card__status-quo strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #dc2626;
  margin-bottom: 4px;
}
.apt-zone-card__status-quo p {
  font-size: 14px;
  line-height: 1.55;
  color: #7f1d1d;
  margin: 0;
}
.apt-zone-card__solution {
  background: #eff6ff;
  border-left: 3px solid var(--apt-blue);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}
.apt-zone-card__solution strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--apt-blue);
  margin-bottom: 4px;
}
.apt-zone-card__solution p {
  font-size: 14px;
  line-height: 1.55;
  color: #1e3a5f;
  margin: 0;
}
.apt-zone-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.apt-tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--apt-transition);
}
.apt-tech-tag:hover {
  transform: translateY(-1px);
}
.apt-tech-tag--rtis {
  background: #dbeafe;
  color: #1d4ed8;
}
.apt-tech-tag--rvis {
  background: #fce7f3;
  color: #be185d;
}
.apt-tech-tag--umbra {
  background: #e0e7ff;
  color: #4338ca;
}
.apt-tech-tag--emotive {
  background: #d1fae5;
  color: #065f46;
}
.apt-tech-tag--qapla {
  background: #fef3c7;
  color: #92400e;
}

/* ---------- Stats Row ---------- */
.apt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.apt-stat {
  padding: 24px;
}
.apt-stat__number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: var(--apt-blue-light);
  margin-bottom: 8px;
}
.apt-section--dark .apt-stat__number {
  color: var(--apt-blue-light);
}
.apt-stat__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--apt-muted);
  line-height: 1.4;
}
.apt-section--dark .apt-stat__label {
  color: rgba(255,255,255,0.65);
}

/* Inset rounded stats bar (product pages; not a full-bleed stripe) */
.apt-stats-bar {
  background: var(--apt-navy);
  border-radius: var(--apt-radius-lg);
  padding: 48px 32px;
  overflow: hidden;
}
.apt-stats-bar .apt-stat__number {
  color: var(--apt-blue-light);
}
.apt-stats-bar .apt-stat__label {
  color: rgba(255,255,255,0.75);
}
.apt-page--emotive .apt-stats-bar {
  background: linear-gradient(165deg, #1a62c8 0%, #0f4aa8 48%, #0c3d8a 100%);
}

/* ---------- Comparison Table ---------- */
.apt-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--apt-radius);
  overflow: hidden;
  border: 1px solid var(--apt-border);
}
.apt-compare thead th {
  background: var(--apt-navy);
  color: var(--apt-white);
  font-size: 15px;
  font-weight: 700;
  padding: 18px 24px;
  text-align: left;
}
.apt-compare tbody td {
  padding: 16px 24px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--apt-border);
  color: var(--apt-text);
}
.apt-compare tbody tr:last-child td {
  border-bottom: none;
}
.apt-compare tbody tr:nth-child(even) {
  background: rgba(244,245,247,0.5);
}
.apt-compare .apt-compare__highlight {
  font-weight: 600;
  color: var(--apt-blue);
}

.apt-le-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--apt-muted);
  margin-top: 16px;
}
.apt-page--le .apt-stat__number {
  font-size: clamp(28px, 3.2vw, 44px);
}

/* ---------- Product Toolkit Grid ---------- */
.apt-toolkit {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.apt-toolkit-item {
  background: var(--apt-white);
  border-radius: var(--apt-radius);
  padding: 28px 24px;
  border: 1px solid var(--apt-border);
  text-align: center;
  text-decoration: none;
  transition: var(--apt-transition);
}
.apt-toolkit-item:hover {
  border-color: var(--apt-blue);
  box-shadow: 0 4px 20px rgba(2,41,223,0.1);
  transform: translateY(-3px);
}
.apt-toolkit-item__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--apt-dark);
  margin-bottom: 8px;
}
.apt-toolkit-item__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--apt-muted);
}

/* ---------- Workflow / Process Steps ---------- */
.apt-workflow {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}
.apt-workflow__step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.apt-workflow__step::after {
  content: "";
  position: absolute;
  top: 48px;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--apt-blue);
}
.apt-workflow__step:last-child::after {
  display: none;
}
.apt-workflow__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apt-blue), var(--apt-blue-light));
  color: var(--apt-white);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.apt-workflow__time {
  font-size: 13px;
  font-weight: 700;
  color: var(--apt-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.apt-workflow__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--apt-dark);
  margin-bottom: 6px;
}
.apt-workflow__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--apt-muted);
}

/* ---------- Landside / Airside Tabs on Hub ---------- */
.apt-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.apt-duo__card {
  background: var(--apt-white);
  border-radius: var(--apt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--apt-border);
  transition: var(--apt-transition);
}
.apt-duo__card:hover {
  border-color: var(--apt-blue);
  box-shadow: 0 12px 40px rgba(2,41,223,0.1);
  transform: translateY(-4px);
}
.apt-duo__img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.apt-duo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apt-duo__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,9,27,0.5) 0%, transparent 50%);
}
.apt-duo__body {
  padding: 32px;
}
.apt-duo__body h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.apt-duo__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--apt-text);
  margin-bottom: 20px;
}
.apt-duo__zones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.apt-duo__zone-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--apt-grey-bg);
  color: var(--apt-text);
}

/* ---------- CTA Banner ---------- */
.apt-cta-banner {
  background: linear-gradient(135deg, var(--apt-navy) 0%, #0a1628 100%);
  padding: 80px 0;
  text-align: center;
}
.apt-cta-banner h2 {
  color: var(--apt-white);
  margin-bottom: 16px;
}
.apt-cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.apt-cta-banner .apt-cta-group {
  justify-content: center;
}

/* ---------- Contact Form ---------- */
.apt-contact-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.apt-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.apt-contact-form__field {
  display: flex;
  flex-direction: column;
}
.apt-contact-form__field--full {
  margin-bottom: 24px;
}
.apt-contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.apt-contact-form__field input,
.apt-contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--apt-white);
  font-size: 16px;
  font-family: inherit;
  transition: var(--apt-transition);
  box-sizing: border-box;
}
.apt-contact-form__field input::placeholder,
.apt-contact-form__field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.apt-contact-form__field input:focus,
.apt-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--apt-blue-light);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(68,142,215,0.15);
}
.apt-contact-form__field textarea {
  resize: vertical;
  min-height: 80px;
}
.apt-contact-form .apt-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .apt-contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Zone Header (for sub-pages) ---------- */
.apt-zone-header {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 16px;
}
.apt-zone-header__label {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--apt-blue), var(--apt-blue-light));
  color: var(--apt-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.apt-zone-header h2 {
  margin-bottom: 8px;
}
.apt-zone-header p {
  font-size: 16px;
  color: var(--apt-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Privacy Guardrails Callout ---------- */
.apt-guardrail {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--apt-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.apt-guardrail__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}
.apt-guardrail h3 {
  color: var(--apt-white);
  font-size: 22px;
  margin-bottom: 12px;
}
.apt-guardrail p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.6;
}
.apt-guardrail__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.apt-guardrail__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.apt-guardrail__item i {
  color: #22c55e;
  font-size: 14px;
}
.apt-split .apt-guardrail__item {
  color: var(--apt-text);
}
.apt-split .apt-guardrail__item .saf-icon {
  color: #16a34a;
}

/* ---------- Breadcrumb ---------- */
.apt-breadcrumb {
  padding: 12px 0;
  font-size: 14px;
}
.apt-breadcrumb a {
  color: var(--apt-muted);
  text-decoration: none;
}
.apt-breadcrumb a:hover {
  color: var(--apt-blue);
}
.apt-breadcrumb span {
  color: var(--apt-text);
  font-weight: 600;
}
.apt-breadcrumb .sep {
  margin: 0 8px;
  color: var(--apt-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .apt-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apt-duo {
    grid-template-columns: 1fr;
  }
  .apt-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .apt-guardrail__items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .apt-hero {
    min-height: 560px;
    padding: 180px 0 48px;
  }
  .apt-section {
    padding: 56px 0;
  }
  .apt-stats-bar {
    padding: 36px 16px;
  }
  .apt-zones {
    grid-template-columns: 1fr;
  }
  .apt-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .apt-toolkit {
    grid-template-columns: 1fr 1fr;
  }
  .apt-workflow {
    flex-direction: column;
  }
  .apt-workflow__step::after {
    display: none;
  }
  .apt-guardrail {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
@media (max-width: 480px) {
  .apt-stats {
    grid-template-columns: 1fr;
  }
  .apt-toolkit {
    grid-template-columns: 1fr;
  }
}
