* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FONTS ===== */
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
  background: url('./images/mobile-bg.jpg') no-repeat center top;
  background-size: cover;
  background-color: #fff;
  background-position: center;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #232B7A;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #232B7A;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #232B7A;
  margin-bottom: .5rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #232B7A;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6D7090;
  letter-spacing: -0.4px;
  font-weight: 300;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

/* ===== LOGO ===== */
.logo img {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  min-height: 600px;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.hero-text .gradient-text {
  background: linear-gradient(to right,
      #FF6EB1 20%,
      #96B5FF 30%,
      #686BD4 70%,
      #3f5ac4 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 10s ease-in-out infinite alternate;
}

.hero h1 {
  padding-top: 6rem;
  margin-bottom: 1rem;
}

.hero p {
  padding: 0 1.8rem 0 1.8rem;
  margin-bottom: 2rem;
  color: #232B7A;
}

.hero-people {
  display: none;
}


/* ===== HERO VIDEO ===== */
.video-wrapper {
  background: white;
  border: 6px solid white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin: 0 auto;
  max-width: 800px;
}

.video-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: 0;
}

/* Video Loading Styles */
.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}

.video-loading p {
  margin: 1rem 0 0 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #232B7A;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Video poster image optimization */
video[poster] {
  background-color: #f8f9fa;
  background-size: cover;
  background-position: center;
}

/* Video Quality Indicator */
.video-quality-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 15;
  transition: opacity 0.5s ease;
}

.video-quality-indicator span {
  background: rgba(35, 43, 122, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

/* Enhanced Loading States */
.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-loading small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
}

/* ===== APP BUTTONS ===== */

.app-buttons.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.app-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-buttons a img {
  width: 120px;
  height: auto;
}


/* ===== HERO PEOPLE (hidden on mobile) ===== */
.hero-people-left,
.hero-people-right {
  display: none;
}

/* ===== BADGES ===== */
.badges-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 6rem 0;
  text-align: center;
}

.badge {
  width: 280px;
  max-width: 90%;
}

.badge-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 0.75rem;
}

.badges-grid h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== AUDIENCE SECTION===== */
.audience-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.audiences {
  margin-top: 2rem;
  margin-bottom: 5rem;

}

.audience-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.audience-text {
  max-width: 500px;
}

.audience-text p {
  max-width: 500px;
}

/* ===== YOUR CIRCLE SECTION ===== */
.your-circle {
  padding: 3rem 0;
}

.circle-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.card-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card styles */
.card {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 340px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-2 {
  background-image: url('./images/family.png');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-2 .card-text {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.card-3 {
  background-image: url('./images/cloud.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-3 .card-text {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.circle-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.card-1 {
  height: 515px;
}

.card-2 {
  height: 375px;
}

.card-3 {
  height: 360px;
}

.card-4 {
  height: 500px;
}

.card-5 {
  height: 500px;
}

.card-6 {
  height: 500px;
}

.circle-cards .card-column:last-child {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}

.card-1 img,
.card-3 img,
.card-4 img,
.card-5 img,
.card-6 img {
  margin-top: auto;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  align-self: center;
  margin-bottom: -2.4rem;
}

.card-2 img {
  align-self: flex-end;
  width: 280px;
  height: auto;
  margin-bottom: -2rem;
  margin-right: -2.8rem;
}

.card-1 {
  background-color: #2F324F;
}

.card-1 p {
  color: #fff;
}

.card-1 h3 {
  color: #fff;
}

.card-3 img {
  margin-bottom: .3rem;
  max-width: 280px;
}

.card-4 img {
  margin-bottom: -1.4rem;
  max-width: 320px;
}

.card-5 img {
  margin-bottom: -1.5rem;
  max-width: 300px;
}

.card-6 img {
  margin-bottom: -1.5rem;
  max-width: 260px;
}

.card-6 {
  background-image: url('./images/sky.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-6 .card-text {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.2rem;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

/* ===== CARE COMMUNITY SECTION ===== */
.care-community {
  padding: 3rem 0;
  text-align: left;
  margin-top: 3rem;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 8rem 0 1rem 0;
  position: relative;
  margin-bottom: 8rem;
}

.cta-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ebf5ff;
  background: linear-gradient(178deg, rgba(235, 245, 255, 1) 7%, rgba(255, 255, 255, 1) 75%);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 300px;
}

.cta-text {
  flex: 1;
  z-index: 2;
}

/* cta SVG logo */
.cta-bg-logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.cta-text h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.cta-text p {
  margin-bottom: 2rem;
  text-align: left;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.cta-text .gradient-text {
  background: linear-gradient(115deg, rgba(39, 49, 141, 1) 7%, rgba(150, 181, 255, 1) 75%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  animation: gradientFlow 6s ease-in-out infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
  align-items: flex-start;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: none;
  border-top: none;
  padding: 2rem 0;
  font-size: 0.95rem;
  color: #6D7090;
}

.site-footer p {
  font-size: 1rem;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #6D7090;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #3b3f60;
}

@media (min-width: 390px) {
  .card {
    max-width: 350px;
    padding: 1.75rem;
  }

  .card-1 img {
    margin-bottom: -2.6rem;
  }


  .card-2 img {
    max-width: 280px;
    margin-right: -2.9rem;
    margin-top: 1rem;
  }

  .card-3 img {
    margin-bottom: -.5rem;
  }

  .card-4 img {
    margin-bottom: -1.6rem;
  }
}

@media (min-width: 410px) {
  .card {
    max-width: 370px;
    padding: 1.75rem;
  }

  .card-2 img {
    max-width: 320px;
    margin-right: -2.8rem;
  }

  .card-3 img {
    margin-bottom: 1rem;
  }

  .card-4 img {
    margin-bottom: -1.7rem;
    max-width: 350px;
  }

  .card-5 img {
    margin-bottom: -1.6rem;
    max-width: 340px;
  }

  .card-1 {
    height: 555px;
  }

  .card-2 {
    height: 415px;
  }

  .card-3 {
    height: 400px;
  }

  .card-4 {
    height: 550px;
  }

  .card-5 {
    height: 540px;
  }

  .card-6 {
    height: 540px;
  }

}

@media (min-width: 430px) {
  .card {
    max-width: 380px;
    padding: 1.75rem;
  }

  .card-1 img {
    margin-bottom: -2.7rem;
  }

  .card-2 img {
    margin-top: 1.5rem;
    max-width: 500px;
  }

  .card-3 img {
    margin-bottom: 1rem;
    max-width: 300px;
  }

  .card-5 img {
    margin-top: .7rem;
    max-width: 340px;
  }

  .card-6 img {
    margin-bottom: -1.5rem;
    max-width: 270px;
  }
}

@media (min-width: 480px) {
  .card {
    max-width: 440px;
    padding: 1.75rem;
  }

  .card-1 img {
    margin-bottom: -2.77rem;
    max-width: 340px;
  }

  .card-2 img {
    width: 370px;
    margin-right: -3.3rem;
    margin-top: 1.3rem;
  }

  .card-3 img {
    margin-bottom: -.4rem;
    max-width: 360px;
  }

  .card-4 img {
    margin-bottom: -1.7rem;
    max-width: 360px;
  }

  .card-5 img {
    margin-top: 1.3rem;
    max-width: 360px;
  }

  .card-6 img {
    margin-top: 1.7rem;
    max-width: 280px;
  }

}

@media (min-width: 570px) {
  .card {
    max-width: 520px;
  }

  .card-2 img {
    width: 400px;
    margin-right: -3.4rem;
    margin-top: .6rem;
  }

  .card-4 img {
    max-width: 400px;
  }

  .card-6 img {
    margin-top: 1.9rem;
    max-width: 300px;
  }

}

@media (min-width: 600px) {
  .card {
    max-width: 570px;
    padding: 2rem;
  }

  .card-1 img {
    margin-bottom: -3rem;
  }

  .card-2 img {
    max-width: 420px;
    margin-right: -3.5rem;
    margin-top: 1rem;
  }

  .card-3 img {
    margin-bottom: -1rem;
    max-width: 390px;
  }

  .card-4 img {
    margin-bottom: -2rem;
  }

  .card-5 img {
    margin-top: 2rem;
    max-width: 370px;
  }

  .card-6 img {
    margin-top: .8rem;
    max-width: 310px;
  }

  .cta-box {
    align-content: center;
  }
}

@media (min-width: 700px) {
  .card {
    max-width: 626px;
  }

  .card-1 img {
    max-width: 430px;
    margin-bottom: 13rem;
  }

  .card-2 img {
    margin-right: -3.4rem;
    margin-top: 1rem;
  }

  .card-3 img {
    margin-bottom: 1rem;
    max-width: 470px;
  }

  .card-4 img {
    max-width: 480px;
    margin-bottom: -2rem;
  }

  .card-1 {
    height: 630px;
  }

  .card-2 {
    height: 465px;
  }

  .card-3 {
    height: 475px;
  }

  .card-4 {
    height: 640px;
  }

  .card-5 {
    height: 640px;
  }

  .card-6 {
    height: 640px;
  }

  .card-5 img {
    margin-top: 4rem;
    max-width: 440px;
  }

  .card-6 img {
    margin-top: 1.5rem;
    max-width: 390px;
  }

}

/* ===== TABLET (≥768px) ===== */
@media (min-width: 768px) {

  body {
    background: url('./images/desktopbg.jpg') no-repeat center top;
    background-size: cover;
    background-color: #FFF;
    background-position: center;
  }

  h1 {
    font-size: 3.2rem;
    margin-top: 4rem;
  }

  h2 {
    font-size: 1.80rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.15rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .hero-video video {
    max-width: 80%;
    margin-top: 4rem;
  }

  /* ====== FACE BUBBLE ====== */
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: visible;
  }

  .hero-people {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.4rem;
    width: 280px;
    position: absolute;
    z-index: 1;
  }


  .hero-people-left {
    top: 20%;
    left: calc(50% - 520px);
    /* push left group away from center */
    transform: translateX(-50%);
  }

  .hero-people-right {
    top: 17%;
    right: calc(50% - 450px);
    /*  push right group away from center */
    transform: translateX(50%);
    /* center point */
  }

  /* Base face container */
  .face-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Staggered (LEFT group only) */
  .hero-people-left .face-container:nth-child(2),
  .hero-people-left .face-container:nth-child(5) {
    transform: translateY(-40%);
  }

  .hero-people-left .face-container:nth-child(3),
  .hero-people-left .face-container:nth-child(6) {
    transform: translateY(30%);
  }

  /* Staggered (RIGHT group only) */
  .hero-people-right .face-container:nth-child(2),
  .hero-people-right .face-container:nth-child(5) {
    transform: translateY(60%);
  }

  .hero-people-right .face-container:nth-child(3),
  .hero-people-right .face-container:nth-child(6) {
    transform: translateY(20%);
  }

  /* Hover effect */
  .face-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
  }

  .face-wrapper:hover {
    transform: scale(1.05) translateY(-8px);
  }

  /* Gradient border faces */
  .face-wrapper.gradient {
    padding: 4px;
    background: linear-gradient(236deg, #FF30A5 3%, #96B5FF 42%, #686BD4 75%, #27318D 100%);
  }

  .face-wrapper.gradient .face-inner {
    background: white;
    padding: 3px;
    border-radius: 50%;
  }

  /* Inner image wrapper */
  .face-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .face-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }


  @keyframes waveFloat {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }

    100% {
      transform: translateY(0);
    }
  }

  /* Wrapper inside the container.. animated */
  .face-floater {
    animation: waveFloat 6s ease-in-out infinite;
  }

  /* wave animation */
  .hero-people-left .face-container:nth-child(1) .face-floater {
    animation-delay: 0s;
  }

  .hero-people-left .face-container:nth-child(2) .face-floater {
    animation-delay: 0.2s;
  }

  .hero-people-left .face-container:nth-child(3) .face-floater {
    animation-delay: 0.4s;
  }

  .hero-people-left .face-container:nth-child(4) .face-floater {
    animation-delay: 0.6s;
  }

  .hero-people-left .face-container:nth-child(5) .face-floater {
    animation-delay: 0.8s;
  }

  .hero-people-left .face-container:nth-child(6) .face-floater {
    animation-delay: 1s;
  }

  .hero-people-right .face-container:nth-child(1) .face-floater {
    animation-delay: 0.1s;
  }

  .hero-people-right .face-container:nth-child(2) .face-floater {
    animation-delay: 0.3s;
  }

  .hero-people-right .face-container:nth-child(3) .face-floater {
    animation-delay: 0.5s;
  }

  .hero-people-right .face-container:nth-child(4) .face-floater {
    animation-delay: 0.7s;
  }

  .hero-people-right .face-container:nth-child(5) .face-floater {
    animation-delay: 0.9s;
  }

  .hero-people-right .face-container:nth-child(6) .face-floater {
    animation-delay: 1.1s;
  }


  .video-wrapper {
    margin-top: 8rem;
  }

  .app-buttons a img {
    width: 160px;
  }

  .badges-grid {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .badge {
    width: 30%;
    min-width: 200px;
  }

  .circle-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .card-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .card-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .card-3 {
    grid-column: 1;
    grid-row: 2;
  }

  .card-4 {
    grid-column: 2;
    grid-row: 2;
  }

  .card {
    max-width: 430px;
    padding: 2.25rem;
  }

  .card-1 img {
    margin-bottom: -3.4rem;
    max-width: 390px;
  }

  .card-2 img {
    width: 350px;
    margin-right: -3.1rem;
    margin-top: 2rem;
  }

  .card-3 img {
    margin-bottom: 2rem;
    max-width: 340px;
  }

  .card-4 img {
    margin-bottom: -2.2rem;
    max-width: 400px;
  }

  .card-5 img {
    margin-bottom: -2.5rem;
    max-width: 400px;
  }

  .card-6 img {
    margin-top: 2.2rem;
    max-width: 340px;
  }

  .circle-cards .card-column:last-child {
    flex-direction: column;
  }

  .community-cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .community-cards .card {
    height: 630px;
    flex: 1;
    width: auto;
  }

  .audience-flex {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }

  .audience-image,
  .audience-text {
    flex: 1;
  }

  .audience-text {
    max-width: none;
  }

  .cta-box {
    padding: 3rem 3rem;
    min-height: 400px;
    align-content: center;
  }
}


/* ===== DESKTOP (≥1024px) ===== */
@media (min-width: 1024px) {
  .card {
    max-width: 480px;
    padding: 2.5rem;
  }

  .card-1 img {
    margin-bottom: -3.8rem;
    max-width: 450px;
  }

  .card-2 img {
    max-width: 410px;
    margin-right: -3.2rem;
    margin-top: 2.7rem;
  }

  .card-3 img {
    margin-bottom: 2rem;
    max-width: 400px;
  }

  .card-4 img {
    margin-bottom: -2.5rem;
    max-width: 470px;
  }

  .community-cards .card {
    height: 640px;
  }

  .card-5 img {
    margin-bottom: -2.4rem;
    max-width: 440px;
  }

  .card-6 img {
    margin-top: 3.7rem;
    max-width: 360px;
  }

  body {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1.18rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

  .card-1 {
    height: 715px;
  }

  .card-2 {
    height: 520px;
  }

  .card-3 {
    height: 505px;
  }

  .card-4 {
    height: 700px;
  }

  .card-5 {
    height: 700px;
  }

  .card-6 {
    height: 700px;
  }

  .cta-box {
    margin: 0 auto;
    padding: 4rem;
  }

  .cta-text p {
    max-width: 500px;
  }

  .cta-box::after {
    background-size: 50%;
    opacity: 0.06;
    right: -10%;
    bottom: -10%;
  }

  .hero-people-left {
    left: calc(50% - 600px);
  }

  .hero-people-right {
    right: calc(50% - 520px);
  }

  .face-wrapper {
    width: 110px;
    height: 110px;
  }

  .face-inner {
    width: 104px;
    height: 104px;
  }
}

@media (min-width: 1120px) {
  .card {
    max-width: 540px;
    padding: 2.5rem;
  }

  .card-2 img {
    min-width: 460px;
    margin-right: -3.9rem;
    margin-top: 1.8rem;
  }

  .card-3 img {
    max-width: 440px;
    margin-top: 1rem;
  }

  .card-4 img {
    max-width: 480px;
  }

  .card-5 img {
    margin-top: 2rem;
    max-width: 480px;
  }

  .card-6 img {
    margin-top: 2.8rem;
    max-width: 400px;
  }
}

@media (min-width: 1280px) {
  .card {
    max-width: 590px;
  }

  .card-2 img {
    max-width: 640px;
    margin-right: -3.7rem;
    margin-top: 2rem;
  }

  .card-3 img {
    max-width: 480px;
    margin-top: .3rem;
  }

  .card-4 img {
    max-width: 490px;
  }

  .card-5 img {
    margin-top: 1.4rem;
    max-width: 490px;
  }

  .card-6 img {
    margin-top: 2.1rem;
    max-width: 410px;
  }
}