/* =========================================================
   SOS MÉNAGES — HOMEPAGE
   ========================================================= */

:root {
  --sosm-green: #00b894;
  --sosm-green-dark: #009b7d;
  --sosm-green-light: #e6f7f0;

  --sosm-navy: #0d1b2a;
  --sosm-navy-2: #102438;
  --sosm-navy-3: #162c42;

  --sosm-white: #ffffff;
  --sosm-bg: #f7f9fb;
  --sosm-bg-soft: #f3fbf8;

  --sosm-gray-900: #1f2937;
  --sosm-gray-700: #4b5563;
  --sosm-gray-600: #6b7280;
  --sosm-gray-400: #9ca3af;
  --sosm-gray-300: #d1d5db;
  --sosm-gray-200: #e5e7eb;
  --sosm-gray-100: #f3f4f6;

  --sosm-success-bg: #e6f7f0;
  --sosm-success-text: #008d72;

  --sosm-warning-bg: #fff3e9;
  --sosm-warning-text: #c26627;

  --sosm-radius-sm: 12px;
  --sosm-radius-md: 18px;
  --sosm-radius-lg: 28px;

  --sosm-shadow-sm:
    0 8px 24px rgba(13, 27, 42, 0.08);

  --sosm-shadow-md:
    0 20px 50px rgba(13, 27, 42, 0.12);

  --sosm-shadow-lg:
    0 30px 80px rgba(13, 27, 42, 0.16);

  --sosm-container: 1200px;
}


/* =========================================================
   BASE
   ========================================================= */

.sosm-home {
  overflow: hidden;

  color: var(--sosm-navy);

  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.sosm-home *,
.sosm-home *::before,
.sosm-home *::after {
  box-sizing: border-box;
}

.sosm-home img {
  display: block;

  max-width: 100%;
}

.sosm-home a {
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.sosm-container {
  width: min(
    var(--sosm-container),
    calc(100% - 40px)
  );

  margin: 0 auto;
}


/* =========================================================
   GLOBAL TYPOGRAPHY
   ========================================================= */

.sosm-home h1,
.sosm-home h2,
.sosm-home h3 {
  margin-top: 0;

  color: var(--sosm-navy);

  font-weight: 750;
  letter-spacing: -0.035em;
}

.sosm-home h1 {
  line-height: 1.02;
}

.sosm-home h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}

.sosm-home h3 {
  line-height: 1.2;
}

.sosm-home p {
  color: var(--sosm-gray-600);

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   GLOBAL BUTTONS
   ========================================================= */

.sosm-btn {
  min-height: 52px;

  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;
}

.sosm-btn--primary {
  border: 1px solid var(--sosm-green);

  background: var(--sosm-green);

  color: var(--sosm-white);

  box-shadow:
    0 12px 28px rgba(0, 184, 148, 0.2);
}

.sosm-btn--primary:hover {
  transform: translateY(-2px);

  background: var(--sosm-green-dark);

  color: var(--sosm-white);

  box-shadow:
    0 16px 36px rgba(0, 184, 148, 0.28);
}

.sosm-btn--secondary {
  border: 1px solid rgba(13, 27, 42, 0.15);

  background: var(--sosm-white);

  color: var(--sosm-navy);
}

.sosm-btn--secondary:hover {
  border-color: var(--sosm-green);

  background: var(--sosm-green-light);

  color: var(--sosm-green-dark);
}

.sosm-btn--light {
  border: 1px solid var(--sosm-white);

  background: var(--sosm-white);

  color: var(--sosm-navy);
}

.sosm-btn--light:hover {
  transform: translateY(-2px);

  background: var(--sosm-green-light);

  border-color: var(--sosm-green-light);

  color: var(--sosm-green-dark);
}

.sosm-text-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--sosm-green-dark);

  font-weight: 700;

  text-decoration: none;
}

.sosm-text-link:hover {
  color: var(--sosm-navy);
}


/* =========================================================
   GLOBAL HEADINGS
   ========================================================= */

.sosm-section-heading {
  max-width: 760px;

  margin-bottom: 42px;
}

.sosm-section-heading--center {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.sosm-section-heading__eyebrow {
  display: inline-flex;

  margin-bottom: 12px;

  padding: 7px 11px;

  border: 1px solid rgba(0, 184, 148, 0.22);
  border-radius: 999px;

  background: var(--sosm-green-light);

  color: var(--sosm-green-dark);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.03em;
}

.sosm-section-heading h2 {
  margin-bottom: 14px;
}

.sosm-section-heading p {
  margin-bottom: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.sosm-home-hero {
  position: relative;

  padding: 74px 0 74px;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(0, 184, 148, 0.14),
      transparent 33%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fbfefd 48%,
      #effaf6 100%
    );
}

.sosm-home-hero__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 64px;

  align-items: center;
}

.sosm-kicker {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 7px 11px;

  border: 1px solid rgba(0, 184, 148, 0.22);
  border-radius: 999px;

  background: rgba(230, 247, 240, 0.82);

  color: var(--sosm-green-dark);

  font-size: 12px;
  font-weight: 700;
}

.sosm-kicker__dot {
  width: 7px;
  height: 7px;

  display: inline-block;

  border-radius: 50%;

  background: var(--sosm-green);

  box-shadow:
    0 0 0 4px rgba(0, 184, 148, 0.12);
}

.sosm-home-hero__title {
  margin: 16px 0 24px;

  font-size: clamp(52px, 6.2vw, 80px);
}

.sosm-home-hero__title span {
  color: var(--sosm-green);
}

.sosm-home-hero__lead {
  max-width: 690px;

  margin-bottom: 18px;

  font-size: 19px !important;
  line-height: 1.6 !important;
}

.sosm-home-hero__lead strong {
  color: var(--sosm-navy);

  font-weight: 700;
}

.sosm-home-hero__audiences {
  display: flex;
  align-items: center;

  gap: 11px;

  flex-wrap: wrap;

  margin: 20px 0 30px;
}

.sosm-home-hero__audiences span {
  color: var(--sosm-gray-700);

  font-size: 13px;
  font-weight: 650;
}

.sosm-home-hero__audiences i {
  width: 4px;
  height: 4px;

  display: inline-block;

  border-radius: 50%;

  background: var(--sosm-green);
}

.sosm-home-hero__actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.sosm-home-hero__reassurance {
  display: flex;

  gap: 22px;

  flex-wrap: wrap;

  margin-top: 16px;
}

.sosm-home-hero__reassurance span {
  color: var(--sosm-gray-600);

  font-size: 13px;
}

.sosm-home-hero__reassurance strong {
  margin-right: 5px;

  color: var(--sosm-green);
}


/* HERO VISUAL */

.sosm-home-hero__visual {
  position: relative;

  min-height: 540px;
}

.sosm-home-hero__photo {
  position: absolute;

  inset: 0 0 30px 40px;

  border-radius: var(--sosm-radius-lg);

  overflow: hidden;

  box-shadow: var(--sosm-shadow-lg);
}

.sosm-home-hero__photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.02),
      rgba(13, 27, 42, 0.13)
    );
}

.sosm-home-hero__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.sosm-product-card {
  position: absolute;

  z-index: 5;

  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 18px;

  background: var(--sosm-white);

  box-shadow: var(--sosm-shadow-md);
}

.sosm-product-card--planning {
  left: -24px;
  bottom: -6px;

  width: min(520px, 83%);

  padding: 18px;
}

.sosm-product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  margin-bottom: 10px;

  padding-bottom: 12px;

  border-bottom: 1px solid var(--sosm-gray-100);
}

.sosm-product-card__header > div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-product-card__eyebrow {
  color: var(--sosm-gray-400);

  font-size: 11px;
}

.sosm-product-card__header strong {
  font-size: 15px;
}

.sosm-mission {
  display: grid;
  grid-template-columns: 54px 1fr auto;

  gap: 12px;

  align-items: center;

  padding: 10px 0;

  border-bottom: 1px solid var(--sosm-gray-100);
}

.sosm-mission:last-child {
  border-bottom: 0;
}

.sosm-mission__time {
  color: var(--sosm-gray-600);

  font-size: 12px;
  font-weight: 700;
}

.sosm-mission__content {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-mission__content strong {
  color: var(--sosm-navy);

  font-size: 13px;
}

.sosm-mission__content span {
  color: var(--sosm-gray-400);

  font-size: 11px;
}


/* STATUS */

.sosm-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 9px;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;

  white-space: nowrap;
}

.sosm-status--success {
  background: var(--sosm-success-bg);

  color: var(--sosm-success-text);
}

.sosm-status--warning {
  background: var(--sosm-warning-bg);

  color: var(--sosm-warning-text);
}


/* FLOATING NOTIFICATION */

.sosm-floating-notification {
  position: absolute;

  top: 38px;
  right: -24px;

  z-index: 6;

  display: flex;
  align-items: center;

  gap: 11px;

  min-width: 220px;

  padding: 13px 15px;

  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.97);

  box-shadow: var(--sosm-shadow-md);
}

.sosm-floating-notification__icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--sosm-green);

  color: var(--sosm-white);

  font-weight: 800;
}

.sosm-floating-notification div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-floating-notification strong {
  color: var(--sosm-navy);

  font-size: 12px;
}

.sosm-floating-notification div span {
  color: var(--sosm-gray-400);

  font-size: 10px;
}


/* =========================================================
   AUDIENCES
   ========================================================= */

.sosm-audiences {
  padding: 88px 0 96px;

  background: var(--sosm-white);
}

.sosm-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.sosm-audience-card {
  overflow: hidden;

  border: 1px solid var(--sosm-gray-200);
  border-radius: 20px;

  background: var(--sosm-white);

  box-shadow: var(--sosm-shadow-sm);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.sosm-audience-card:hover {
  transform: translateY(-5px);

  border-color: rgba(0, 184, 148, 0.3);

  box-shadow: var(--sosm-shadow-md);
}

.sosm-audience-card__visual {
  position: relative;

  height: 190px;

  overflow: hidden;
}

.sosm-audience-card__visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.28s ease;
}

.sosm-audience-card:hover .sosm-audience-card__visual img {
  transform: scale(1.035);
}

.sosm-audience-card__body {
  position: relative;

  padding: 24px;
}

.sosm-audience-card__icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  margin-bottom: 12px;

  border-radius: 11px;

  background: var(--sosm-green-light);

  color: var(--sosm-green-dark);

  font-size: 20px;
  font-weight: 700;
}

.sosm-audience-card__type {
  display: block;

  margin-bottom: 6px;

  color: var(--sosm-green-dark);

  font-size: 11px;
  font-weight: 750;

  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sosm-audience-card h3 {
  margin-bottom: 10px;

  font-size: 22px;
}

.sosm-audience-card p {
  min-height: 116px;

  margin-bottom: 16px;

  font-size: 14px;
  line-height: 1.6;
}

.sosm-audience-card a {
  display: inline-flex;

  gap: 7px;

  color: var(--sosm-navy);

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;
}

.sosm-audience-card a:hover {
  color: var(--sosm-green-dark);
}


/* PROVIDER CARD */

.sosm-audience-card--provider {
  border-color: rgba(0, 184, 148, 0.3);

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f3fbf8 100%
    );
}

.sosm-audience-card__badge {
  position: absolute;

  top: 14px;
  left: 14px;

  padding: 6px 9px;

  border-radius: 999px;

  background: var(--sosm-navy);

  color: var(--sosm-white);

  font-size: 10px;
  font-weight: 700;
}

.sosm-audience-card__provider-link {
  min-height: 42px;

  padding: 0 14px;

  align-items: center;

  border-radius: 10px;

  background: var(--sosm-green);

  color: var(--sosm-white) !important;
}

.sosm-audience-card__provider-link:hover {
  background: var(--sosm-green-dark);
}


/* =========================================================
   PROBLEM
   ========================================================= */

/* =========================================================
   PROBLEM — WHATSAPP
   ========================================================= */

.sosm-problem {
  position: relative;
  overflow: hidden;

  padding: 78px 0;

  background:
    radial-gradient(
      circle at 78% 35%,
      rgba(0, 184, 148, 0.18),
      transparent 34%
    ),
    linear-gradient(
      110deg,
      #0d1b2a 0%,
      #0c2230 58%,
      #08343c 100%
    );
}


.sosm-problem::before {
  content: "";

  position: absolute;

  top: -160px;
  right: -120px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background: rgba(0, 184, 148, 0.08);

  filter: blur(40px);

  pointer-events: none;
}


/* =========================================================
   GRID
   ========================================================= */

.sosm-problem__grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);

  gap: 52px;

  align-items: center;
}


/* =========================================================
   CONTENU
   ========================================================= */

.sosm-problem__content {
  max-width: 560px;
}


.sosm-problem .sosm-section-heading__eyebrow {
  margin-bottom: 18px;

  border-color: rgba(109, 229, 203, 0.18);

  background: rgba(0, 184, 148, 0.12);

  color: #6de5cb;
}


.sosm-problem h2 {
  margin-bottom: 20px;

  color: var(--sosm-white);

  font-size: clamp(42px, 4.2vw, 62px);

  line-height: 1.04;

  letter-spacing: -0.045em;
}


.sosm-problem h2 span {
  display: block;

  color: #6de5cb;
}


.sosm-problem__content > p {
  max-width: 530px;

  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================================
   CHECKLIST
   ========================================================= */

.sosm-check-list {
  margin: 26px 0 30px;

  padding: 0;

  list-style: none;
}


.sosm-check-list li {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
}


.sosm-check-list li span {
  flex: 0 0 auto;

  color: var(--sosm-green);

  font-weight: 800;
}


/* =========================================================
   CTA
   ========================================================= */

.sosm-btn--problem {
  min-height: 48px;

  padding: 0 20px;

  border: 1px solid var(--sosm-green);

  background: var(--sosm-green);

  color: var(--sosm-white);

  box-shadow:
    0 12px 30px rgba(0, 184, 148, 0.22);
}


.sosm-btn--problem:hover {
  transform: translateY(-2px);

  background: var(--sosm-green-dark);

  border-color: var(--sosm-green-dark);

  color: var(--sosm-white);
}


/* =========================================================
   VISUEL
   ========================================================= */

.sosm-problem__visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  min-height: 390px;
}


.sosm-problem__visual img {
  display: block;

  width: 112%;
  max-width: none;

  margin-right: -8%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 26px 45px rgba(0, 0, 0, 0.20)
    );
}


/* halo derrière le visuel */

.sosm-problem__visual::before {
  content: "";

  position: absolute;

  z-index: -1;

  top: 18%;
  left: 14%;

  width: 74%;
  height: 64%;

  border-radius: 50%;

  background: rgba(0, 184, 148, 0.16);

  filter: blur(70px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .sosm-problem__grid {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(0, 1.1fr);

    gap: 30px;
  }


  .sosm-problem h2 {
    font-size: clamp(40px, 5vw, 54px);
  }


  .sosm-problem__visual img {
    width: 108%;

    margin-right: -5%;
  }

}


/* =========================================================
   TABLET PORTRAIT
   ========================================================= */

@media (max-width: 850px) {

  .sosm-problem {
    padding: 64px 0 42px;
  }


  .sosm-problem__grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .sosm-problem__content {
    max-width: 680px;

    text-align: center;

    margin: 0 auto;
  }


  .sosm-problem__content > p {
    margin-left: auto;
    margin-right: auto;
  }


  .sosm-check-list {
    display: inline-block;

    text-align: left;
  }


  .sosm-problem__visual {
    min-height: 0;

    justify-content: center;
  }


  .sosm-problem__visual img {
    width: 100%;

    max-width: 760px;

    margin-right: 0;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .sosm-problem {
    padding: 56px 0 28px;
  }


  .sosm-problem__content {
    text-align: left;
  }


  .sosm-problem h2 {
    font-size: 38px;

    line-height: 1.06;
  }


  .sosm-problem__content > p {
    margin-left: 0;
    margin-right: 0;

    font-size: 15px;
  }


  .sosm-check-list {
    display: block;

    margin-bottom: 24px;
  }


  .sosm-btn--problem {
    width: 100%;
  }


  .sosm-problem__visual {
    margin-top: 12px;
  }


  .sosm-problem__visual img {
    width: 112%;

    margin-left: -6%;
    margin-right: -6%;
  }

}


/* =========================================================
   VERY SMALL
   ========================================================= */

@media (max-width: 420px) {

  .sosm-problem h2 {
    font-size: 34px;
  }


  .sosm-problem__visual img {
    width: 118%;

    margin-left: -9%;
    margin-right: -9%;
  }

}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.sosm-how {
  padding: 90px 0 98px;

  background: var(--sosm-white);
}

.sosm-how__steps {
  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  gap: 18px;

  align-items: center;
}

.sosm-how-step {
  position: relative;

  min-height: 230px;

  padding: 24px;

  border: 1px solid var(--sosm-gray-200);
  border-radius: 18px;

  background: var(--sosm-white);

  box-shadow: var(--sosm-shadow-sm);
}

.sosm-how-step__number {
  position: absolute;

  top: 14px;
  right: 16px;

  color: var(--sosm-gray-300);

  font-size: 28px;
  font-weight: 800;
}

.sosm-how-step__icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  margin-bottom: 20px;

  border-radius: 14px;

  background: var(--sosm-green-light);

  font-size: 25px;
}

.sosm-how-step h3 {
  margin-bottom: 8px;

  font-size: 21px;
}

.sosm-how-step p {
  margin-bottom: 0;

  font-size: 14px;
  line-height: 1.6;
}

.sosm-how__arrow {
  color: var(--sosm-green);

  font-size: 28px;
  font-weight: 700;
}


/* =========================================================
   PRODUCT
   ========================================================= */

.sosm-product {
  padding: 100px 0;

  background: var(--sosm-bg);
}

.sosm-product__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);

  gap: 70px;

  align-items: center;
}

.sosm-product__content h2 {
  margin-bottom: 16px;
}

.sosm-product__content > p {
  max-width: 560px;

  font-size: 17px;
}

.sosm-feature-list {
  margin: 28px 0;
  padding: 0;

  list-style: none;
}

.sosm-feature-list li {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 12px;

  color: var(--sosm-navy);

  font-size: 15px;
  font-weight: 550;
}

.sosm-feature-list li span {
  width: 22px;
  height: 22px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--sosm-green-light);

  color: var(--sosm-green-dark);

  font-size: 12px;
  font-weight: 800;
}


/* DASHBOARD */

.sosm-dashboard {
  padding: 18px;

  border: 1px solid var(--sosm-gray-200);
  border-radius: 24px;

  background: var(--sosm-white);

  box-shadow: var(--sosm-shadow-lg);
}

.sosm-dashboard__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 8px 8px 18px;
}

.sosm-dashboard__topbar > div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-dashboard__topbar span {
  color: var(--sosm-gray-400);

  font-size: 11px;
}

.sosm-dashboard__topbar strong {
  font-size: 15px;
}

.sosm-dashboard__avatar {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--sosm-navy);

  color: var(--sosm-white) !important;

  font-size: 11px;
  font-weight: 700;
}

.sosm-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-bottom: 14px;
}

.sosm-dashboard__stats > div {
  padding: 14px;

  border-radius: 14px;

  background: var(--sosm-bg);
}

.sosm-dashboard__stats span {
  display: block;

  color: var(--sosm-gray-400);

  font-size: 10px;
}

.sosm-dashboard__stats strong {
  display: block;

  margin-top: 4px;

  color: var(--sosm-navy);

  font-size: 26px;
}

.sosm-dashboard__stat-warning {
  background: var(--sosm-warning-bg) !important;
}

.sosm-dashboard__content {
  border: 1px solid var(--sosm-gray-100);
  border-radius: 17px;

  overflow: hidden;
}

.sosm-dashboard__title {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 16px;

  background: #fbfcfd;
}

.sosm-dashboard__title strong {
  font-size: 13px;
}

.sosm-dashboard__title a {
  color: var(--sosm-green-dark);

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;
}

.sosm-dashboard-row {
  display: grid;
  grid-template-columns:
    56px
    minmax(0, 1.2fr)
    minmax(0, 0.8fr)
    auto;

  gap: 12px;

  align-items: center;

  padding: 14px 16px;

  border-top: 1px solid var(--sosm-gray-100);
}

.sosm-dashboard-row__date {
  color: var(--sosm-gray-600);

  font-size: 11px;
  font-weight: 700;
}

.sosm-dashboard-row > div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-dashboard-row strong {
  color: var(--sosm-navy);

  font-size: 12px;
}

.sosm-dashboard-row span {
  color: var(--sosm-gray-400);

  font-size: 10px;
}


/* =========================================================
   MARKETPLACE
   ========================================================= */

.sosm-marketplace {
  padding: 96px 0;

  background:
    linear-gradient(
      90deg,
      #f1fbf8 0%,
      #ffffff 100%
    );
}

.sosm-marketplace__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.92fr);

  gap: 70px;

  align-items: center;
}

.sosm-marketplace__content h2 {
  margin-bottom: 18px;
}

.sosm-marketplace__content h2 span {
  display: block;

  color: var(--sosm-green);
}

.sosm-marketplace__content > p {
  max-width: 610px;

  font-size: 17px;
}

.sosm-marketplace__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 14px;

  margin: 28px 0 30px;
}

.sosm-marketplace__benefits div {
  padding: 15px;

  border: 1px solid rgba(0, 184, 148, 0.14);
  border-radius: 13px;

  background: rgba(255, 255, 255, 0.8);
}

.sosm-marketplace__benefits strong {
  display: block;

  margin-bottom: 5px;

  color: var(--sosm-green);

  font-size: 12px;
}

.sosm-marketplace__benefits span {
  color: var(--sosm-navy);

  font-size: 12px;
  font-weight: 650;
}


/* MARKETPLACE CARD */

.sosm-marketplace-card {
  padding: 20px;

  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 22px;

  background: var(--sosm-white);

  box-shadow: var(--sosm-shadow-lg);
}

.sosm-marketplace-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 18px;

  padding-bottom: 16px;

  border-bottom: 1px solid var(--sosm-gray-100);
}

.sosm-marketplace-card__header > div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.sosm-marketplace-card__header div span {
  color: var(--sosm-gray-400);

  font-size: 10px;
}

.sosm-marketplace-card__header div strong {
  color: var(--sosm-navy);

  font-size: 14px;
}

.sosm-marketplace-card__label {
  display: block;

  margin: 18px 0 10px;

  color: var(--sosm-gray-600);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sosm-provider-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;

  gap: 11px;

  align-items: center;

  padding: 12px 0;

  border-bottom: 1px solid var(--sosm-gray-100);
}

.sosm-provider-row__avatar {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--sosm-green-light);

  color: var(--sosm-green-dark);

  font-size: 11px;
  font-weight: 700;
}

.sosm-provider-row > div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-provider-row div strong {
  font-size: 12px;
}

.sosm-provider-row div span {
  color: var(--sosm-gray-400);

  font-size: 10px;
}

.sosm-provider-row > strong {
  color: var(--sosm-green-dark);

  font-size: 10px;
}

.sosm-marketplace-card__button {
  width: 100%;
  min-height: 44px;

  margin-top: 16px;

  border: 0;
  border-radius: 11px;

  background: var(--sosm-green);

  color: var(--sosm-white);

  font-family: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
}


/* =========================================================
   PROVIDER
   ========================================================= */

.sosm-provider {
  padding: 0;

  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(0, 184, 148, 0.22),
      transparent 34%
    ),
    var(--sosm-navy);
}

.sosm-provider__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  min-height: 620px;
}

.sosm-provider__visual {
  position: relative;

  min-height: 620px;

  overflow: hidden;
}

.sosm-provider__visual::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(13, 27, 42, 0.06),
      rgba(13, 27, 42, 0.38)
    );
}

.sosm-provider__visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.sosm-provider__mission {
  position: absolute;

  left: 32px;
  bottom: 32px;

  z-index: 3;

  width: min(420px, calc(100% - 64px));

  display: grid;
  grid-template-columns: 42px 1fr auto;

  gap: 12px;

  align-items: center;

  padding: 15px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow: var(--sosm-shadow-md);
}

.sosm-provider__mission-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  background: var(--sosm-green-light);

  color: var(--sosm-green);

  font-size: 20px;
}

.sosm-provider__mission div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-provider__mission div span {
  color: var(--sosm-gray-400);

  font-size: 10px;
}

.sosm-provider__mission div strong {
  color: var(--sosm-navy);

  font-size: 12px;
}

.sosm-provider__content {
  align-self: center;

  padding: 70px;
}

.sosm-provider__eyebrow {
  display: inline-flex;

  margin-bottom: 14px;

  padding: 7px 10px;

  border-radius: 999px;

  background: rgba(0, 184, 148, 0.14);

  color: #6de5cb;

  font-size: 11px;
  font-weight: 700;
}

.sosm-provider__content h2 {
  max-width: 660px;

  margin-bottom: 18px;

  color: var(--sosm-white);
}

.sosm-provider__content h2 span {
  color: #6de5cb;
}

.sosm-provider__content > p {
  max-width: 620px;

  color: rgba(255, 255, 255, 0.69);

  font-size: 17px;
}

.sosm-provider__features {
  display: grid;

  gap: 14px;

  margin: 28px 0;
}

.sosm-provider__features > div {
  display: grid;
  grid-template-columns: 44px 1fr;

  gap: 13px;

  align-items: flex-start;
}

.sosm-provider__features > div > span {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: rgba(0, 184, 148, 0.14);

  color: #6de5cb;

  font-size: 20px;
  font-weight: 700;
}

.sosm-provider__features strong {
  display: block;

  margin-bottom: 3px;

  color: var(--sosm-white);

  font-size: 14px;
}

.sosm-provider__features p {
  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;
}

.sosm-provider__free {
  display: inline-block;

  margin-left: 14px;

  color: rgba(255, 255, 255, 0.48);

  font-size: 11px;
}


/* =========================================================
   SERENITY
   ========================================================= */

.sosm-serenity {
  padding: 100px 0;

  background: var(--sosm-white);
}

.sosm-serenity__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(0, 1.14fr);

  gap: 70px;

  align-items: center;
}

.sosm-serenity__content h2 {
  margin-bottom: 18px;
}

.sosm-serenity__content > p {
  max-width: 600px;

  font-size: 17px;
}

.sosm-serenity__promise {
  display: block;

  margin: 26px 0;

  color: var(--sosm-navy);

  font-size: 24px;
  line-height: 1.3;
}

.sosm-serenity__visual {
  position: relative;

  min-height: 480px;

  overflow: hidden;

  border-radius: var(--sosm-radius-lg);

  box-shadow: var(--sosm-shadow-md);
}

.sosm-serenity__visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.sosm-serenity__badge {
  position: absolute;

  left: 24px;
  bottom: 24px;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 14px 16px;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow: var(--sosm-shadow-md);
}

.sosm-serenity__badge > span {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--sosm-green);

  color: var(--sosm-white);

  font-weight: 800;
}

.sosm-serenity__badge div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.sosm-serenity__badge strong {
  color: var(--sosm-navy);

  font-size: 12px;
}

.sosm-serenity__badge div span {
  color: var(--sosm-gray-400);

  font-size: 10px;
}


/* =========================================================
   PRICING
   ========================================================= */

.sosm-pricing {
  padding: 96px 0;

  background: var(--sosm-bg);
}

.sosm-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  max-width: 1020px;

  margin: 0 auto;
}

.sosm-price-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 500px;

  padding: 28px;

  border: 1px solid var(--sosm-gray-200);
  border-radius: 20px;

  background: var(--sosm-white);

  box-shadow: var(--sosm-shadow-sm);
}

.sosm-price-card--featured {
  border: 2px solid var(--sosm-green);

  box-shadow: var(--sosm-shadow-md);

  transform: translateY(-6px);
}

.sosm-price-card__badge {
  position: absolute;

  top: -14px;
  left: 50%;

  padding: 6px 11px;

  transform: translateX(-50%);

  border-radius: 999px;

  background: var(--sosm-green);

  color: var(--sosm-white);

  font-size: 10px;
  font-weight: 750;

  text-transform: uppercase;
  letter-spacing: 0.04em;

  white-space: nowrap;
}

.sosm-price-card__type {
  display: block;

  margin-bottom: 8px;

  color: var(--sosm-green-dark);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sosm-price-card h3 {
  margin-bottom: 8px;

  font-size: 24px;
}

.sosm-price-card__price {
  min-height: 62px;

  margin: 12px 0 18px;
}

.sosm-price-card__price strong {
  display: block;

  color: var(--sosm-navy);

  font-size: 38px;
  line-height: 1.05;
}

.sosm-price-card__price span {
  display: block;

  margin-top: 4px;

  color: var(--sosm-gray-400);

  font-size: 11px;
}

.sosm-price-card > p {
  min-height: 82px;

  font-size: 14px;
}

.sosm-price-card ul {
  margin: 20px 0 26px;
  padding: 0;

  list-style: none;
}

.sosm-price-card li {
  margin-bottom: 9px;

  color: var(--sosm-gray-700);

  font-size: 13px;
}

.sosm-price-card .sosm-btn {
  width: 100%;

  margin-top: auto;
}


/* WELCOME CREDIT */

.sosm-pricing__welcome {
  max-width: 800px;

  margin: 34px auto 0;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 18px 20px;

  border: 1px solid rgba(0, 184, 148, 0.16);
  border-radius: 16px;

  background: var(--sosm-green-light);
}

.sosm-pricing__welcome > span {
  font-size: 30px;
}

.sosm-pricing__welcome p {
  margin: 0;

  color: var(--sosm-gray-700);

  font-size: 13px;
}


/* =========================================================
   RESOURCES
   ========================================================= */

.sosm-resources {
  padding: 96px 0;

  background: var(--sosm-white);
}

.sosm-resources__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 34px;
}

.sosm-resources__heading h2 {
  max-width: 740px;

  margin-bottom: 0;
}

.sosm-resources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.sosm-resource-card {
  min-height: 300px;

  display: flex;
  flex-direction: column;

  padding: 24px;

  border: 1px solid var(--sosm-gray-200);
  border-radius: 18px;

  background: var(--sosm-white);

  box-shadow: var(--sosm-shadow-sm);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.sosm-resource-card:hover {
  transform: translateY(-4px);

  border-color: rgba(0, 184, 148, 0.25);

  box-shadow: var(--sosm-shadow-md);
}

.sosm-resource-card__category {
  display: inline-flex;

  align-self: flex-start;

  margin-bottom: 14px;

  padding: 5px 8px;

  border-radius: 999px;

  background: var(--sosm-green-light);

  color: var(--sosm-green-dark);

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sosm-resource-card h3 {
  margin-bottom: 12px;

  font-size: 20px;
}

.sosm-resource-card p {
  margin-bottom: 18px;

  font-size: 13px;
  line-height: 1.6;
}

.sosm-resource-card a {
  margin-top: auto;

  color: var(--sosm-green-dark);

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.sosm-final-cta {
  padding: 74px 0;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(0, 184, 148, 0.2),
      transparent 30%
    ),
    var(--sosm-navy);
}

.sosm-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

.sosm-final-cta__inner > div:first-child {
  max-width: 760px;
}

.sosm-final-cta__eyebrow {
  display: inline-flex;

  margin-bottom: 12px;

  padding: 6px 9px;

  border-radius: 999px;

  background: rgba(0, 184, 148, 0.14);

  color: #6de5cb;

  font-size: 11px;
  font-weight: 700;
}

.sosm-final-cta h2 {
  margin-bottom: 14px;

  color: var(--sosm-white);
}

.sosm-final-cta h2 span {
  display: block;

  color: #6de5cb;
}

.sosm-final-cta p {
  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;
}

.sosm-final-cta__actions {
  min-width: 245px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
}

.sosm-final-cta__actions small {
  color: rgba(255, 255, 255, 0.46);

  font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .sosm-home-hero__grid,
  .sosm-product__grid,
  .sosm-marketplace__grid,
  .sosm-serenity__grid {
    gap: 44px;
  }

  .sosm-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sosm-resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sosm-provider__content {
    padding: 54px;
  }

}


/* =========================================================
   TABLET PORTRAIT
   ========================================================= */

@media (max-width: 900px) {

  .sosm-home-hero__grid,
  .sosm-problem__grid,
  .sosm-product__grid,
  .sosm-marketplace__grid,
  .sosm-provider__grid,
  .sosm-serenity__grid {
    grid-template-columns: 1fr;
  }

  .sosm-home-hero__visual {
    min-height: 500px;
  }

  .sosm-home-hero__photo {
    inset: 0 0 40px;
  }

  .sosm-floating-notification {
    right: 16px;
  }

  .sosm-product-card--planning {
    left: 18px;

    width: calc(100% - 36px);
  }

  .sosm-how__steps {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .sosm-how__arrow {
    display: none;
  }

  .sosm-provider__visual {
    min-height: 520px;
  }

  .sosm-provider__content {
    padding: 60px 30px 70px;
  }

  .sosm-pricing__grid {
    grid-template-columns: 1fr;

    max-width: 620px;
  }

  .sosm-price-card--featured {
    transform: none;
  }

  .sosm-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;

    gap: 28px;
  }

  .sosm-final-cta__actions {
    align-items: flex-start;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .sosm-container {
    width: calc(100% - 28px);
  }

  .sosm-home-hero {
    padding: 50px 0 64px;
  }

  .sosm-home-hero__title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .sosm-home-hero__lead {
    font-size: 16px !important;
  }

  .sosm-home-hero__audiences {
    gap: 8px;
  }

  .sosm-home-hero__actions {
    display: grid;
  }

  .sosm-home-hero__actions .sosm-btn {
    width: 100%;
  }

  .sosm-home-hero__reassurance {
    gap: 10px 18px;
  }

  .sosm-home-hero__visual {
    min-height: 420px;
  }

  .sosm-home-hero__photo {
    inset: 0 0 70px;
  }

  .sosm-product-card--planning {
    bottom: 0;
    left: 10px;

    width: calc(100% - 20px);

    padding: 14px;
  }

  .sosm-floating-notification {
    display: none;
  }

  .sosm-mission {
    grid-template-columns: 46px 1fr;
  }

  .sosm-mission .sosm-status {
    grid-column: 2;
    justify-self: start;
  }

  .sosm-audiences,
  .sosm-how,
  .sosm-product,
  .sosm-marketplace,
  .sosm-serenity,
  .sosm-pricing,
  .sosm-resources {
    padding: 66px 0;
  }

  .sosm-audience-grid {
    grid-template-columns: 1fr;
  }

  .sosm-audience-card p {
    min-height: 0;
  }

  .sosm-problem {
    padding: 62px 0;
  }

  .sosm-problem__messages {
    min-height: 390px;
  }

  .sosm-message {
    max-width: 190px;

    font-size: 12px;
  }

  .sosm-problem__center {
    width: 125px;
    height: 125px;
  }

  .sosm-how__steps {
    grid-template-columns: 1fr;
  }

  .sosm-dashboard__stats {
    grid-template-columns: 1fr 1fr;
  }

  .sosm-dashboard__stat-warning {
    grid-column: 1 / -1;
  }

  .sosm-dashboard-row {
    grid-template-columns: 48px 1fr;
  }

  .sosm-dashboard-row > div:nth-of-type(2) {
    grid-column: 2;
  }

  .sosm-dashboard-row .sosm-status {
    grid-column: 2;

    justify-self: start;
  }

  .sosm-marketplace__benefits {
    grid-template-columns: 1fr;
  }

  .sosm-provider__visual {
    min-height: 450px;
  }

  .sosm-provider__mission {
    left: 16px;
    bottom: 16px;

    width: calc(100% - 32px);

    grid-template-columns: 38px 1fr;
  }

  .sosm-provider__mission .sosm-status {
    grid-column: 2;

    justify-self: start;
  }

  .sosm-provider__content {
    padding: 50px 22px 58px;
  }

  .sosm-provider__free {
    display: block;

    margin: 12px 0 0;
  }

  .sosm-serenity__visual {
    min-height: 370px;
  }

  .sosm-pricing__welcome {
    align-items: flex-start;
  }

  .sosm-resources__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sosm-resources__grid {
    grid-template-columns: 1fr;
  }

  .sosm-final-cta {
    padding: 58px 0;
  }

  .sosm-final-cta__actions {
    width: 100%;
  }

  .sosm-final-cta__actions .sosm-btn {
    width: 100%;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .sosm-home h2 {
    font-size: 34px;
  }

  .sosm-home-hero__title {
    font-size: 42px;
  }

  .sosm-product-card--planning {
    font-size: 11px;
  }

  .sosm-marketplace-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .sosm-provider-row {
    grid-template-columns: 38px 1fr;
  }

  .sosm-provider-row > strong {
    grid-column: 2;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .sosm-home *,
  .sosm-home *::before,
  .sosm-home *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}