/* ================= ROOT ================= */
:root {
  --cream: #fdf4ee;
  --blush: #f0c6c6;
  --rose: #d4848e;
  --rose-dk: #b05a66;
  --deep: #53082f;
  --muted: #4e2d38;
  --gold: #c09a6b;
  --gold-lt: #e8d5b7;
  --white: #ffffff;
  --card-bg: #f9ede4;
  /* ── aliases so shared footer/assoc markup works on both pages ── */
  --ivory: #f9ede4;
  --rose-deep: #b05a66;
  --plum: #53082f;
  --plum-mid: #4e2d38;
  --gold-light: #e8d5b7;
  --charcoal: #000000;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ================= NAV ================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  z-index: 200;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  padding: 0.4rem 0.7rem;
  box-shadow: 0 4px 24px rgba(83, 8, 47, 0.08);
  border: 1px solid rgba(212, 132, 142, 0.1);
}

.nav-logo.inside {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--charcoal);
}

.nav-logo.inside b {
  color: var(--rose);
}

.nav-pill a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.01rem 0.3rem;
  border-radius: 100px;
  /* transition: all 0.6s ease; */
}

.nav-pill a:hover {
  background: var(--petal);
  color: var(--charcoal);
}

.nav-apply {
  background: var(--rose) !important;
  color: white !important;
  padding: 0.45rem 1.4rem !important;
}

.nav-apply:hover {
  background: var(--plum) !important;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 0.5rem;
  padding-top: 0.8rem; /* ✅ invisible hover bridge — no gap in pointer travel */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 132, 142, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 999;
}

.dropdown-menu a {
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.dropdown-menu a:hover {
  background: var(--petal);
  color: var(--charcoal);
}

.nav-item:hover .dropdown-menu,
.dropdown-menu:hover {
  /* ✅ keeps menu open when pointer is inside it */
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(253, 244, 238, 0.97) 30%,
      rgba(253, 244, 238, 0.72) 52%,
      rgba(253, 244, 238, 0.22) 70%,
      rgba(253, 244, 238, 0) 100%
    ),
    url("assets/cherry_blossom.png");
  background-size: cover;
  background-position: 75% center;
  background-repeat: no-repeat;
}

.hero-left {
  max-width: 65rem;
  padding: 6rem 4rem 5rem 5rem;
}

/* ── HERO HEADING — Cormorant Garamond ── */
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--rose);
  margin: 1.6rem 0 1.8rem;
}

/* ================= ASSOCIATION CARD ================= */
.assoc-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: linear-gradient(
    135deg,
    rgba(212, 132, 142, 0.06) 0%,
    rgba(192, 154, 107, 0.08) 100%
  );
  border: 1px solid rgba(212, 132, 142, 0.2);
  border-left: 3px solid var(--rose);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.8rem;
}

.assoc-logo-wrap {
  flex-shrink: 0;
}

.assoc-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--rose), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(212, 132, 142, 0.35);
}

.assoc-logo-k {
  font-size: 1.4rem;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.assoc-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.assoc-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.assoc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.assoc-meta {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.5;
}

.assoc-meta strong {
  color: var(--charcoal);
  font-weight: 600;
}

.assoc-ministry {
  color: var(--gold);
  font-weight: 600;
}

/* ── HERO BODY TEXT — DM Serif Display ── */
.hero-p {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 50rem;
  margin-bottom: 2rem;
}

/* ================= ECOSYSTEM LIST — matches hero-badges ================= */
.beauty-ecosystem-list {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(212, 132, 142, 0.15);
  flex-wrap: wrap;
}

/* ── DESCRIPTION — DM Serif Display ── */
.beauty-description {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 50rem;
  margin-bottom: 2.4rem;
}

/* ================= EXPLORE BUTTON ================= */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--rose);
  color: white;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(212, 132, 142, 0.35);
  transition: 0.25s;
}

.btn-explore:hover {
  background: var(--plum);
  transform: translateX(4px);
}

/* ================= BADGES (shared by hero-badges AND ecosystem list) ================= */
.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 132, 142, 0.15);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.4;
}

.badge-icon {
  color: var(--rose);
  font-size: 0.7rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.badge-svg {
  color: var(--rose);
  flex-shrink: 0;
}

.badge-sep {
  width: 1px;
  height: 28px;
  background: rgba(212, 132, 142, 0.2);
  align-self: center;
}

/* ================= PROBLEM SECTION ================= */
.problem {
  background: white;
  padding: 8rem 2rem;
  text-align: center;
}

/* "Do you struggle with" — enlarged */
.problem-top {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

/* Main heading — Cormorant Garamond */
.problem-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Only 2 pain points */
.pain-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.pain-item {
  max-width: 360px;
  text-align: left;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.pain-q {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pain-item h2 {
  font-family: "DM Serif Display", serif;
}
.pain-item-pack {
  max-width: 40rem;
  text-align: left;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.pain-q--icon {
  background: var(--rose);
  color: white;
  height: 60px;
  width: 60px;
}

.pain-item p {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--charcoal);
}

/* ================= SOLUTION ================= */
.solution {
  position: relative;
  padding: 9rem 2rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(155deg, #d4848e 0%, #b05a66 45%, #53082f 100%);
}

.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(212, 132, 142, 0.25),
    transparent 70%
  );
  pointer-events: none;
}

/* "That's why we created" — Cormorant italic */
.sol-kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.998);
  margin-bottom: 0.5rem;
}

/* SEOULFUL heading — Cormorant Garamond */
.sol-h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.sol-h2 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
  font-size: 0.55em;
  text-shadow: 0 4px 20px rgba(212, 132, 142, 0.5);
}

/* Sub — DM Serif Display */
.sol-sub {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  /* max-width: 500px; */
  margin: 2rem auto 0;
  line-height: 1.7;
}

.sol-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  background: var(--rose);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(212, 132, 142, 0.45);
  transition: all 0.25s ease;
}

.sol-cta:hover {
  background: white;
  color: var(--rose);
  transform: translateY(-3px);
}

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 132, 142, 0.15);
  flex-wrap: wrap;
  row-gap: 1rem;
}

.trust-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  white-space: nowrap;
  margin-right: 1.6rem;
}

.trust-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  border-right: 1px solid rgba(212, 132, 142, 0.18);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.85;
  transition: all 0.2s ease;
}

.trust-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.trust-item-name {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--deep);
  white-space: nowrap;
  line-height: 1.3;
}

.trust-item-name small {
  display: block;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════
   ASSOCIATION
══════════════════════════════════════════════ */
.association-section {
  padding: 7rem 3rem;
  background: var(--ivory);
}
.association-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.association-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--plum);
  text-align: center;
  margin-bottom: 1rem;
}
.association-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--plum-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.association-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
}
.association-card {
  background: var(--white);
  border: 1px solid rgba(232, 213, 183, 0.8);
  border-radius: 0.5rem;
  padding: 2.6rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(83, 8, 47, 0.05);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.association-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(176, 90, 102, 0.12);
}
.assoc-logo-wrap {
  margin: 0 auto 0.1rem;
  width: fit-content;
}
.assoc-abbr {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.3rem;
}
.assoc-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--rose-deep);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.assoc-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--plum-mid);
  line-height: 1.75;
  font-weight: 400;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--rose-deep);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Decorative top-edge gradient line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rose) 25%,
    var(--gold) 50%,
    var(--rose) 75%,
    transparent 100%
  );
}

/* Subtle petal-dot texture */
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23f0c6c6' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

/* ── BRAND ── */
.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: white;
  text-decoration: none;
  line-height: 1;
}

.footer-logo b {
  font-weight: 700;
  color: var(--blush);
}

.footer-tagline {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 198, 198, 0.4);
}

/* ── ORNAMENT DIVIDER ── */
.footer-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
  width: 100%;
  max-width: 360px;
}

/* ── CONTACT ROW ── */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.footer-contact-link svg {
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--blush);
  background: rgba(240, 198, 198, 0.06);
}

.footer-contact-link:hover svg {
  opacity: 1;
}

.footer-contact-sep {
  width: 1px;
  height: 18px;
  background: rgba(212, 132, 142, 0.18);
  align-self: center;
  flex-shrink: 0;
}

/* ── SOCIAL ICON CIRCLES ── */
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  background: rgba(240, 198, 198, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-social-btn:hover {
  background: rgba(212, 132, 142, 0.15);
  border-color: rgba(212, 132, 142, 0.5);
  color: var(--blush);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(83, 8, 47, 0.3);
}

.footer-social-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ── COPYRIGHT ── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(253, 251, 251, 0.968);
  margin-bottom: 1rem;
}

.footer-copy {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy span {
  color: rgba(254, 254, 254, 0.55);
}
/* ── FOOTER LOGO IMAGE ── */
.footer-logo-img {
  height: 8rem;
  width: auto;
  display: block;
  /* invert so it reads well on the dark rose footer */
}

/* ── ASSOCIATION LOGO IMAGES ── */
.assoc-logo-img {
  height: 64px;
  width: auto;
  max-width: 180px;
  display: block;
  margin-left: -2rem;
  object-fit: contain;
  border-radius: 8px;
}

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 132, 142, 0.15);
  flex-wrap: wrap;
  row-gap: 1rem;
}

.trust-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  white-space: nowrap;
  margin-right: 1.6rem;
}

.trust-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  border-right: 1px solid rgba(212, 132, 142, 0.18);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.85;
  transition: all 0.2s ease;
}

.trust-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.trust-item-name {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  white-space: nowrap;
  line-height: 1.3;
}

.trust-item-name small {
  display: block;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ── FOOTER ── */
footer {
  padding: 0 !important;
  background: var(--charcoal);
}

.footer-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  text-align: center;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

/*  */

/* ── MOBILE ── */
@media (max-width: 768px) {
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 132, 142, 0.12);
    padding: 0.6rem 0;
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 55vw;
  }
  .hero-content,
  .hero-left {
    padding: 7rem 6vw 2rem;
  }
  .hero-image-panel::before {
    display: none;
  }
  .pain-wrapper {
    height: 8rem;
  }
  .association-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pain-row {
    flex-direction: column;
    align-items: center;
  }
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 132, 142, 0.12);
    padding: 0.6rem 0;
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .footer-contact {
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact-sep {
    display: none;
  }
  .footer-logo {
    font-size: 1.6rem;
  }
  .footer-inner {
    padding: 4rem 1.5rem 2.5rem;
  }
}
