:root {
  --blue: #0677fd;
  --blue-dark: #0455c4;
  --blue-light: #e8f1ff;
  --footer-bg: #242422;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e5e5;
  --section-dark: #1d2327;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Montserrat, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--section-dark);
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar-contact:hover {
  color: white;
}
.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex-shrink: 0;
}
.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
.top-bar-social {
  display: flex;
  gap: 8px;
}
.top-bar-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.top-bar-social a:hover {
  background: var(--blue);
  color: white;
}

/* ── MAIN NAV ── */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 16px;
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.nav-logo-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
  letter-spacing: 0.2px;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-cta {
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 200px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.35) 0px 6px 20px;
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 50px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.footer-brand-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.footer-brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 570px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  color: white;
}
.footer-app-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.app-badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}
.app-badge:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 18px;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   PAGE — NHS Framework
   B2B client-facing page. Hero: dark
   with compliance badge + bold claim
   ═══════════════════════════════════════ */

.hero {
  background: var(--section-dark);
  padding: 90px 50px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 119, 253, 0.15);
  border: 1px solid rgba(6, 119, 253, 0.3);
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 11px;
  font-weight: 700;
  color: #7db8ff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.4) 0px 6px 20px;
  transform: translateY(-1px);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: 0.2s;
  margin-left: 12px;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Hero right — approved badge card */
.hero-badge-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
}
.hbc-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.hbc-title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.hbc-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}
.hbc-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hbc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 119, 253, 0.12);
  border: 1px solid rgba(6, 119, 253, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}
.hbc-tick {
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
}

/* STATS BAR */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* TRUSTED BY */
.trusted-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 14px 50px;
  display: flex;
  align-items: center;
  column-gap: 24px;
  flex-wrap: wrap;
}
.trusted-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}
.trusted-items {
  display: flex;
  column-gap: 22px;
  flex-wrap: wrap;
}
.trusted-items span {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.trusted-items span::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}
.si {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.s-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.s-body {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
}
.s-hdr {
  margin-bottom: 48px;
}
.s-hdr.c {
  text-align: center;
}
.s-hdr.c .s-body {
  margin: 0 auto;
}

/* WHAT IS FRAMEWORK */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.framework-grid p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.bullet-list {
  list-style: none;
  margin-bottom: 28px;
}
.bullet-list li {
  font-size: 14px;
  color: var(--text);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.bullet-list li:last-child {
  border-bottom: none;
}
.bullet-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* Framework info cards */
.fw-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fwc {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  transition: 0.3s;
}
.fwc:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}
.fwc.featured {
  grid-column: 1 / -1;
  background: var(--blue);
  border-color: var(--blue);
  display: flex;
  align-items: center;
  gap: 14px;
}
.fwc.featured:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.fwc-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.fwc-lbl {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.fwc.featured .fwc-lbl {
  color: rgba(255, 255, 255, 0.6);
}
.fwc-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.fwc.featured .fwc-val {
  color: white;
  font-size: 14px;
}

/* BENEFITS — for NHS orgs */
.benefits-bg {
  background: var(--off-white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: 0.3s;
}
.bc:hover {
  border-color: var(--blue);
  box-shadow: rgba(6, 119, 253, 0.1) 0px 8px 32px;
  transform: translateY(-4px);
}
.bc-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.bc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.bc-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* HOW IT WORKS - for clients */
.how-bg {
  background: var(--blue);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px;
}
.how-inner .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.how-inner .s-title {
  color: white;
}
.how-inner .s-body {
  color: rgba(255, 255, 255, 0.65);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.hs {
  text-align: center;
  padding: 0 20px;
}
.hs-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.hs-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.hs-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* WHO CAN USE - eligibility */
.elig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.eg {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: 0.3s;
}
.eg:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}
.eg-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.eg-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.eg-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* COMPLIANCE CHECKLIST */
.compliance-bg {
  background: var(--section-dark);
}
.compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px;
}
.compliance-inner .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.compliance-inner .s-title {
  color: white;
}
.compliance-inner .s-body {
  color: rgba(255, 255, 255, 0.55);
}
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.cl-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.3s;
}
.cl-item:hover {
  background: rgba(6, 119, 253, 0.15);
  border-color: rgba(6, 119, 253, 0.35);
}
.cl-tick {
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
  font-weight: 700;
}
.cl-text {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid rgba(6, 119, 253, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.tc:hover {
  transform: translateY(-4px);
}
.tc-stars {
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--blue);
}
.tc-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.tc-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-av {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border: 2px solid rgba(6, 119, 253, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.tc-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.tc-role {
  font-size: 11px;
  color: var(--text-light);
}

/* CTA BAND */
.cta-band {
  background: var(--blue);
  padding: 80px 50px;
  text-align: center;
}
.cta-band h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  animation: fadeUp 0.4s ease both;
}
.hero h1 {
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-desc {
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-actions {
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero-badge-card {
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero,
.rates-grid,
.challenges-grid,
.req-grid,
.faq-grid,
.arrs-grid,
.how-grid,
.cta-band {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 699px) {
  .cta-buttons {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 700px) {
  .rates-grid,
  .challenges-grid,
  .req-grid,
  .faq-grid,
  .arrs-grid,
  .how-grid,
  .cta-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 999px) {
  .arrs-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .hero {
    grid-template-columns: 55% 45%;
  }
}

.hero-inner,
.framework-grid,
.fw-cards,
.benefits-grid,
.how-steps,
.elig-grid,
.checklist {
  grid-template-columns: 1fr;
}

.how-steps::before {
  display: none;
}

@media screen and (min-width: 700px) {
  .framework-grid,
  .checklist,
  .elig-grid,
  .fw-cards,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .how-steps::before {
    display: block;
  }
}

@media screen and (min-width: 999px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr 380px;
  }
}

@media screen and (max-width: 600px) {
  .hero-actions a {
    width: 100%;
    margin: 0 0 8px 0 !important;
    text-align: center !important;
    justify-content: center;
  }
}

@media screen and (min-width: 700px) {
  .how-steps {
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
  }
}
