/* ==========================================================
   SOS Ménages — Design System
   Palette officielle :
   Vert       #00B894
   Bleu nuit  #0D1B2A
   Vert clair #E6F7F0
   Gris       #6B7280
   ========================================================== */

:root {
  --sosm-green: #00B894;
  --sosm-green-dark: #009C7D;
  --sosm-navy: #0D1B2A;
  --sosm-mint: #E6F7F0;
  --sosm-gray: #6B7280;
  --sosm-gray-100: #F7F9FB;
  --sosm-gray-200: #E8EDF2;
  --sosm-white: #FFFFFF;
  --sosm-shadow-sm: 0 8px 24px rgba(13, 27, 42, .08);
  --sosm-shadow-md: 0 18px 50px rgba(13, 27, 42, .12);
  --sosm-radius-sm: 12px;
  --sosm-radius-md: 18px;
  --sosm-radius-lg: 28px;
  --sosm-container: 1200px;
  --sosm-transition: 180ms ease;
}

html {
  scroll-behavior: smooth;
}

body.sosm-site {
  color: var(--sosm-navy);
  background: var(--sosm-white);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sosm-site h1,
.sosm-site h2,
.sosm-site h3,
.sosm-site h4,
.sosm-site h5,
.sosm-site h6 {
  color: var(--sosm-navy);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.sosm-site h1 { line-height: 1.05; }
.sosm-site h2 { line-height: 1.12; }
.sosm-site p  { line-height: 1.7; }

.sosm-accent { color: var(--sosm-green); }
.sosm-muted { color: var(--sosm-gray); }
.sosm-bg-mint { background: var(--sosm-mint); }
.sosm-bg-navy { background: var(--sosm-navy); color: var(--sosm-white); }

.sosm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 184, 148, .28);
  border-radius: 999px;
  background: rgba(230, 247, 240, .76);
  color: var(--sosm-green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.sosm-card {
  background: var(--sosm-white);
  border: 1px solid var(--sosm-gray-200);
  border-radius: var(--sosm-radius-md);
  box-shadow: var(--sosm-shadow-sm);
}

.sosm-card--hover {
  transition: transform var(--sosm-transition), box-shadow var(--sosm-transition), border-color var(--sosm-transition);
}

.sosm-card--hover:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 148, .30);
  box-shadow: var(--sosm-shadow-md);
}

.sosm-button,
a.sosm-button,
.et_pb_button.sosm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px !important;
  border: 1px solid var(--sosm-green) !important;
  border-radius: 12px !important;
  background: var(--sosm-green) !important;
  color: var(--sosm-white) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(0,184,148,.18);
  transition: transform var(--sosm-transition), background var(--sosm-transition), box-shadow var(--sosm-transition);
}

.sosm-button:hover,
a.sosm-button:hover,
.et_pb_button.sosm-button:hover {
  transform: translateY(-2px);
  background: var(--sosm-green-dark) !important;
  box-shadow: 0 14px 30px rgba(0,184,148,.24);
}

.sosm-button--outline,
a.sosm-button--outline {
  background: transparent !important;
  color: var(--sosm-navy) !important;
  border-color: rgba(13,27,42,.16) !important;
  box-shadow: none;
}

.sosm-button--outline:hover,
a.sosm-button--outline:hover {
  border-color: var(--sosm-green) !important;
  color: var(--sosm-green-dark) !important;
  background: var(--sosm-mint) !important;
}

.sosm-button--light,
a.sosm-button--light {
  background: var(--sosm-white) !important;
  color: var(--sosm-navy) !important;
  border-color: var(--sosm-white) !important;
}

/* Divi global buttons */
.sosm-site .et_pb_button {
  border-radius: 12px;
  font-weight: 700;
}

/* Header */
.sosm-site #main-header {
  box-shadow: 0 1px 0 rgba(13, 27, 42, .08);
}

.sosm-site #main-header.sosm-header-scrolled {
  box-shadow: 0 10px 30px rgba(13, 27, 42, .10);
}

.sosm-site #top-menu > li > a {
  color: var(--sosm-navy);
  font-weight: 600;
}

.sosm-site #top-menu > li.current-menu-item > a,
.sosm-site #top-menu > li > a:hover {
  color: var(--sosm-green);
  opacity: 1;
}

/* Hero */
.sosm-hero {
  position: relative;
  overflow: hidden;
}

.sosm-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 25%, rgba(0,184,148,.12), transparent 30%),
    linear-gradient(135deg, rgba(230,247,240,.60), rgba(255,255,255,0) 55%);
}

/* Feature rows / trust bars */
.sosm-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sosm-feature__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--sosm-green);
  background: var(--sosm-mint);
}

.sosm-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sosm-checklist li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
}

.sosm-checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sosm-green);
  font-weight: 800;
}

/* Pricing */
.sosm-pricing-card {
  position: relative;
  padding: 28px;
  height: 100%;
}

.sosm-pricing-card--featured {
  border: 2px solid var(--sosm-green);
  box-shadow: var(--sosm-shadow-md);
}

.sosm-badge {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--sosm-green-dark);
  background: var(--sosm-mint);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Marketplace / provider visual treatment */
.sosm-provider-panel {
  border-radius: var(--sosm-radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(0,184,148,.18), transparent 38%),
    var(--sosm-navy);
  color: var(--sosm-white);
  overflow: hidden;
}

.sosm-provider-panel h2,
.sosm-provider-panel h3 {
  color: var(--sosm-white);
}

/* Forms */
.sosm-site input[type="text"],
.sosm-site input[type="email"],
.sosm-site input[type="tel"],
.sosm-site input[type="number"],
.sosm-site input[type="password"],
.sosm-site select,
.sosm-site textarea {
  border: 1px solid var(--sosm-gray-200);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--sosm-navy);
  background: var(--sosm-white);
  transition: border-color var(--sosm-transition), box-shadow var(--sosm-transition);
}

.sosm-site input:focus,
.sosm-site select:focus,
.sosm-site textarea:focus {
  outline: 0;
  border-color: var(--sosm-green);
  box-shadow: 0 0 0 4px rgba(0,184,148,.10);
}

/* Footer */
.sosm-footer {
  background: var(--sosm-navy);
  color: rgba(255,255,255,.78);
}

.sosm-footer a { color: rgba(255,255,255,.82); }
.sosm-footer a:hover { color: var(--sosm-white); }

/* Utility */
.sosm-shadow { box-shadow: var(--sosm-shadow-md); }
.sosm-radius { border-radius: var(--sosm-radius-md); overflow: hidden; }
.sosm-radius-lg { border-radius: var(--sosm-radius-lg); overflow: hidden; }

@media (max-width: 980px) {
  :root {
    --sosm-radius-lg: 22px;
  }

  .sosm-button,
  a.sosm-button {
    min-height: 50px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 767px) {
  body.sosm-site h1 { font-size: clamp(38px, 11vw, 56px); }
  body.sosm-site h2 { font-size: clamp(30px, 8vw, 42px); }

  .sosm-card {
    border-radius: 16px;
  }

  .sosm-mobile-full,
  .sosm-mobile-full .et_pb_button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
/* =========================================================
   SOS MÉNAGES — HEADER + MEGA MENU
   ========================================================= */

.sosm-header {
  --header-height: 78px;

  position: sticky;
  top: 0;
  z-index: 99999;

  width: 100%;

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

  border-bottom: 1px solid rgba(13, 27, 42, 0.07);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.sosm-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(13, 27, 42, 0.08);
}

.sosm-header__inner {
  width: min(1240px, calc(100% - 40px));
  height: var(--header-height);

  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 28px;
}

/* LOGO */

.sosm-header__logo {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
}

.sosm-header__logo img {
  display: block;

  width: auto;
  height: 80px;
}

/* NAV */

.sosm-nav {
  flex: 1;

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

  gap: 4px;

  height: 100%;
}

.sosm-nav__item {
  position: relative;

  display: flex;
  align-items: center;
}

.sosm-nav__link {
  position: relative;

  min-height: 46px;

  padding: 0 15px;

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

  gap: 5px;

  border: 0;
  background: transparent;

  color: #0D1B2A;

  font-family: inherit;
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  text-decoration: none;

  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.sosm-nav__link:hover,
.sosm-nav__item.is-open > .sosm-nav__link {
  color: #00A886;
}

.sosm-nav__link svg {
  width: 15px;
  height: 15px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;

  transition: transform 0.18s ease;
}

.sosm-nav__item.is-open .sosm-nav__link svg {
  transform: rotate(180deg);
}

/* ACTIONS */

.sosm-header__actions {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  gap: 12px;
}

.sosm-header__login {
  min-height: 44px;

  padding: 0 18px;

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

  border: 1px solid rgba(13, 27, 42, 0.13);
  border-radius: 11px;

  color: #0D1B2A;

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

  text-decoration: none;

  transition: all 0.18s ease;
}

.sosm-header__login:hover {
  border-color: #00B894;

  color: #008C72;

  background: #F1FBF8;
}

.sosm-header__cta {
  min-height: 46px;

  padding: 0 20px;

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

  border-radius: 11px;

  background: #00B894;

  color: #fff;

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

  text-decoration: none;

  box-shadow: 0 8px 24px rgba(0, 184, 148, 0.19);

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

.sosm-header__cta:hover {
  transform: translateY(-1px);

  background: #009F80;

  color: #fff;

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

/* =========================================================
   MEGA MENU
   ========================================================= */

.sosm-mega {
  position: fixed;

  top: var(--header-height);
  left: 50%;

  width: min(1160px, calc(100vw - 48px));

  transform:
    translateX(-50%)
    translateY(-10px);

  visibility: hidden;
  opacity: 0;

  pointer-events: none;

  background: #fff;

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

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

  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;

  overflow: hidden;
}

.sosm-nav__item.is-open .sosm-mega {
  visibility: visible;
  opacity: 1;

  pointer-events: auto;

  transform:
    translateX(-50%)
    translateY(0);
}

.sosm-mega__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(290px, 0.7fr);

  gap: 30px;

  padding: 30px;
}

.sosm-mega__label {
  margin: 0 0 14px;

  color: #6B7280;

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

  letter-spacing: 0.07em;

  text-transform: uppercase;
}

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

  gap: 12px;
}

.sosm-mega-card {
  position: relative;

  min-height: 138px;

  padding: 18px;

  display: grid;
  grid-template-columns: 44px 1fr;

  gap: 12px;

  align-items: start;

  border: 1px solid #E8EDF2;
  border-radius: 16px;

  background: #fff;

  color: #0D1B2A;

  text-decoration: none;

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

.sosm-mega-card:hover {
  transform: translateY(-3px);

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

  background: #FAFEFC;

  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.07);
}

.sosm-mega-card__icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #E6F7F0;

  color: #00A886;

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

.sosm-mega-card__content {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.sosm-mega-card__content strong {
  color: #0D1B2A;

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

.sosm-mega-card__content small {
  color: #6B7280;

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

.sosm-mega-card__arrow {
  position: absolute;

  right: 16px;
  bottom: 14px;

  color: #00A886;

  font-size: 18px;
}

/* PRESTATAIRE PANEL */

.sosm-mega__provider {
  position: relative;

  min-height: 230px;

  padding: 24px;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 184, 148, 0.24),
      transparent 37%
    ),
    #0D1B2A;

  color: #fff;

  overflow: hidden;
}

.sosm-mega__provider-badge {
  display: inline-flex;

  padding: 6px 9px;

  border-radius: 999px;

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

  color: #CFF9EE;

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

  letter-spacing: 0.03em;
}

.sosm-mega__provider-icon {
  margin-top: 20px;

  color: #49DDBE;

  font-size: 32px;
}

.sosm-mega__provider h3 {
  margin: 12px 0 8px;

  color: #fff;

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

.sosm-mega__provider p {
  margin: 0 0 18px;

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

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

.sosm-mega__provider-link {
  color: #65E4C9;

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

  text-decoration: none;
}

.sosm-mega__provider-link:hover {
  color: #fff;
}

.sosm-mega__provider--resources {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 184, 148, 0.24),
      transparent 37%
    ),
    #102438;
}

/* FOOTER MEGA */

.sosm-mega__footer {
  padding: 15px 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  background: #F7FAFA;

  border-top: 1px solid #E9EDF0;

  color: #6B7280;

  font-size: 13px;
}

.sosm-mega__footer a {
  color: #009B7D;

  font-weight: 700;

  text-decoration: none;
}

/* =========================================================
   BURGER
   ========================================================= */

.sosm-burger {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 1px solid #E4E9ED;
  border-radius: 10px;

  background: #fff;

  cursor: pointer;
}

.sosm-burger span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  border-radius: 10px;

  background: #0D1B2A;

  transition: transform 0.18s ease;
}

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

.sosm-mobile {
  display: none;
}

@media (max-width: 1050px) {

  .sosm-nav,
  .sosm-header__actions {
    display: none;
  }

  .sosm-header__inner {
    justify-content: space-between;
  }

  .sosm-burger {
    display: block;
  }

  .sosm-mobile {
    position: fixed;

    top: var(--header-height);
    left: 0;
    right: 0;

    max-height: calc(100dvh - var(--header-height));

    padding: 18px 20px 26px;

    overflow-y: auto;

    background: #fff;

    border-top: 1px solid #E8EDF2;

    box-shadow: 0 24px 50px rgba(13, 27, 42, 0.12);

    visibility: hidden;
    opacity: 0;

    transform: translateY(-8px);

    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0.18s ease;
  }

  .sosm-header.mobile-open .sosm-mobile {
    display: block;

    visibility: visible;
    opacity: 1;

    transform: translateY(0);
  }

  .sosm-mobile > a,
  .sosm-mobile__toggle {
    width: 100%;

    min-height: 52px;

    padding: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 0;
    border-bottom: 1px solid #EEF1F3;

    background: transparent;

    color: #0D1B2A;

    font-family: inherit;
    font-size: 16px;
    font-weight: 650;

    text-decoration: none;

    cursor: pointer;
  }

  .sosm-mobile__submenu {
    display: none;

    padding: 8px 0 15px 16px;
  }

  .sosm-mobile__group.is-open .sosm-mobile__submenu {
    display: block;
  }

  .sosm-mobile__submenu a {
    display: block;

    padding: 10px 0;

    color: #596370;

    font-size: 14px;

    text-decoration: none;
  }

  .sosm-mobile__actions {
    margin-top: 22px;

    display: grid;

    gap: 10px;
  }

  .sosm-mobile__login {
    min-height: 48px;

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

    border: 1px solid #DCE3E7;
    border-radius: 11px;

    color: #0D1B2A;

    font-weight: 650;

    text-decoration: none;
  }

  .sosm-mobile__actions .sosm-header__cta {
    width: 100%;
  }

}

@media (max-width: 640px) {

  .sosm-header {
    --header-height: 68px;
  }

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

  .sosm-header__logo img {
    height: 39px;
  }

}
/* =========================================================
   SOS MÉNAGES — FOOTER
   ========================================================= */

.sosm-footer {
  background: #0D1B2A;
  color: #FFFFFF;
}


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

.sosm-footer__cta {
  padding: 56px 20px;

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

.sosm-footer__cta-inner {
  width: min(1200px, 100%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 48px;
}

.sosm-footer__cta-copy {
  max-width: 720px;
}

.sosm-footer__eyebrow {
  display: inline-flex;

  margin-bottom: 12px;

  padding: 6px 10px;

  border-radius: 999px;

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

  color: #6FE4CB;

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

  letter-spacing: 0.03em;
}

.sosm-footer__cta h2 {
  margin: 0 0 14px;

  color: #FFFFFF;

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.sosm-footer__cta p {
  margin: 0;

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

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

.sosm-footer__cta-actions {
  min-width: 245px;

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

  gap: 10px;
}

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

  padding: 0 24px;

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

  border-radius: 12px;

  background: #00B894;

  color: #FFFFFF;

  font-weight: 700;

  text-decoration: none;

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

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

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

  background: #009F80;

  color: #FFFFFF;

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

.sosm-footer__cta-actions span {
  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.sosm-footer__main {
  padding: 68px 20px 48px;
}

.sosm-footer__inner {
  width: min(1200px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 280px 1fr;

  gap: 64px;
}

.sosm-footer__brand {
  max-width: 280px;
}

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

  margin-bottom: 20px;
}

.sosm-footer__logo img {
  width: 185px;
  height: auto;

  display: block;
}

.sosm-footer__brand p {
  margin: 0 0 24px;

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

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

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

  gap: 9px;
}

.sosm-footer__trust span {
  color: rgba(255, 255, 255, 0.68);

  font-size: 12px;
}

.sosm-footer__trust span::first-letter {
  color: #00D4A8;
}


/* =========================================================
   NAV COLUMNS
   ========================================================= */

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

  gap: 34px;
}

.sosm-footer__column h3 {
  margin: 0 0 18px;

  color: #FFFFFF;

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

  letter-spacing: 0.01em;
}

.sosm-footer__column ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.sosm-footer__column li {
  margin-bottom: 11px;
}

.sosm-footer__column li:last-child {
  margin-bottom: 0;
}

.sosm-footer__column a {
  color: rgba(255, 255, 255, 0.63);

  font-size: 13px;
  line-height: 1.5;

  text-decoration: none;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.sosm-footer__column a:hover {
  color: #FFFFFF;
}


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

.sosm-footer__column--provider {
  padding: 20px;

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

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(0, 184, 148, 0.18),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.035);
}

.sosm-footer__provider-badge {
  display: inline-flex;

  margin-bottom: 14px;

  padding: 5px 8px;

  border-radius: 999px;

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

  color: #6FE4CB;

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

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

.sosm-footer__column--provider h3 {
  margin-bottom: 10px;

  font-size: 18px;
  line-height: 1.25;
}

.sosm-footer__column--provider p {
  margin: 0 0 16px;

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

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

.sosm-footer__provider-link {
  color: #55DEC1 !important;

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

  text-decoration: none;
}

.sosm-footer__provider-link:hover {
  color: #FFFFFF !important;
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.sosm-footer__bottom {
  padding: 18px 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  background: #0A1724;
}

.sosm-footer__bottom-inner {
  width: min(1200px, 100%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.sosm-footer__copyright {
  color: rgba(255, 255, 255, 0.42);

  font-size: 12px;
}

.sosm-footer__legal {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

.sosm-footer__legal a {
  color: rgba(255, 255, 255, 0.46);

  font-size: 12px;

  text-decoration: none;

  transition: color 0.18s ease;
}

.sosm-footer__legal a:hover {
  color: #FFFFFF;
}


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

@media (max-width: 1050px) {

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

  .sosm-footer__brand {
    max-width: 520px;
  }

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

}


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

@media (max-width: 720px) {

  .sosm-footer__cta {
    padding: 48px 20px;
  }

  .sosm-footer__cta-inner {
    display: block;
  }

  .sosm-footer__cta-actions {
    margin-top: 26px;

    align-items: stretch;
  }

  .sosm-footer__button {
    width: 100%;
  }

  .sosm-footer__main {
    padding-top: 48px;
  }

  .sosm-footer__inner {
    gap: 42px;
  }

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

    gap: 30px;
  }

  .sosm-footer__column {
    padding-bottom: 24px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .sosm-footer__column--provider {
    padding: 22px;

    border-bottom: 1px solid rgba(0, 184, 148, 0.20);
  }

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

  .sosm-footer__legal {
    gap: 10px 16px;
  }

}