/*!
Theme Name: Healthcare MSO
Author: Geeks360 (Anatoly)
Author URI: https://geeks360.net/
Description: The custom theme for Healthcare MSO
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: healthcare-mSO
Tags: geeks360, custom theme, custom design
*/

:root {
  --ink: #1f2d3a;
  --muted: #667381;
  --blue: #27aee4;
  --deep: #071525;
  --paper: #fffcf9;
  --soft: #eaf8fe;
  --line: #d9eef7;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 54px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 54px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(25, 40, 55, 0.08);
}

.menu-toggle {
  display: none;
}

.site-nav {
  width: min(100%, 1920px);
  height: 54px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

/* wp_nav_menu wraps items in <ul class="site-nav-menu"><li><a>…
   display: contents makes the wrapper transparent so <a> become
   direct grid items of .site-nav, matching the hardcoded fallback. */
.site-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-menu,
.site-nav-menu > li {
  display: contents;
}

.site-nav a {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: rgba(39, 174, 228, 0.08);
  outline: none;
}

.section {
  width: 100%;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  height: min(760px, 40vw);
  min-height: 430px;
  background-color: var(--deep);
  background-image: url("assets/hero-doctors.jpg");
  background-size: auto 136%;
  background-position: 0 45%;
  overflow: hidden;
}

/* Dark left-to-right overlay kept in a pseudo so that an
   ACF Background image set via inline style on .hero only
   replaces the photo, not the overlay. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    rgba(0, 13, 35, 0.98) 0%,
    rgba(3, 23, 43, 0.92) 39%,
    rgba(3, 23, 43, 0.18) 66%,
    rgba(3, 23, 43, 0.02) 100%
  );
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 45% 43%, rgba(19, 149, 202, 0.28), transparent 31%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding-top: clamp(74px, 8.7vw, 166px);
  padding-left: clamp(164px, 18.4vw, 353px);
  color: #fff;
}

.brand-lockup {
  display: flex;
  align-items: center;
  margin-bottom: clamp(22px, 2.35vw, 45px);
}

.hero-logo {
  width: clamp(140px, 14.6vw, 280px);
  height: auto;
  display: block;
}

.hero h1 {
  margin: 0;
  max-width: clamp(390px, 39.6vw, 760px);
  font-size: clamp(39px, 4.05vw, 78px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  max-width: clamp(330px, 37.5vw, 720px);
  margin: clamp(14px, 1.35vw, 26px) 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(8px, 0.9vw, 17px);
  font-weight: 500;
  line-height: 1.6;
}

.programs {
  padding: 0 0 122px;
  background: var(--paper);
}

.programs .container {
  width: min(1200px, calc(100% - 48px));
}

.stats-row {
  position: relative;
  min-height: 285px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  padding-top: 52px;
}

.stats-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 214px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #dfe8ed 0 26%,
    #27aee4 26% 50%,
    #dfe8ed 50% 75%,
    #27aee4 75% 100%
  );
}

.stats-row div {
  position: relative;
  display: flex;
  min-height: 146px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 28px;
  color: var(--blue);
}

.stats-row div::after {
  content: none;
}

.stats-row strong {
  color: var(--blue);
  font-family: "Geist", "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.stats-row span {
  color: #121212;
  font-family: "Geist", "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.001em;
  text-align: center;
}

h2 {
  margin: 0;
  color: #1d2b35;
  font-size: 34px;
  line-height: 1.14;
  text-align: center;
}

.programs h2 {
  max-width: 757px;
  margin: 0 auto;
  padding: 0 0 66px;
  color: #171717;
  font-size: 59px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.eyebrow {
  margin: 96px 0 11px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.57em;
  line-height: 1.68;
  text-align: center;
  text-transform: uppercase;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 284px);
  gap: 29px 21px;
  justify-content: center;
}

.program-grid article {
  min-height: 483px;
  padding: 43px 39px 36px;
  background: var(--paper);
  border: 1px solid #e3f4fb;
  border-radius: 0;
  box-shadow: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.program-grid article:hover,
.program-grid article:focus-within,
.program-grid article.is-active {
  background: #e5f4ff;
  box-shadow: 0 34px 58px rgba(31, 53, 65, 0.2);
  transform: translateY(-1px);
}

.program-grid article::before {
  content: none;
}

.program-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--blue);
}

.program-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

h3 {
  margin: 0;
  color: #223342;
  font-size: 17px;
  line-height: 1.25;
}

.program-grid h3 {
  color: #111;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.25;
}

.program-grid h3::before {
  content: "";
  display: block;
  width: 186px;
  height: 1px;
  margin: 45px 0 27px;
  background: #98a6b4;
}

.program-grid p {
  margin: 13px 0 0;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.91;
  letter-spacing: -0.001em;
}

p,
li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.integrated {
  padding: 78px 0 121px;
  background: #f9f9f9;
}

.integrated .container {
  width: min(1200px, calc(100% - 48px));
}

.integrated .eyebrow {
  margin: 0 0 21px;
}

.integrated h2 {
  max-width: 710px;
  margin: 0 auto 52px;
  color: #212121;
  font-size: 59px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.model-layout {
  display: grid;
  grid-template-columns: 532px 624px;
  gap: 44px;
  min-height: 816px;
}

.model-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}

.model-tabs li {
  min-height: 109px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  padding: 0 22px;
  color: #212121;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.05em;
  background: #ecf4fd;
  border-radius: 10px;
}

.model-tabs .active {
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(39, 174, 228, 0.32);
}

.model-tabs strong {
  width: 47px;
  flex: 0 0 47px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.model-tabs .active strong {
  color: #fff;
}

.model-card {
  position: relative;
  min-height: 816px;
  border-radius: 14px;
  overflow: hidden;
}

/* Only the active tab's panel is visible; JS toggles the .active class. */
.model-card:not(.active) {
  display: none;
}

.model-tabs li {
  cursor: pointer;
  user-select: none;
}

.model-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.08) 58%),
    linear-gradient(0deg, rgba(8, 77, 119, 0.62), rgba(8, 77, 119, 0.28));
}

.model-card div {
  position: absolute;
  z-index: 1;
  left: 56px;
  right: 44px;
  bottom: 62px;
  color: #fff;
}

.model-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.model-card h3,
.model-card li {
  color: #fff;
}

.model-card h3 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.model-card ul {
  margin: 22px 0 0;
  padding-left: 28px;
  list-style: disc;
}

.model-card li {
  display: list-item;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.91;
  letter-spacing: -0.001em;
}

.model-card li::marker {
  color: #fff;
  font-size: 0.9em;
}

.delivery {
  position: relative;
  min-height: 697px;
  color: #fff;
  background: var(--deep);
}

.delivery-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/delivery-figma.png");
  background-size: cover;
  background-position: center;
}

/* Dark overlay kept on a pseudo so ACF Background inline style
   (which replaces background-image on .delivery-bg) doesn't kill it. */
.delivery-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.63));
}

.delivery-content {
  position: relative;
  display: grid;
  grid-template-columns: 590px 418px;
  gap: 192px;
  align-items: start;
  min-height: 697px;
  padding-top: 260px;
}

.delivery .eyebrow {
  margin: 0 0 14px;
  text-align: left;
}

.delivery h2 {
  color: #fff;
  text-align: left;
  font-size: 59px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.delivery-content > div:first-child > p:not(.eyebrow) {
  width: 590px;
  margin: 23px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.001em;
}

.glass-panel {
  width: 418px;
  min-height: 351px;
  margin-top: 86px;
  padding: 32px 42px;
  background: rgba(39, 174, 228, 0.78);
  backdrop-filter: blur(1px);
}

.glass-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.glass-panel li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.42;
  letter-spacing: -0.001em;
}

.glass-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 1px;
  background: #fff;
}

.work-with {
  padding: 80px 0 80px;
  background: var(--paper);
}

.columns {
  position: relative;
  display: grid;
  grid-template-columns: 366px 216px 281px;
  column-gap: 234px;
  align-items: start;
}

.columns h2 {
  text-align: left;
  color: #212121;
  font-size: 59px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.columns .eyebrow {
  margin: 0 0 14px;
  text-align: left;
}

.columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.columns li {
  position: relative;
  margin-bottom: 17px;
  padding-left: 41px;
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.001em;
}

.columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 25px;
  height: 25px;
  background: var(--blue);
  border-radius: 50%;
}

.columns li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 11px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.why-us {
  padding: 80px 0 85px;
  background: var(--paper);
}

.why-us h2 {
  max-width: 770px;
  margin: 0 auto 60px;
  color: #212121;
  font-size: 59px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.why-us .eyebrow {
  margin: 0 0 11px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 582px);
  gap: 47px 36px;
  justify-content: center;
}

.why-grid article {
  min-height: 636px;
  background: #f2f2f2;
  border: 0;
}

.why-grid img {
  width: 100%;
  height: 366px;
  display: block;
  object-fit: cover;
}

.why-grid h3 {
  padding: 38px 41px 0;
  color: #212121;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.05em;
}

.why-grid p {
  margin: 0;
  padding: 13px 41px 42px;
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.001em;
}

.areas-map {
  padding: 80px 0 90px;
  background: #fff;
  text-align: center;
}

.areas-map h2 {
  max-width: 770px;
  margin: 0 auto 40px;
  color: #212121;
  font-size: 59px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.areas-map-image {
  display: flex;
  justify-content: center;
}

.areas-map-image img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
}

.cta {
  position: relative;
  min-height: 412px;
  display: flex;
  align-items: center;
  padding: 0;
  background-color: var(--blue);
  background-image: url("assets/cta-figma.jpg");
  background-size: cover;
  background-position: center;
}

/* Blue tint overlay kept on a pseudo so ACF Background inline style
   on .cta only replaces the photo, not the tint. */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(39, 174, 228, 0.78);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #fff;
  max-width: 757px;
  margin: 0 auto;
  font-size: 59px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.site-footer {
  min-height: 518px;
  padding: 58px 0 30px;
  background: var(--paper);
}

.site-footer .container {
  width: min(1200px, calc(100% - 48px));
}

.footer-grid {
  display: grid;
  grid-template-columns: 250px 315px 275px 250px;
  column-gap: 44px;
  align-items: start;
}

.footer-company img {
  width: 210px;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.footer-service,
.footer-summary p,
.footer-address p {
  margin: 0;
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.001em;
}

.footer-summary > p:first-child {
  margin-bottom: 55px;
}

.footer-note {
  position: relative;
  padding-left: 22px;
}

.footer-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 8px;
  width: 2px;
  background: var(--blue);
}

.site-footer h3 {
  margin: 0 0 42px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.site-footer a {
  display: inline-block;
  margin: 0 0 38px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.contact-label {
  margin: 0 0 9px;
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-name {
  margin: 0 0 38px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-address {
  padding-top: 66px;
}

.footer-address strong {
  font-weight: 600;
}

.footer-address .copyright {
  margin-top: 62px;
  color: #8b8b8b;
}

@media (max-width: 1280px) {
  .container,
  .programs .container,
  .integrated .container,
  .site-footer .container {
    width: min(1120px, calc(100% - 40px));
  }

  .program-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .program-grid article {
    padding: 38px 28px 34px;
  }

  .program-grid h3 {
    font-size: clamp(24px, 2.25vw, 30px);
  }

  .program-grid h3::before {
    width: 100%;
  }

  .model-layout {
    grid-template-columns: minmax(390px, 0.46fr) minmax(500px, 0.54fr);
    gap: 32px;
  }

  .model-tabs li {
    padding: 0 18px;
    font-size: 26px;
  }

  .delivery-content {
    grid-template-columns: minmax(0, 590px) 380px;
    gap: 70px;
  }

  .glass-panel {
    width: 380px;
    padding: 30px 34px;
  }

  .columns {
    grid-template-columns: 330px 1fr 1.05fr;
    column-gap: 72px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1.15fr 0.9fr 0.9fr;
    column-gap: 34px;
  }
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header,
  .site-nav {
    height: auto;
  }

  .site-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-nav a {
    height: 46px;
    font-size: 13px;
  }

  .hero {
    height: 560px;
    min-height: 560px;
    background-size: auto 118%;
    background-position: 34% center;
  }

  .hero-content {
    padding-top: 98px;
    padding-left: 48px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: 58px;
  }

  .hero p {
    max-width: 560px;
    font-size: 14px;
  }

  .stats-row {
    min-height: 220px;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 34px;
  }

  .stats-row::after {
    content: none;
  }

  .stats-row div {
    min-height: 100px;
    gap: 12px;
  }

  .programs {
    padding-bottom: 88px;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .program-grid article {
    min-height: 430px;
  }

  .integrated {
    padding-bottom: 90px;
  }

  .model-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .model-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .model-tabs li {
    min-height: 96px;
    margin: 0;
  }

  .model-card {
    min-height: 650px;
  }

  .delivery-content {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 620px;
    padding: 150px 0 78px;
  }

  .delivery-content > div:first-child > p:not(.eyebrow) {
    width: auto;
    max-width: 620px;
  }

  .glass-panel {
    width: min(418px, 100%);
    margin-top: 0;
  }

  .columns {
    grid-template-columns: 1fr 1fr;
    gap: 34px 56px;
  }

  .columns > div {
    grid-column: 1 / -1;
  }

  .why-grid {
    gap: 32px;
  }

  .why-grid article {
    min-height: 0;
  }

  .why-grid img {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 52px;
  }

  .footer-address {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 54px;
  }

  .container,
  .programs .container,
  .integrated .container,
  .site-footer .container {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 54px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    margin-left: auto;
    display: grid;
    place-items: center;
    padding: 0;
    color: #212121;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(8px);
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 54px;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 8px 0 12px;
    background: var(--paper);
    box-shadow: 0 18px 34px rgba(20, 40, 55, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    height: 44px;
    justify-content: flex-start;
    padding: 0 24px;
    font-size: 14px;
    text-align: left;
  }

  .hero {
    height: 640px;
    min-height: 640px;
    background-size: auto 108%;
    background-position: 44% center;
  }

  .hero-content {
    padding: 86px 20px 0;
  }

  .hero-logo {
    width: 174px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 37px;
    line-height: 1.18;
  }

  .hero p {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.7;
  }

  .stats-row {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 0 24px;
  }

  .stats-row div {
    min-height: 82px;
    border-bottom: 1px solid #e5edf1;
  }

  .programs {
    padding-bottom: 72px;
  }

  .programs h2,
  .integrated h2,
  .delivery h2,
  .columns h2,
  .why-us h2,
  .areas-map h2,
  .cta h2 {
    font-size: 42px;
    line-height: 1.16;
  }

  .eyebrow {
    margin-top: 56px;
    font-size: 13px;
    letter-spacing: 0.35em;
  }

  .programs h2 {
    padding-bottom: 42px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-grid article {
    min-height: 0;
    padding: 34px 32px 38px;
  }

  .integrated {
    padding: 64px 0 72px;
  }

  .model-tabs {
    grid-template-columns: 1fr;
  }

  .model-tabs li {
    min-height: 84px;
    font-size: 23px;
  }

  .model-card {
    min-height: 620px;
  }

  .model-card div {
    left: 28px;
    right: 24px;
    bottom: 36px;
  }

  .model-card h3,
  .model-card span {
    font-size: 26px;
  }

  .delivery-content {
    min-height: 650px;
    padding: 104px 0 64px;
  }

  .delivery-content > div:first-child > p:not(.eyebrow) {
    font-size: 15px;
  }

  .glass-panel {
    padding: 26px;
  }

  .glass-panel li {
    line-height: 2;
  }

  .work-with {
    padding: 64px 0;
  }

  .columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .columns li {
    margin-bottom: 12px;
    line-height: 1.8;
  }

  .why-us {
    padding: 64px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid img {
    height: 260px;
  }

  .why-grid h3 {
    padding: 30px 28px 0;
    font-size: 26px;
  }

  .why-grid p {
    padding: 12px 28px 34px;
  }

  .cta {
    min-height: 330px;
  }

  .site-footer {
    padding: 48px 0 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-company img {
    width: 180px;
    margin-bottom: 22px;
  }

  .footer-summary > p:first-child,
  .site-footer a,
  .contact-name {
    margin-bottom: 22px;
  }

  .site-footer h3 {
    margin-bottom: 24px;
  }

  .footer-address .copyright {
    margin-top: 28px;
  }
}

.powered-row{
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
}
.powered-row a{
    text-decoration: underline;
    color: #27aee4;
    font-size: 12px;
}