.homepage-hero {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.homepage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/homepage-banner-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scaleX(-1);
  z-index: 0;
}

.homepage-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 328px;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.homepage-hero > * {
  position: relative;
  z-index: 2;
}

.homepage-hero-container {
  width: 100%;
  max-width: var(--site-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-container-pad);
  padding-right: var(--site-container-pad);
  box-sizing: border-box;
}

.homepage-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.homepage-hero-content {
  max-width: 640px;
}

.homepage-hero-eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 16px;
  font-weight: 800;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fb580c;
}

.homepage-hero-title {
  margin: 0;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-weight: 300;
  font-size: clamp(32px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  color: #585858;
  overflow: visible;
  word-break: normal;
  overflow-wrap: break-word;
}

.homepage-hero-title-main {
  display: block;
  color: #585858;
}

.homepage-hero-title-accent {
  display: block;
  line-height: 1.08;
  padding-bottom: 0.06em;
  background: linear-gradient(90deg, #fb580c 33.65%, #ffa073 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  overflow: visible;
}

.homepage-hero-description {
  margin: 18px 0 0;
  max-width: 790px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

.homepage-hero-description p {
  margin: 0;
}

.homepage-hero-description p + p {
  margin-top: 1em;
}

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

.homepage-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.homepage-hero-cta.primary {
  background: #fb580c;
  color: #ffffff !important;
  border: none;
}

.homepage-hero-cta.primary:hover {
  opacity: 0.9;
}

.homepage-hero-cta.secondary {
  background: transparent;
  border: 1px solid #585858 !important;
  color: #585858 !important;
}

.homepage-hero-cta.secondary:hover {
  background: rgba(0, 0, 0, 0.04);
}

.homepage-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.homepage-hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}

.homepage-hero-highlights svg {
  flex-shrink: 0;
  width: 13px;
  height: 12px;
}

.homepage-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage-hero-devices {
  display: block;
  width: 629px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 629 / 460;
  object-fit: contain;
}

.homepage-modules {
  margin-top: 56px;
  width: 100%;
  overflow: visible;
}

.homepage-modules-eyebrow {
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-weight: 800;
  font-size: clamp(12px, 2.5vw, 16px);
  line-height: 1.2;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fb580c;
}

.homepage-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.homepage-modules-grid > div {
  width: 100%;
  min-height: 110px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px 10px 14px;
  border-radius: 10px;
  border: 0;
  background: #fff;
  box-shadow: 0 0 4.5px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  box-sizing: border-box;
}

.homepage-modules-grid > div > svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin: 0;
}

.homepage-modules-grid > div > svg[viewBox="0 0 20 16"] {
  width: 20px;
  height: 16px;
  flex-basis: 16px;
}

.homepage-modules-grid > div > span {
  width: 100%;
  max-width: 130px;
  font-size: clamp(13px, 2.8vw, 18px);
  line-height: 1.2;
  font-weight: 400;
  color: #363636;
  word-break: normal;
  overflow-wrap: break-word;
}

.homepage-pricing {
  position: relative;
  padding: 0 0 80px;
  background: #ffffff;
}

.homepage-pricing-title {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(26px, 4vw, 50px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--color-text-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 463px));
  justify-content: center;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}

.pricing-card {
  width: 100%;
  max-width: 463px;
  min-height: 760px;
  padding: 26px 20px 28px;
  border: 1px solid #585858;
  border-radius: 35px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  border-color: var(--color-accent-soft);
}

.pricing-card-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.5vw, 30px);
  line-height: 1.2;
  font-weight: 400;
  color: #585858;
}

.pricing-card-copy {
  margin: 0 0 22px;
  min-height: 52px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #7D7D7D;
}

.pricing-card-price {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  color: #565656;
}

.pricing-card-subtitle {
  margin: 6px 0 14px;
  font-size: 15px;
  line-height: 1.4;
  color: #6b6b6b;
  font-weight: 700;
}

.pricing-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 376.93px;
  max-width: 100%;
  height: 54.59px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  box-sizing: border-box;
  border-radius: 54.59px;
  text-align: center;
  text-decoration: none !important;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  cursor: pointer;
}

.pricing-card-cta.primary {
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
  color: #fff !important;
}

.pricing-card-cta.muted {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #d9d9db;
  color: #666 !important;
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-cta.muted::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.pricing-card:hover .pricing-card-cta.muted {
  color: #fff !important;
}

.pricing-card:hover .pricing-card-cta.muted::before {
  opacity: 1;
}

.pricing-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  text-decoration: none !important;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  color: #585858 !important;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-link::after {
  content: "";
  width: 12px;
  height: 10px;
  flex-shrink: 0;
  background: url("../images/arrow-right.svg") center / contain no-repeat;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-link:hover {
  color: var(--color-accent) !important;
}

.pricing-card-link:hover::after {
  transform: translateX(5px);
}

.pricing-card-features-wrapper{
  margin-top: 40px;
}

.pricing-card-features-wrapper .pricing-card-features{
  margin: 0 !important;
}

.pricing-card-intro {
  margin:0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #4f4f4f;
}

.pricing-card-features {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #7D7D7D;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-card-features li::before {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 9px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.866455 4.11589L3.466 6.93207L9.53161 0.866455' stroke='%23FB580C' stroke-width='1.73303' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 9px;
}

.pricing-card-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #6c6c6c;
  font-weight: 700;
}

.homepage-why-mtrack {
  background: #ffffff;
}

.homepage-why-mtrack-divider {
  margin: 0;
  border: none;
  border-top: 2px solid #dbdbdb;
}

.homepage-why-mtrack-top {
  padding: 48px 0 56px;
  text-align: center;
}

.homepage-why-mtrack-title {
  margin: 0 0 20px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 400;
  color: #585858;
}

.homepage-why-mtrack-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #585858;
}

.homepage-why-mtrack-result {
  margin: 0 0 40px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(15px, 2.2vw, 32px);
  line-height: 1.3;
  font-weight: 400;
  color: #585858;
}

.homepage-why-mtrack-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.homepage-why-mtrack-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.homepage-why-mtrack-connector {
  flex: 1 1 60px;
  align-self: flex-start;
  height: 0;
  margin-top: 47px;
  margin-left: 18px;
  margin-right: 18px;
  border-top: 1px solid #585858;
}

.homepage-why-mtrack-icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-why-mtrack-item span {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
  color: #7d7d7d;
  text-align: center;
}

.homepage-why-mtrack-solution {
  background: linear-gradient(270deg, #fb580c 0%, #ffa073 100%);
  padding: 44px 0 52px;
  text-align: center;
}

.homepage-why-mtrack-solution-title {
  margin: 0 0 16px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
}

.homepage-why-mtrack-solution-copy {
  margin: 0 auto;
  max-width: 1040px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(14px, 2vw, 30px);
  line-height: 117%;
  font-weight: 500;
  color: #ffffff;
}

.homepage-agency-needs {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  margin-top: 30px;
}
.homepage-agency-needs > * {
  position: relative;
  z-index: 1;
}

.homepage-agency-needs-title {
  margin: 0 0 40px;
  text-align: center;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 400;
  color: #585858;
}

.homepage-agency-needs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 28px;
  padding: 56px 0 72px;
}

.homepage-agency-needs-item-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.homepage-agency-needs-item-heading img {
  flex-shrink: 0;
  width: 14px;
  height: 11px;
}

.homepage-agency-needs-item-heading h3 {
  margin: 0;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #fb580c;
}

.homepage-agency-needs-item p {
  margin: 0;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #7d7d7d;
}

@media (min-width: 1024px) {
  .homepage-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    gap: 32px;
  }

  .homepage-hero-content {
    max-width: none;
  }

  .homepage-hero-visual {
    justify-content: flex-end;
  }

  .homepage-hero-devices {
    width: 629px;
    max-width: 100%;
  }

  .homepage-modules-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .homepage-modules-grid > div {
    min-height: 125px;
    height: 125px;
    padding: 20px 8px 12px;
    gap: 12px;
  }

  .homepage-modules-grid > div > span {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .homepage-hero-title {
    font-size: 82px;
    line-height: 0.98;
  }

  .homepage-hero-description {
    font-size: 18px;
  }

  .homepage-modules {
    margin-top: 72px;
  }
}

@media (min-width: 1600px) {
  .homepage-hero-title {
    font-size: 94px;
  }
}

@media (min-width: 1400px) {
  .homepage-modules-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 9px;
  }
}

@media (max-width: 1199px) {
  .homepage-agency-needs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 463px;
  }

  .pricing-card {
    width: 100%;
    min-height: auto;
  }

  .homepage-pricing {
    margin-top: -80px;
    padding-top: 90px;
  }

  .homepage-hero::after {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .homepage-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .homepage-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .homepage-hero-cta {
    width: 100%;
  }

  .homepage-hero-highlights {
    gap: 10px 16px;
  }

  .homepage-hero-highlights li {
    font-size: 13px;
  }

  .homepage-modules {
    margin-top: 40px;
  }

  .homepage-modules-grid > div {
    min-height: 100px;
    padding: 14px 8px 12px;
  }

  .homepage-agency-needs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 56px;
  }

  .homepage-agency-needs-title {
    margin-bottom: 28px;
  }

  .homepage-agency-needs-item h3 {
    font-size: 16px;
  }

  .homepage-agency-needs-item p {
    font-size: 14px;
  }

  .homepage-why-mtrack-top {
    padding: 40px 0 44px;
  }

  .homepage-why-mtrack-flow {
    flex-wrap: wrap;
    gap: 28px 12px;
    max-width: 420px;
  }

  .homepage-why-mtrack-connector {
    display: none;
  }

  .homepage-why-mtrack-item {
    flex: 0 0 calc(50% - 6px);
  }

  .homepage-why-mtrack-item span {
    font-size: 15px;
  }

  .homepage-why-mtrack-icon {
    width: 72px;
    height: 72px;
  }

  .homepage-why-mtrack-solution {
    padding: 36px var(--site-container-pad) 40px;
  }

  .pricing-card {
    min-height: auto;
    padding: 22px 16px 24px;
  }

  .homepage-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .homepage-final-cta-actions .homepage-hero-cta {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .homepage-pricing .site-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 20px 15px 22px;
    border-radius: 24px;
    box-sizing: border-box;
  }

  .pricing-card-cta {
    width: 100%;
    max-width: 100%;
  }

  .pricing-card-features li,
  .pricing-card-copy,
  .pricing-card-title {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* Billing interval toggle */
.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.billing-toggle-label-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 0;
}

.billing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  transition: color 0.2s;
}

.billing-toggle-label.active,
.billing-toggle-label-stack.active .billing-toggle-label {
  color: #1a1a1a;
  font-weight: 600;
}

.billing-toggle-save {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-accent, #fb580c);
}

.billing-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  background: #e0e0e0;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.billing-toggle:hover {
  background: #d0d0d0;
}

.billing-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.billing-toggle-thumb.right {
  transform: translateX(22px);
}

.homepage-platform-wrap {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.homepage-platform-wrap__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    /* Top-left — previous strength */
    radial-gradient(
      ellipse 90% 85% at 0% 14%,
      rgba(255, 145, 95, 0.48) 0%,
      rgba(255, 170, 130, 0.3) 24%,
      rgba(255, 200, 170, 0.12) 44%,
      rgba(255, 255, 255, 0) 70%
    ),
    /* Bottom-left — keep current light wash */
    radial-gradient(
      ellipse 55% 50% at 0% 100%,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 245, 240, 0.4) 35%,
      rgba(255, 255, 255, 0) 70%
    ),
    /* Bottom-right glow */
    radial-gradient(
      ellipse 58% 62% at 100% 100%,
      rgba(251, 88, 12, 0.48) 0%,
      rgba(255, 160, 115, 0.3) 34%,
      rgba(255, 160, 115, 0) 70%
    );
}

.homepage-platform-wrap__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/built-teams-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
  opacity: 0.8;
  /* Previous top-left dissolve */
  -webkit-mask-image: linear-gradient(
    155deg,
    transparent 0%,
    transparent 4%,
    rgba(0, 0, 0, 0.45) 10%,
    #000 20%,
    #000 100%
  );
  mask-image: linear-gradient(
    155deg,
    transparent 0%,
    transparent 4%,
    rgba(0, 0, 0, 0.45) 10%,
    #000 20%,
    #000 100%
  );
  z-index: -1;
}

.homepage-platform-wrap__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Previous top-left white dissolve */
    radial-gradient(
      ellipse 55% 18% at 8% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0.9) 35%,
      rgba(255, 255, 255, 0.35) 60%,
      rgba(255, 255, 255, 0) 100%
    ),
    /* Bottom-left light wash — keep current */
    radial-gradient(
      ellipse 50% 45% at 0% 100%,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.25) 45%,
      rgba(255, 255, 255, 0) 75%
    ),
    radial-gradient(
      ellipse 55% 40% at 50% 30%,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0) 70%
    );
  pointer-events: none;
}

.homepage-platform-wrap__content {
  position: relative;
  z-index: 1;
}

.homepage-built-teams {
  padding: 56px 0 48px;
  text-align: center;
  max-width: 1339px;
  margin: 0 auto;
}

.homepage-built-teams-title {
  margin: 0 0 36px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 400;
  color: #585858;
}

.homepage-built-teams-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-items: center;
  gap: 16px;
}

.homepage-built-teams-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 194px;
  height: 194px;
  min-height: 194px;
  padding: 20px 24px;
  border: 1.5px solid #dbdbdb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0px 0px 7.29px 0px #00000040;
  text-align: center;
  box-sizing: border-box;
}

.homepage-built-teams-card:nth-child(-n + 2) {
  background: rgba(255, 245, 240, 0.7);
}

.homepage-built-teams-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.homepage-built-teams-icon svg {
  width: auto;
  height: auto;
  max-width: 61px;
  max-height: 54px;
}

.homepage-built-teams-card span {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(14px, 2.2vw, 20px);
  line-height: 1.25;
  font-weight: 600;
  color: #585858;
}

.homepage-platform-banner {
  background: linear-gradient(90deg, #fb580c 0%, #ffa073 100%);
  padding: 40px 0 44px;
  text-align: center;
}

.homepage-platform-banner-title {
  margin: 0 0 24px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
}

.homepage-platform-banner-columns {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.homepage-platform-banner-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  flex: 1;
  max-width: 320px;
}

.homepage-platform-banner-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff;
}

.homepage-platform-banner-list svg {
  flex-shrink: 0;
  width: 14px;
  height: 11px;
}

.homepage-final-cta {
  padding: 72px 0 88px;
  text-align: center;
}

.homepage-final-cta-title {
  margin: 0 auto 32px;
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  color: #585858;
}

.homepage-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.homepage-final-cta-actions .homepage-hero-cta.primary {
  background: linear-gradient(90deg, #fb580c 0%, #ffa073 100%);
  border: none;
}

@media (min-width: 1024px) {
  .homepage-built-teams-title,
  .homepage-platform-banner-title {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  .homepage-built-teams-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .homepage-built-teams {
    padding: 40px 0 32px;
  }

  .homepage-built-teams-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .homepage-built-teams-card {
    width: 100%;
    max-width: 194px;
    height: auto;
    min-height: 140px;
    aspect-ratio: 1;
    padding: 16px 10px;
    border-radius: 18px;
  }

  .homepage-built-teams-icon {
    width: 56px;
    height: 56px;
  }

  .homepage-built-teams-title {
    margin-bottom: 28px;
  }

  .homepage-platform-banner {
    padding: 32px 0 36px;
  }

  .homepage-platform-banner-columns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .homepage-platform-banner-list {
    max-width: 320px;
    width: 100%;
  }

  .homepage-final-cta {
    padding: 48px 0 64px;
  }

  .homepage-final-cta-title {
    max-width: none;
  }
}