:root {
  --gray-1: #2D3B41;
  --gray-2: #646E73;
  --gray-3: #757575;
}

p.lead,
q.lead {
  color: var(--gray-2);
}

.list-inline {
  padding-left: 0 !important;
  list-style: none;
}

.post-top-image {
  width: 100%;
  margin-bottom: 1rem;
}

.glowing {
  animation: glowing 1.5s infinite;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 3px #cba135;
  }

  50% {
    box-shadow: 0 0 20px #f59d3e;
  }

  100% {
    box-shadow: 0 0 3px #e56d0b;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

img {
  max-width: 100%;
}

.navbar-toggler {
  font-size: 12px !important;
  padding: 0.5rem !important;
  text-transform: uppercase;
}

.navbar-logo {
  max-height: 100%;
  height: auto;
  width: 160px;
}

.navbar-thumbnail {
  max-height: 100%;
  height: auto;
  width: 55px;
  object-fit: cover;
}

.navbar {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  padding: 0.3rem 0.5rem !important;
}

.nav-item-clickable {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.borderless {
  border: none !important;
  outline: none !important;
}

.masthead {
  position: relative;
  color: white;
  text-align: center;
}

.masthead-img-secondary {
  background: url(/img/photos/21-min.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.masthead-img-primary {
  background: url(/img/photos/6-min.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.overlay:after,
.masthead-img-primary:after,
.masthead-img-secondary:after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.masthead .container,
.masthead div {
  position: relative;
  z-index: 1;
}

.background-pattern-dots-light {
  background: url(/img/patterns/dot-grid.png) repeat;
}

.background-pattern-terrazzo-light {
  background: url(/img/patterns/light-grey-terrazzo.png) repeat;
  opacity: 0.3;
}

.background-pattern-terrazzo-dark {
  background: url(/img/patterns/dark-grey-terrazzo.png) repeat;
}

.background-pattern-spiration-dark {
  background: url(/img/patterns/spiration-dark.png) repeat;
}

.background-pattern-spiration-light {
  background: url(/img/patterns/spiration-light.png) repeat;
}

.background-pattern-double-bubble-dark {
  background: url(/img/patterns/double-bubble-dark.png) repeat;
}

.background-pattern-double-bubble-light {
  background: url(/img/patterns/double-bubble-white.png) repeat;
}

.masthead-margin {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.masthead-fullscreen {
  height: 95vh !important;
}

.masthead h1 {
  font-size: 2rem;
}

.masthead h2 {
  font-size: 1.25rem;
}

.anchor,
.anchor:hover {
  outline: 0;
  text-decoration: none;
  color: inherit;
}

.list-item-padding {
  padding: 0.5rem;
}

.showcase-item {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.showcase .showcase-text {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.showcase .showcase-text h2,
.showcase .showcase-text h3 {
  color: var(--primary);
  font-size: 2rem;
  line-height: 2rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.benefits-icon {
  font-size: 1.3rem;
  color: #3f51b5;
  margin-top: auto;
  margin-bottom: auto;
  opacity: 80%;
}

.benefits-highlight {
  font-weight: 500;
}

.title-underline {
  background: var(--warning);
  width: 10rem;
  height: 3px;
  margin: 0 auto;
  border-radius: 4px;
  opacity: 0.5;
}

.showcase .showcase-img:hover {
  transform: scale(1.05);
  transition: all 0.5s;
}

.showcase .showcase-img {
  padding-top: 2rem;
  max-width: 25rem;
  max-height: 25rem;
  transition: all 0.5s;
  margin-left: auto;
  margin-right: auto;
}

.showcase .showcase-img-sm {
  max-width: 18rem !important;
  max-height: 18rem !important;
}

.showcase .showcase-img-lg {
  max-width: 100% !important;
  max-height: 100% !important;
}

.learn-more-link {
  color: #3f51b5;
  visibility: visible;
}

.learn-more-icon {
  vertical-align: middle;
  color: #3f51b5;
}

.img-fit-center {
  max-width: 100%;
  max-height: 100%;
  vertical-align: top;
  object-fit: contain;
  object-position: top;
}

.section-title,
.section-title a,
.section-subtitle {
  color: #465b74 !important;
}

.highlights .highlights-item {
  max-width: 20rem;
}

.benefits-item {
  display: flex;
}

.highlights .highlights-item .highlights-icon {
  height: 8rem;
  padding-bottom: 0.5rem;
  transition: all 0.5s;
  display: flex;
}

.highlights-icon img {
  margin-right: auto;
  margin-left: auto;
  height: 8rem;
}

/* Hover Effects */
.highlights .highlights-item:hover .highlights-icon {
  transform: translateY(-0.5rem);
  transition: all 0.5s;
}

.industries-item:hover .industries-icon {
  transform: translateY(-0.2rem) scale(1.2);
  transition: all 0.5s;
}

.industries .industries-item {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.industries-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #3f51b5;
  transition: all 0.5s;
}

.benefits,
.showcase,
.highlights,
.how-it-works,
.problem-desc,
.explainer-video,
.testimonials,
.industries,
.features,
.visit-us-panel,
.secure {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.saving-calculator {
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.testimonials .testimonials-item {
  max-width: 35rem;
}

.text-shadow-animation:hover {
  text-shadow: grey 0.2px 0.2px;
  transition: all 0.2s;
}

.testimonials-text {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.client-logo {
  max-height: 40px;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  margin-top: 1rem;
  transition: all 0.5s;
}

.client-logo:hover {
  transform: scale(1.05);
  transition: all 0.5s;
}

.secure-logo {
  max-height: 50px;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  margin-top: 1rem;
  transition: all 0.5s;
}

.secure-logo:hover {
  transform: scale(1.05);
  transition: all 0.5s;
}

.features-item {
  padding: 1rem;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 1rem;
}

.features-item .features-title h4 {
  color: var(--primary);
  font-size: 2rem;
  line-height: 2rem;
  padding-bottom: 0.5rem;
  padding-top: 1rem;
}

.features-item .features-list ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-top: 1rem;
  padding-inline-start: 20px;
}

.features-item .features-list ul li {
  font-weight: 600;
  font-size: 1rem;
}

@media (min-width: 992px) {

  /* Bootstrap's "lg" breakpoint/ */
  .features-title {
    padding-right: 1rem !important;
  }

  .features-item .features-list ul {
    border-left: 1px solid #ccc;
    padding-inline-start: 40px;
  }
}

.circle-list {
  list-style-type: circle;
  padding-inline-start: 20px;
  margin: 0;
  padding-right: 0;
}

.circle-list-rtl {
  list-style-type: circle;
  padding-inline-start: 20px;
  margin: 0;
  padding-left: 0;
}

.circle-list-rtl li {
  text-align: right;
}

.icon-rtl {
  margin-right: 0;
  margin-left: 0.5rem;
}

.showcase-item .checkmark-list {
  padding-inline-start: 20px;
}

.checkmark-list li {
  list-style-type: none;
  position: relative;
  padding-bottom: 1rem;
}

.checkmark-list li::before {
  content: " ";
  width: 7px;
  height: 15px;
  display: inline-block;
  position: relative;
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-right: 1rem;
}

.checkmark-list-white-small {
  font-size: 80%;
  color: #E6E6E6;
}

.checkmark-list-white-small li::before {
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 10px;
  margin-right: 0.5rem;
}

.checkmark-list-he li::before {
  margin-left: 0.5rem;
}

.features-item .features-list ul h5 {
  padding-bottom: 1rem;
  color: #777;
}

#description .content .features-item .features-list ul li {
  list-style-type: none;
  position: relative;
  font-weight: 600;
  padding-bottom: 1.5rem;
  font-size: 1rem;
}

.footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  bottom: 0;
  width: 100%;
}

.contact-us-panel,
.visit-us-panel {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

/* Typed animation */
.typed-animation,
.yellow-text,
.typed-cursor {
  color: var(--warning) !important;
}

.typed-cursor {
  opacity: 0.7 !important;
}

.error-body {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.error-image {
  max-width: 20rem;
}

/* Special message overlay */
.bottom-msg-overlay {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  transition: 0.5s ease;
  opacity: 1;
  color: white;
  padding: 20px;
  text-align: center;
}

.bottom-right-text {
  position: absolute;
  bottom: 0;
  right: 0;
}

.thanks {
  margin-left: auto;
  margin-right: auto;
  min-width: 75%;
  min-height: 90vh;
  display: flex;
}

.text-bold-light {
  font-weight: 500;
}

.price-label {
  min-width: 4.5rem;
  display: inline-block;
}

.background {
  position: fixed;
  z-index: -100;
  width: 100%;
  height: 100%;
}

.embedded-video {
  max-width: 40rem;
}

.dark-grey {
  color: #5b5b5b;
}

.light-grey {
  color: #a7a7a7;
}

.background-light-green {
  background-color: #f3fff3 !important;
}

.dark-green {
  color: #011f14 !important;
}

/* cookie consent */
.cc-revoke,
.cc-window {
  z-index: 9999999999 !important;
}

.post-content {
  text-align: justify;
}

.width-max-content {
  max-width: max-content;
}

.morfit-home {
  direction: rtl;
  text-align: right;
  background-color: #F6F3F0;
  color: #1a1a1a;
  font-family: 'Assistant', 'Heebo', 'DIN Next', 'Avenir', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

.morfit-home img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.morfit-home a {
  color: inherit;
  text-decoration: none;
}

.morfit-home h1,
.morfit-home h2,
.morfit-home h3 {
  font-family: 'Assistant', 'Heebo', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.morfit-home p,
.morfit-home li,
.morfit-home a,
.morfit-home span {
  font-family: 'Assistant', 'Heebo', 'DIN Next', 'Avenir', sans-serif;
}

.morfit-home .container {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0 24px;
}

.morfit-home section {
  padding: 72px 0;
}

.morfit-home .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(246, 243, 240, 0.94);
  border-bottom: 1px solid rgba(154, 182, 177, 0.45);
  backdrop-filter: blur(12px);
  padding: 16px 0;
}

.morfit-home main {
  padding-top: 84px;
}

.morfit-home .header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.morfit-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: normal;
  text-align: center;
  line-height: 1.45;
}

.morfit-home .btn:hover {
  transform: translateY(-1px);
}

.morfit-home .btn-primary {
  background: #AF4B43;
  color: #ffffff;
}

.morfit-home .btn-primary:hover {
  background: #8f3d37;
}

.morfit-home .header-socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.morfit-home .header-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(36, 29, 24, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.morfit-home .header-social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(36, 29, 24, 0.16);
}

.morfit-home .header-social-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.morfit-home .header-social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.morfit-home .header-social-link--facebook {
  color: #007afa;
}

.morfit-home .header-social-link--instagram {
  color: #ff0073;
}

.morfit-home .header-social-link--tiktok {
  color: #111111;
}

.morfit-home .hero {
  position: relative;
  min-height: calc(100vh - 88px);
  background:
    linear-gradient(120deg, rgba(12, 11, 10, 0.6), rgba(12, 11, 10, 0.18)),
    url('/images/hero.jpg') top center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.morfit-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.morfit-home .hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 920px;
  margin-right: 0;
  margin-left: auto;
  padding-top: 32px;
  padding-bottom: 32px;
}

.morfit-home .hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 20px;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 1440px) {
  .morfit-home .hero h1 {
    white-space: normal;
  }
}

.morfit-home .hero p {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 12px;
  opacity: 0.94;
  max-width: 48ch;
}

.morfit-home .hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.85;
}

.morfit-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.morfit-home .hero .btn {
  font-size: 17px;
  padding: 16px 36px;
}

.morfit-home .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.morfit-home .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

.morfit-home .studio-section,
.morfit-home .testimonials-section {
  background: #EEE0D1;
}

.morfit-home .media-placeholder {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(36, 29, 24, 0.08);
}

.morfit-home .media-placeholder strong {
  font-size: clamp(20px, 2vw, 26px);
  color: #1a1a1a;
}

.morfit-home .media-placeholder span {
  color: #555;
  line-height: 1.8;
}

.morfit-home .video-card {
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(36, 29, 24, 0.08);
  background: rgba(255, 255, 255, 0.55);
  align-self: start;
}

.morfit-home .inline-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  display: block;
  background: #000;
  object-fit: cover;
  object-position: top center;
}

.morfit-home .section-heading {
  margin-bottom: 32px;
}

.morfit-home .section-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #1a1a1a;
}

.morfit-home .section-intro {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.morfit-home .section-note {
  margin-top: 22px;
  margin-bottom: 28px;
  font-size: clamp(17px, 1.45vw, 19px);
}

.morfit-home .offer-section {
  background: #F6F3F0;
}

.morfit-home .offer-layout,
.morfit-home .studio-layout,
.morfit-home .testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.morfit-home .offer-visual img,
.morfit-home .studio-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(36, 29, 24, 0.08);
}

.morfit-home .feature-list {
  margin: 0;
  padding-right: 28px;
  padding-left: 10px;
  display: grid;
  gap: 16px;
}

.morfit-home .feature-list li {
  font-size: clamp(17px, 1.45vw, 19px);
  padding-right: 6px;
}

.morfit-home .studio-copy .btn,
.morfit-home .offer-copy .btn {
  margin-top: 24px;
}

.morfit-home .bio {
  background: #F6F3F0;
}

.morfit-home .bio-intro-heading {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 48px;
  color: #1a1a1a;
}

.morfit-home .bio-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.morfit-home .bio-block:last-child {
  margin-bottom: 0;
}

.morfit-home .bio-block--reversed {
  direction: ltr;
}

.morfit-home .bio-block--reversed .bio-text {
  direction: rtl;
  text-align: right;
}

.morfit-home .bio-text p {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.morfit-home .bio-text p.emphasis {
  font-weight: 700;
  font-size: clamp(19px, 1.95vw, 23px);
  color: #AF4B43;
  margin-top: 4px;
  margin-bottom: 4px;
}

.morfit-home .bio-media-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}

.morfit-home .bio-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 240px;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(36, 29, 24, 0.08);
}

.morfit-home .bio-video-card {
  box-shadow: 0 18px 42px rgba(36, 29, 24, 0.08);
}

.morfit-home .bio-video-card .inline-video {
  aspect-ratio: 4 / 5;
  max-height: 320px;
}

.morfit-home .testimonials-copy {
  align-self: start;
}

.morfit-home .testimonials-three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.morfit-home .testimonials-gif-card,
.morfit-home .testimonials-message-image {
  width: 100%;
}

.morfit-home .testimonials-gif-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(36, 29, 24, 0.08);
  padding: 10px;
}

.morfit-home .testimonials-gif,
.morfit-home .testimonials-message-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(36, 29, 24, 0.08);
}

.morfit-home .testimonials-gif {
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
  box-shadow: none;
}

.morfit-home .testimonials-message-image img {
  display: block;
}

.morfit-home .social-panel-inline {
  background: #F6F3F0;
  padding: 16px 0 48px;
}

.morfit-home .social-panel-inline-inner {
  display: flex;
  justify-content: center;
}

.morfit-home .social-panel-socials {
  gap: 14px;
}

.morfit-home .site-footer {
  background: #2a2a2a;
  color: #ccc;
  padding: 32px 0 100px;
}

.morfit-home .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.morfit-home .footer-copy {
  font-size: 14px;
}

.morfit-home .footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.morfit-home .footer-socials a {
  color: #ccc;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: color 0.2s ease;
}

.morfit-home .footer-socials a:hover {
  color: #ffffff;
}

.morfit-home .footer-social-icon--svg svg {
  width: 18px;
  height: 18px;
  display: block;
}

.morfit-home .whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: #25D366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.morfit-home .whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .morfit-home section {
    padding: 48px 0;
  }

  .morfit-home .hero {
    min-height: 85vh;
    background-position: 58% top;
  }

  .morfit-home .hero-content {
    text-align: center;
    margin-inline: auto;
  }

  .morfit-home .hero p {
    margin-inline: auto;
  }

  .morfit-home .hero h1 {
    white-space: normal;
  }

  .morfit-home .offer-layout,
  .morfit-home .studio-layout,
  .morfit-home .bio-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .morfit-home .bio-block,
  .morfit-home .bio-block--reversed {
    direction: rtl;
    margin-bottom: 48px;
  }

  .morfit-home .bio-media-stack {
    order: -1;
  }

  .morfit-home .highlight-card img {
    height: 220px;
  }

  .morfit-home .media-placeholder,
  .morfit-home .inline-video,
  .morfit-home .offer-visual img,
  .morfit-home .studio-visual img {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .morfit-home .bio-image img {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .morfit-home .bio-video-card .inline-video {
    max-height: none;
  }

  .morfit-home .testimonials-three-up {
    grid-template-columns: 1fr;
  }

  .morfit-home .testimonials-video,
  .morfit-home .testimonials-message-image img {
    max-height: none;
  }
}

@media (max-width: 480px) {
  .morfit-home .container {
    padding: 0 18px;
  }

  .morfit-home .btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .morfit-home .header-inner {
    gap: 12px;
  }

  .morfit-home .hero .btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 18px;
  }

  .morfit-home .hero-actions {
    flex-direction: column;
  }

  .morfit-home .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .morfit-home .whatsapp-float {
    bottom: 18px;
    left: 18px;
  }
}
