/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --color-bg: #ffffff;
  --color-text: #14212b;
  --color-body: #4c4d56;
  --color-heading: #0e0e0e;              /* was mistakenly --font-heading */
  --color-accent: #1b6ef3;
  --color-accent-600: #175fd4;
  --color-accent-700: #124bab;
  --color-divider: rgba(20, 33, 43, 0.12);

  --font-heading: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-lg: 20px;
  --header-h: 88px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* 2. Base / typography ----------------------------------------------------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 1rem;
}

h1 {
  line-height: 1.14;
  letter-spacing: -0.01em;
  font-size: clamp(38px, 4.6vw, 66px);
}

p { margin: 0 0 1rem; color: var(--color-body); }

a { color: var(--color-accent); text-decoration: none; transition: color .28s var(--ease); }
a:hover { color: var(--color-accent-600); }

img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: var(--radius-sm); }
::selection { background: rgba(27, 110, 243, .25); }

.container { max-width: 1290px; }

/* soft decorative circles inside the hero */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  opacity: .5;
}

/* 3. Entrance animation ---------------------------------------------------- */
.anim-up { animation: animUp .8s var(--ease) both; }
@keyframes animUp {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* 4. Buttons --------------------------------------------------------------- */
.btn { font-family: var(--font-body); }        /* was var(--font-base) */
.brand__name { font-family: var(--font-heading); }
.hero::before { filter: invert(1); }           /* was invert(90) */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .28s var(--ease), color .28s var(--ease),
              transform .28s var(--ease), box-shadow .28s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--color-accent); color: #ffffff; }
.btn-primary:hover {
  background: var(--color-accent-600);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(27, 110, 243, .28);
  transform: translateY(-2px);
}
.btn-primary:active { background: var(--color-accent-700); transform: translateY(0); }

.btn-sm { height: 48px; padding: 0 28px; font-size: 15px; }

/* 5. Header & navigation --------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 1030;
  background: var(--color-bg);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
/* sticky variant, toggled by JS after scrolling */
.site-header.is-stuck {
  position: fixed;
  inset: 0 0 auto 0;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(20, 33, 43, .10);
  animation: headerDrop .4s var(--ease) both;
}
@keyframes headerDrop {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
  max-width: 1600px;
  margin: 0 auto;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 38px; height: 38px; display: grid; place-items: center; }
.brand__mark svg { width: 34px; height: 34px; }
.brand img {width: 150px;}
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: color .25s var(--ease);
}
.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-item.is-active > .nav-link { color: var(--color-accent); }
.nav-link .caret { transition: transform .25s var(--ease); }
.nav-item.is-open > .nav-link .caret { transform: rotate(180deg); }

/* dropdowns */
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 236px;
  padding: 12px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(20, 33, 43, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
}
.nav-item:hover > .dropdown-menu-custom,
.nav-item.is-open > .dropdown-menu-custom {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu-custom a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}
.dropdown-menu-custom a:hover { background: #f4f7fc; color: var(--color-accent); }

.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.header-divider { width: 1px; height: 26px; background: var(--color-divider); }


.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: color .25s var(--ease);
}
.icon-btn:hover { color: var(--color-accent); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--color-divider);
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; width: 14px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100%;
  z-index: 1050;
  padding: 26px 22px 40px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(20, 33, 43, .22);
  transform: translateX(102%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mobile-nav__close {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--color-divider);
  background: transparent; cursor: pointer;
  font-size: 20px; line-height: 1;
}
.mobile-nav__close:hover { background: #f4f7fc; }
.m-item { border-bottom: 1px solid var(--color-divider); }
.m-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  background: transparent; border: 0;
  font: inherit; font-weight: 500; color: var(--color-text);
  text-align: left; cursor: pointer;
}
.m-sub { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.m-sub a { padding: 10px 4px 10px 18px; font-size: 15px; color: var(--color-body); }
.m-item.is-open .m-link .caret { transform: rotate(180deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(20, 33, 43, .5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* 6. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  margin: 0 40px;
  padding: 96px 0 104px;
  border-radius: var(--radius-lg);
  background: #01013F;
  overflow: hidden;
}
/* decorative line pattern, inverted so the light linework reads on navy */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.png") center/cover no-repeat;
  filter: invert(90);
  mix-blend-mode: screen;
  opacity: .15;
  pointer-events: none;
}
.hero .blob--a { width: 520px; height: 520px; top: -180px; left: -180px; background: rgba(126, 76, 200, .30); }


.hero__content { position: relative; z-index: 2; }
.hero__kicker {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 26px;
}
.hero__title { margin-bottom: 26px; color: #ffffff; }
.hero__title .accent { color: #2f80ff; }
.hero__text {margin-bottom: 36px; font-size: 19px; color: #ffffff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media { position: relative; z-index: 2; }
.hero__media img { margin-left: auto; animation: floatY 7s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* About / Who we are ------------------------------------------------------- */
.about { padding: 110px 0 120px; }

.about__head {margin: 0 auto 50px;text-align: center;}

.section-kicker {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.section-title {
  font-size: 48px;
  line-height: 54px;
  margin: 0;
  font-weight: 600;
}

/* stacked imagery ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 411ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â533 main, 291ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â381 overlay */
.about__media {
  position: relative;
  width: 520px;
  max-width: 100%;
  margin-left: auto;
}
.about__img-main {
  width: 389px;
  max-width: 100%;
  margin-left: 120px;
  border-radius: 10px;
}
.about__img-sub {
  position: absolute;
  left: -80px;
  top: 76px;
  width: 291px;
  max-width: 60%;
  border-radius: 14px;
}

/* copy column */
.about__content { max-width: 560px; }
.about__lead {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 26px;
  font-family: var(--font-body);
}
.about__text { font-size: 16px; line-height: 1.75; margin-bottom: 40px; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.feature-item:last-child { margin-bottom: 0; }
.feature-item__icon {
  flex: none;
  width: 48px;
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease);
}
.feature-item__icon img { width: 48px; height: auto; }
.feature-item:hover .feature-item__icon { transform: translateY(-4px); }
.feature-item h4 { font-size: 18px; margin: 0 0 4px; }
.feature-item p { margin: 0; font-size: 16px; line-height: 1.75; }

/* Services ----------------------------------------------------------------- */
.services {
  position: relative;
  padding: 0 0 120px;
}
/* hexagon pattern band sitting behind the white card */
.services::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  bottom: 0;
  background: url("../images/services-bg.png") center top / cover no-repeat;
  z-index: 0;
  background-color: #F7F7F9;
}

.services__card {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 70px 60px 76px;
  background: #ffffff;
  border: 1px solid rgba(20, 33, 43, .08);
  border-radius: 10px;
}

.services__head {margin: 0 auto 56px;text-align: center;max-width: 600px;}

.service-card__icon {
  display: flex;
  align-items: flex-end;
  min-height: 110px;
  margin-bottom: 34px;
}
.service-card__icon img {
  max-height: 110px;
  width: auto;
  transition: transform .35s var(--ease);
}
.service-card:hover .service-card__icon img { transform: scale(1.14); }

.service-card__title {font-size: 21px;line-height: 1.35;margin: 0 0 10px;}
.service-card__title a { color: var(--color-text); }
.service-card__title a:hover { color: var(--color-accent); }
.service-card p {margin: 0;font-size: 16px;line-height: 26px;}


/* Counter ------------------------------------------------------------------ */
.counter {
  padding: 78px 0;
  background: #0a1361 url("../images/counter-bg.jpg") center / cover no-repeat;
}
.counter-item { text-align: center; }
.counter-item__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #1b6ef3;
  margin: 0 0 8px;
}
.counter-item__label {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* Case studies --------------------------------------------------------- */
.cases { padding: 110px 0 120px; }
.cases__head { text-align: center; margin: 0 auto 56px; }

.case-card {
  position: relative;
  height: 100%;
  min-height: 264px;
  border-radius: 10px;
  overflow: hidden;
  background: #0a1a3f;
}
.case-card--tall { min-height: 536px; }

.case-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
/* zoom-in on hover, zoom-out again on leave */
.case-card:hover .case-card__img { transform: scale(1.09); }

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 10, 30, .72) 10%, rgba(4, 10, 30, .25) 45%, #000000b8 75%);
}

.case-card__body {
  position: absolute;
  z-index: 2;
  left: 50px;
  right: 220px;
  bottom: 34px;
}
.case-card__cat {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.case-card__title {font-size: 26px;line-height: 36px;margin: 0;font-weight: 500;}
.case-card__title a { color: #ffffff; }
.case-card__title a:hover { color: var(--color-accent); }

.case-card__play {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 42px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-accent);
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.case-card__play:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: scale(1.08);
}
.case-card--tall .case-card__body { bottom: 120px; }
.case-card--tall .case-card__play { bottom: 128px; }

/* Testimonials --------------------------------------------------------- */
.testimonials {
  padding: 110px 0 120px;
  background: #f6f6fa url("../images/testi-bg.png") center top / cover no-repeat;
}
.testimonials__head { text-align: center; margin: 0 auto 50px; }
.slider {margin: 0 auto; cursor: grab; }
.slider.is-dragging { cursor: grabbing; }
.slider__viewport { overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform .5s var(--ease);
}
.slider__slide { flex: 0 0 50%; padding: 0 15px; }
.quote-card {
  display: flex;
  gap: 24px;
  height: 100%;
  padding: 32px 30px 28px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(20, 33, 43, .08);
}
.quote-card__avatar {
  flex: none;
  align-self: flex-start;
  width: 135px;
  height: 135px;
  border-radius: 6px;
  object-fit: cover;
}
.quote-card__icon {
  display: inline-flex;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.quote-card p {font-size: 20px;line-height: 30px;margin: 0 0 16px;color: var(--color-body);}
.quote-card__name {display: block;font-size: 16px;font-weight: 500;color: var(--color-text);}

.slider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.slider__dot {
  width: 10px; height: 10px; padding: 0;
  border: 1px solid var(--color-divider);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .26s var(--ease), border-color .26s var(--ease);
}
.slider__dot.is-active { background: var(--color-accent); border-color: var(--color-accent); }

/* Clients slider ------------------------------------------------------------ */
.clients { padding: 70px 0 90px; overflow: hidden; }
.clients__track { display: flex; width: max-content; animation: clientScroll 26s linear infinite; }
.clients__set {display: flex;align-items: center;gap: 90px;padding-right: 96px;}
.clients__set img {
  height: 50px;
  width: auto;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s var(--ease);
}
.clients__set img:hover { filter: none; }
@keyframes clientScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clients:hover .clients__track { animation-play-state: paused; }

/* CTA ------------------------------------------------------------------------ */
.cta-section {padding: 0;margin: 0 0 -110px;}
.cta {
  position: relative;
  padding: 64px 60px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a2a8f url("../images/cta-bg.jpg") center / cover no-repeat;
}
.cta__title {
  position: relative;
  color: #ffffff;
  font-size: 48px;
  line-height: 55px;
  margin: 0;
  padding-left: 22px;
  border-left: 5px solid var(--color-accent);
  max-width: 22ch;
  font-weight: 500;
}
.cta__call { text-align: center; }
.cta__call img { width: 56px; height: 56px; margin: 0 auto 16px; }
.cta__call-label {display: block;font-size: 20px;color: #ffffff;margin-bottom: 0;}
.cta__call-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: #4fc3ff;
}
.cta__call-number:hover { color: #ffffff; }

/* Footer ---------------------------------------------------------------------- */
.site-footer {background: #05070f;color: rgba(255, 255, 255, .68);padding: 200px 0 60px;}
.footer-about p {font-size: 15px;line-height: 1.75;max-width: 32ch;margin: 22px 0 24px;color: #fff;}
.social-list { display: flex; gap: 10px; }
.social-list a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a2a8f;
  display: grid;
  place-items: center;
  transition: background-color .26s var(--ease), color .26s var(--ease), transform .26s var(--ease);
}
.social-list a:hover { background: var(--color-accent); color: #ffffff; transform: translateY(-3px); }

.footer-title { font-size: 20px; color: #ffffff; margin-bottom: 26px; }
.footer-links li + li,
.footer-contact li + li { margin-top: 14px; }
.footer-links a {font-size: 15px;color: rgb(255 255 255);}
.footer-links a:hover { color: #ffffff; }

.footer-contact { display: flex; flex-direction: column; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { flex: none; color: var(--color-accent); }
.footer-contact a {font-size: 15px;color: rgb(255 255 255);}
.footer-contact a:hover { color: #ffffff; }


/* Media---1366px ------------------------------------------------------------------ */


@media (max-width: 1366px) {
  .nav-link { padding: 10px 14px; font-size: 15.5px; }
  .hero { margin: 0 28px; padding: 78px 0 84px; }
}

/* Media---1200px (Bootstrap xl) --------------------------------------------------- */
@media (max-width: 1199.98px) {
  .header-inner { gap: 18px; }
  .nav-link { padding: 10px 10px; font-size: 15px; }
  .section-title { font-size: 36px; }
}

/* Media---992px (Bootstrap lg) drawer navigation, stacked hero ------------------ */
@media (max-width: 991.98px) {
  :root { --header-h: 78px; }
  .main-nav,.header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .hero { margin: 0 20px; padding: 64px 0 68px; }
  .hero__media { margin-top: 48px; }
  .hero__media img { margin: 0 auto; }
   .about { padding: 76px 0 84px; }
  .about__head { margin-bottom: 52px; }
  .about__media { margin: 0 auto 46px; }
  .about__content { max-width: none; }
  .services { padding-bottom: 84px; }
  .services__card { padding: 52px 36px 56px; }
  .services__head { margin-bottom: 44px; }
  .counter { padding: 60px 0; }
   .cases { padding: 76px 0 84px; }
  .cases__head { margin-bottom: 44px; }
  .case-card--tall { min-height: 380px; }
  .case-card--tall .case-card__body { bottom: 34px; }
  .case-card--tall .case-card__play { bottom: 42px; }
  .testimonials { padding: 76px 0 84px; }
  .testimonials__head { margin-bottom: 40px; }
  .clients { padding: 50px 0 64px; }
  .cta-section { padding-bottom: 84px; }
  .cta { padding: 46px 36px; text-align: center; }
  .cta__title { margin: 0 auto 32px; border-left: 0; padding-left: 0; max-width: none; }
  .site-footer { padding: 64px 0 40px; }
}

/* Media---768px (Bootstrap md) ---------------------------------------------------- */
@media (max-width: 767.98px) {
  body { font-size: 15.5px; }
  .hero__text { max-width: none; margin-bottom: 16px;}
  .hero__actions .btn { flex: 1 1 auto; }
  .section-title { font-size: 30px; }
  .about__lead { font-size: 20px; }
  .about { padding: 60px 0 66px; }
   .services { padding-bottom: 64px; }
  .services::before { top: 90px; }
  .service-card__title { font-size: 20px; }
  .counter-item__value { font-size: 34px; }
  .counter-item__label { font-size: 15px; }
  .cases { padding: 60px 0 66px; }
  .case-card__body { left: 22px; right: 92px; bottom: 24px; }
  .case-card__play { right: 22px; bottom: 30px; width: 54px; height: 54px; }
  .case-card__title { font-size: 18px; line-height: 28px;}
  .case-card--tall { min-height: 320px; }
  .case-card--tall .case-card__body { bottom: 24px; }
  .case-card--tall .case-card__play { bottom: 30px; }
  .cta__title { font-size: 26px;        line-height: 36px; }
  .cta__call-number { font-size: 24px; }
  .footer-title { margin-bottom: 18px; }
  .site-footer .row > div { margin-bottom: 8px; }
  .hero__content {text-align: center;}
  .hero__media {margin-top: 0;}
  .hero {padding: 40px 0 40px;}
  .cta {padding: 35px 25px;}
}

/* Media---576px (Bootstrap sm) ---------------------------------------------------- */
@media (max-width: 575.98px) {
  .btn { height: 50px; padding: 0 26px; font-size: 15px; }
  .hero { margin: 0 12px; border-radius: 14px; }
  .hero__media img { animation: none; }
  .about__media { width: 100%; padding-bottom: 60px; }
  .about__img-main { width: 72%; margin-left: 28%; }
  .about__img-sub { top: auto; bottom: 0; left: 0; width: 50%; }
  .feature-item { gap: 14px; }
  .services__card { padding: 40px 22px 44px; }
  .testimonials { padding: 60px 0 66px; }
  .slider__slide { flex-basis: 100%; }
  .quote-card { flex-direction: column; gap: 16px; padding: 26px 22px; }
  .hero__title {margin-bottom: 15px;font-size: 30px;}
  .about__head {margin-bottom: 30px;}
  .about__media {margin: 0 auto 0px;}
  .service-card__icon {margin-bottom: 24px;justify-content: center;}
  .service-card {text-align: center;}
  .section-title { font-size: 24px;line-height: 34px; }
  h1 { font-size: 30px; }
  .btn { padding: 0 18px; }
}

/* Media---430px ------------------------------------------------------------------- */
@media (max-width: 430px) {
  .brand__name { font-size: 24px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__mark svg { width: 28px; height: 28px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
}

/*Media---375px ------------------------------------------------------------------- */
@media (max-width: 375px) {
  h1 { font-size: 30px; }
  .hero__kicker {font-size: 13px;margin-bottom: 10px; }
  
}

/* Media---320px smallest supported viewport ------------------------------------- */
@media (max-width: 320px) {
  .container, .container-fluid { padding-left: 14px; padding-right: 14px; }
  h1 { font-size: 30px; }
  .btn { padding: 0 18px; }
}

/* Short landscape screens -------------------------------------------------- */
@media (max-height: 480px) and (orientation: landscape) {
  .mobile-nav { padding-top: 16px; }
  .hero { padding: 48px 0; }
}