/*
Theme Name: Personal Body
Theme URI: https://personalbody.com.br
Author: Personal Body
Author URI: https://personalbody.com.br
Description: Tema institucional da Personal Body — o profissional certo para a sua evolução.
Version: 1.1.2
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: personal-body
*/

:root {
  --navy-950: #061a2b;
  --navy-900: #0b2238;
  --navy-800: #102a43;
  --navy-700: #183f5c;
  --teal-600: #0b8f96;
  --teal-500: #18a6a6;
  --teal-400: #2bc0be;
  --green-600: #43ad67;
  --green-500: #55c57a;
  --green-300: #9fe0ae;
  --ice-100: #e8f4f5;
  --ice-50: #f3f9fa;
  --gray-700: #475b69;
  --gray-600: #667784;
  --gray-500: #7f8d97;
  --gray-300: #d7e0e4;
  --gray-200: #e6ecef;
  --gray-100: #f3f6f7;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(6, 26, 43, 0.07);
  --shadow-md: 0 22px 60px rgba(6, 26, 43, 0.12);
  --shadow-lg: 0 34px 90px rgba(6, 26, 43, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy-800);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Inter", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(24, 166, 166, 0.42);
  outline-offset: 4px;
}

::selection {
  background: rgba(85, 197, 122, 0.28);
  color: var(--navy-950);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 232px;
  height: auto;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 31px);
}

.desktop-nav a {
  position: relative;
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), #10b9c2);
  box-shadow: 0 12px 28px rgba(24, 166, 166, 0.22);
  color: var(--white);
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 750;
  padding: 0 25px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  box-shadow: 0 18px 34px rgba(24, 166, 166, 0.3);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  font-size: 0.78rem;
  padding-inline: 19px;
}

.button-block {
  width: 100%;
}

.button-light {
  background: var(--white);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  color: var(--navy-800);
}

.button-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-600);
  font-size: 0.92rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--green-300);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-lines {
  display: flex;
  width: 22px;
  flex-direction: column;
  gap: 4px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: var(--navy-800);
}

.mobile-menu nav {
  position: absolute;
  top: 74px;
  right: 20px;
  left: 20px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 15px 18px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 96%, rgba(85, 197, 122, 0.15), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 56px 0 0;
}

.home-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 124px;
  background:
    linear-gradient(
      90deg,
      rgba(6, 26, 43, 1) 0%,
      rgba(6, 26, 43, 0.98) 34%,
      rgba(6, 26, 43, 0.82) 52%,
      rgba(6, 26, 43, 0.28) 76%,
      rgba(6, 26, 43, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(6, 26, 43, 0.5), transparent 42%),
    url("assets/hero-personal-body.png");
  background-position: center, center, right 42%;
  background-repeat: no-repeat;
  background-size: cover, cover, auto 112%;
  content: "";
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  z-index: 1;
  top: -180px;
  left: -130px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 620px;
}

.home-hero-copy {
  max-width: 650px;
  padding: 72px 0 95px;
}

.eyebrow {
  display: inline-block;
  color: var(--teal-600);
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--green-300);
}

.home-hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 19px 0 23px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.65rem);
  font-weight: 750;
  letter-spacing: -0.058em;
  line-height: 1.03;
}

.home-hero h1 em,
.page-hero h1 em {
  display: inline;
  color: var(--green-500);
  font-style: normal;
}

.home-hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof b {
  display: grid;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(85, 197, 122, 0.5);
  border-radius: 50%;
  color: var(--green-300);
  place-items: center;
}

.home-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 600px;
}

.home-hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-800) 0%, rgba(16, 42, 67, 0.52) 19%, transparent 46%),
    linear-gradient(0deg, rgba(6, 26, 43, 0.55), transparent 35%);
  content: "";
  pointer-events: none;
}

.home-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 65% center;
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(6, 26, 43, 0.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  padding: 14px 18px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border: 3px solid rgba(85, 197, 122, 0.23);
  border-radius: 50%;
  background: var(--green-500);
  box-sizing: content-box;
}

.hero-floating-card div {
  display: grid;
  gap: 3px;
}

.hero-floating-card strong {
  font-size: 0.76rem;
}

.hero-floating-card small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  overflow: hidden;
  margin-top: -1px;
  border-radius: 24px 24px 0 0;
  background: var(--white);
  box-shadow: 0 -18px 50px rgba(6, 26, 43, 0.13);
  color: var(--navy-800);
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip .icon-card {
  display: grid;
  min-height: 124px;
  align-content: center;
  border-right: 1px solid var(--gray-200);
  border-radius: 0;
  box-shadow: none;
  gap: 3px 14px;
  grid-template-columns: auto 1fr;
  padding: 26px 30px;
}

.trust-strip .icon-card:last-child {
  border-right: 0;
}

.trust-strip .icon-card .icon-wrap {
  grid-row: 1 / span 2;
}

.section {
  padding: 108px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 93% 7%, rgba(85, 197, 122, 0.08), transparent 22%),
    var(--ice-50);
}

.section-navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 80%, rgba(24, 166, 166, 0.15), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(85, 197, 122, 0.12), transparent 26%),
    var(--navy-950);
  color: var(--white);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-panel h2,
.partner-home h2,
.partner-collab-grid h2,
.story-grid h2 {
  margin: 13px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading h2 span,
.split-panel h2 span,
.partner-home h2 span,
.partner-collab-grid h2 span,
.story-grid h2 span {
  color: var(--teal-500);
}

.section-heading p {
  margin: 0;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
}

.section-navy .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.section-navy .section-heading h2 span {
  color: var(--green-500);
}

.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 36px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.step-card::after {
  position: absolute;
  right: -32px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(24, 166, 166, 0.11);
  border-radius: 50%;
  content: "";
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.step-number {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--ice-100);
  color: var(--teal-600);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  place-items: center;
}

.step-card h3 {
  margin: 27px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
}

.step-card p,
.icon-card p,
.service-card p,
.professional-card p,
.conditions-grid p,
.brand-foundations p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.7;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  min-height: 350px;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  border: 24px solid rgba(24, 166, 166, 0.05);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(24, 166, 166, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card-large {
  grid-row: span 2;
  min-height: 592px;
  align-items: flex-end;
  background:
    radial-gradient(circle at 65% 17%, rgba(43, 192, 190, 0.19), transparent 30%),
    linear-gradient(160deg, var(--white) 55%, var(--ice-100));
}

.service-card-large::before {
  position: absolute;
  top: 55px;
  right: 50px;
  width: 220px;
  height: 220px;
  border: 40px solid rgba(24, 166, 166, 0.08);
  border-radius: 50%;
  content: "";
}

.service-card h3 {
  margin: 10px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.service-card-large h3 {
  font-size: 2rem;
}

.service-card a {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-600);
  font-size: 0.85rem;
  font-weight: 750;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--ice-100);
  color: var(--teal-600);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  place-items: center;
}

.service-icon-green {
  background: rgba(85, 197, 122, 0.12);
  color: var(--green-600);
}

.service-icon-teal {
  background: rgba(24, 166, 166, 0.12);
}

.service-card-duo {
  min-height: 230px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(85, 197, 122, 0.26), transparent 32%),
    var(--navy-800);
  color: var(--white);
}

.service-card-duo h3 {
  margin-top: 8px;
}

.service-card-duo p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.67);
}

.service-card-duo strong {
  display: block;
  margin-top: 18px;
  color: var(--green-300);
  font-size: 0.9rem;
}

.duo-mark {
  position: absolute;
  right: 35px;
  display: grid;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--green-500);
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  place-items: center;
}

.match-section {
  overflow: hidden;
}

.match-grid {
  display: grid;
  align-items: center;
  gap: 86px;
  grid-template-columns: 0.9fr 1.1fr;
}

.match-visual {
  position: relative;
  min-height: 570px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(24, 166, 166, 0.17), transparent 35%),
    linear-gradient(145deg, var(--ice-50), var(--white));
  box-shadow: inset 0 0 0 1px var(--gray-200);
}

.match-visual::before,
.match-visual::after {
  position: absolute;
  inset: 80px;
  border: 1px dashed rgba(24, 166, 166, 0.24);
  border-radius: 50%;
  content: "";
}

.match-visual::after {
  inset: 145px;
}

.match-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 180px;
  height: 180px;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  place-items: center;
  transform: translate(-50%, -50%);
}

.match-center img {
  width: 82px;
}

.match-center span {
  margin-top: -20px;
  color: var(--gray-600);
  font-size: 0.64rem;
  font-weight: 700;
}

.match-card {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 210px;
  gap: 5px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  padding: 17px 19px;
}

.match-card span {
  color: var(--gray-500);
  font-size: 0.66rem;
}

.match-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
}

.match-card-one {
  top: 68px;
  left: 30px;
}

.match-card-two {
  top: 68px;
  right: 30px;
}

.match-card-three {
  bottom: 68px;
  left: 30px;
}

.match-card-four {
  right: 30px;
  bottom: 68px;
}

.match-features {
  display: grid;
  gap: 10px;
  margin: -15px 0 30px;
  grid-template-columns: 1fr 1fr;
}

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

.icon-wrap {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ice-100);
  color: var(--teal-600);
  place-items: center;
}

.icon-card h3 {
  margin: 19px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.match-features .icon-card {
  box-shadow: none;
  padding: 22px;
}

.match-features .icon-card h3 {
  margin-top: 14px;
}

.plans-preview-grid,
.plans-all-grid {
  display: grid;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.plans-all-grid {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--navy-800);
  padding: 34px;
}

.plan-card-featured {
  border-color: rgba(85, 197, 122, 0.8);
  box-shadow: 0 28px 65px rgba(85, 197, 122, 0.18);
  transform: translateY(-10px);
}

.plan-ribbon {
  position: absolute;
  top: 22px;
  right: -36px;
  width: 145px;
  background: var(--green-500);
  color: var(--navy-950);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(40deg);
}

.plan-card h3 {
  margin: 11px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.plan-sessions {
  min-height: 46px;
  margin: 0;
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.55;
}

.plan-price {
  display: grid;
  gap: 1px;
  margin-top: 28px;
}

.plan-price strong {
  color: var(--navy-800);
  font-family: "Manrope", sans-serif;
  font-size: 2.55rem;
  letter-spacing: -0.05em;
}

.plan-price span {
  color: var(--gray-600);
  font-size: 0.73rem;
}

.plan-official {
  min-height: 38px;
  margin: 12px 0 16px;
  color: var(--teal-600);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 15px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-700);
  font-size: 0.8rem;
  line-height: 1.55;
}

.check-list li > span {
  display: grid;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(85, 197, 122, 0.14);
  color: var(--green-600);
  font-size: 0.65rem;
  font-weight: 900;
  place-items: center;
}

.check-list-light li {
  color: rgba(255, 255, 255, 0.74);
}

.plan-card .button {
  margin-top: auto;
}

.coverage-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1.05fr 0.95fr;
}

.coverage-options {
  display: grid;
  gap: 12px;
}

.coverage-options article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.coverage-options .service-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.coverage-options strong {
  display: block;
  margin: 2px 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 0.93rem;
}

.coverage-options p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.78rem;
  line-height: 1.6;
}

.coverage-universal {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(24, 166, 166, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 35%, rgba(85, 197, 122, 0.2), transparent 25%),
    radial-gradient(circle at 50% 42%, rgba(24, 166, 166, 0.16), transparent 48%),
    linear-gradient(155deg, var(--ice-50), var(--white));
}

.coverage-universal-orbit {
  position: absolute;
  top: 43%;
  left: 50%;
  border: 1px dashed rgba(24, 166, 166, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.coverage-universal-orbit-one {
  width: 330px;
  height: 330px;
}

.coverage-universal-orbit-two {
  width: 235px;
  height: 235px;
}

.coverage-universal-center {
  position: absolute;
  top: 42%;
  left: 50%;
  display: grid;
  width: 158px;
  height: 158px;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  place-items: center;
  transform: translate(-50%, -50%);
}

.coverage-universal-center img {
  width: 68px;
}

.coverage-universal-center span {
  margin-top: -18px;
  color: var(--teal-600);
  font-size: 0.62rem;
  font-weight: 750;
}

.coverage-universal-copy {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  padding: 20px 22px;
}

.coverage-universal-copy strong {
  display: block;
  margin: 7px 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.coverage-universal-copy p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.76rem;
  line-height: 1.55;
}

.region-groups {
  display: grid;
  gap: 13px;
}

.region-groups div {
  display: grid;
  gap: 6px;
  border-left: 3px solid var(--teal-500);
  background: var(--ice-50);
  padding: 17px 20px;
}

.region-groups span {
  color: var(--gray-500);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.region-groups strong {
  font-size: 0.88rem;
  line-height: 1.5;
}

.coverage-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(24, 166, 166, 0.12);
  border-radius: 50% 50% 40% 60% / 55% 48% 52% 45%;
  background:
    radial-gradient(circle at 52% 48%, rgba(85, 197, 122, 0.23), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(24, 166, 166, 0.15), transparent 42%),
    var(--ice-50);
}

.map-ring {
  position: absolute;
  border: 1px dashed rgba(24, 166, 166, 0.25);
  border-radius: 50%;
}

.map-ring-one {
  inset: 75px;
}

.map-ring-two {
  inset: 135px;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 10px 14px;
}

.map-pin i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 5px rgba(24, 166, 166, 0.13);
}

.map-pin-one {
  top: 105px;
  left: 92px;
}

.map-pin-two {
  top: 205px;
  right: 52px;
}

.map-pin-three {
  bottom: 105px;
  left: 105px;
}

.map-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 4px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-caption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.map-caption span {
  color: var(--teal-600);
  font-size: 0.68rem;
  font-weight: 700;
}

.partner-home {
  background:
    radial-gradient(circle at 73% 20%, rgba(85, 197, 122, 0.17), transparent 26%),
    var(--navy-800);
  color: var(--white);
}

.partner-home-grid {
  display: grid;
  align-items: center;
  gap: 84px;
  grid-template-columns: 0.86fr 1.14fr;
}

.partner-portrait-stack {
  position: relative;
}

.partner-portrait-stack > img {
  width: 100%;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 0.92;
  object-fit: cover;
}

.portrait-label {
  position: absolute;
  right: -28px;
  bottom: 35px;
  display: grid;
  max-width: 245px;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(6, 26, 43, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  padding: 18px 20px;
}

.portrait-label span {
  color: var(--green-300);
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portrait-label strong {
  font-size: 0.86rem;
}

.partner-home h2 span {
  color: var(--green-500);
}

.partner-home > .container > div:last-child > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.partner-stats {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  grid-template-columns: repeat(3, 1fr);
}

.partner-stats div {
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 17px;
}

.partner-stats strong {
  color: var(--green-500);
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
}

.partner-stats span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  line-height: 1.5;
}

.faq-home-grid {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 0.82fr 1.18fr;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
  padding: 20px 52px 20px 22px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 15px;
  right: 17px;
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ice-100);
  color: var(--teal-600);
  content: "+";
  font-size: 1.1rem;
  place-items: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 22px 20px;
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.7;
}

.faq-list .text-link {
  justify-self: flex-start;
  margin-top: 14px;
}

.cta-section {
  background: var(--ice-50);
  padding: 0 0 90px;
}

.cta-band {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 25%, rgba(85, 197, 122, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-lg);
  color: var(--white);
  padding: 58px 65px;
}

.cta-band::before {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 50px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.cta-band > div {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 710px;
  margin: 13px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.cta-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  min-width: 220px;
  justify-items: center;
  gap: 16px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 18%, rgba(24, 166, 166, 0.24), transparent 28%),
    radial-gradient(circle at 14% 100%, rgba(85, 197, 122, 0.14), transparent 25%),
    var(--navy-950);
  color: var(--white);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 490px;
  padding: 100px 0 95px;
}

.page-hero-compact .page-hero-inner {
  min-height: 385px;
  padding-block: 78px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.page-hero-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.page-hero-orb-one {
  top: -190px;
  right: -40px;
  width: 520px;
  height: 520px;
}

.page-hero-orb-two {
  right: 330px;
  bottom: -290px;
  width: 480px;
  height: 480px;
}

.timeline {
  position: relative;
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 25px;
  width: 1px;
  background: linear-gradient(var(--teal-500), var(--green-500));
  content: "";
}

.timeline article {
  position: relative;
  display: grid;
  align-items: start;
  gap: 28px;
  grid-template-columns: 52px 1fr;
  padding-bottom: 38px;
}

.timeline article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 1px rgba(24, 166, 166, 0.2);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 850;
  place-items: center;
}

.timeline article:nth-child(n + 4) > span {
  background: var(--green-500);
}

.timeline article > div {
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 24px 27px;
}

.timeline h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.timeline p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.86rem;
  line-height: 1.65;
}

.feature-grid-four {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.split-panel {
  display: grid;
  align-items: center;
  gap: 90px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 4% 50%, rgba(24, 166, 166, 0.1), transparent 24%),
    var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1fr 1fr;
  padding: 58px 65px;
}

.split-panel > div > p {
  color: var(--gray-600);
  line-height: 1.75;
}

.professional-flow {
  display: grid;
  align-items: center;
  gap: 86px;
  grid-template-columns: 1fr 1fr;
}

.professional-flow h2 {
  margin: 14px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.professional-flow h2 span {
  color: var(--green-500);
}

.professional-flow > div:first-child p {
  margin: 0 0 27px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.professional-flow-steps {
  display: grid;
}

.professional-flow-steps div {
  display: grid;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 45px 1fr;
  padding: 18px 0;
}

.professional-flow-steps span {
  color: var(--green-500);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.professional-flow-steps strong {
  font-size: 0.9rem;
}

.launch-note {
  display: grid;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
  border: 1px solid rgba(24, 166, 166, 0.18);
  border-radius: 18px;
  background: var(--ice-50);
  grid-template-columns: auto 1fr;
  padding: 20px 24px;
}

.launch-note span {
  border-radius: 999px;
  background: var(--teal-500);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 9px 13px;
  text-transform: uppercase;
}

.launch-note p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.81rem;
  line-height: 1.6;
}

.plans-all-grid .plan-card:nth-child(4),
.plans-all-grid .plan-card:nth-child(5) {
  grid-column: span 1;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-100);
  font-size: 0.76rem;
  padding: 18px 16px;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  border-left: 0;
  font-weight: 700;
  text-align: left;
}

.comparison-table thead th {
  background: var(--navy-800);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
}

.comparison-table thead th:nth-child(4) {
  background: var(--teal-600);
}

.nutrition-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1.1fr 0.9fr;
}

.nutrition-grid h2 {
  margin: 13px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.nutrition-grid h2 span {
  color: var(--teal-500);
}

.nutrition-grid > div:first-child > p {
  color: var(--gray-600);
  line-height: 1.75;
}

.nutrition-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.nutrition-card img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
}

.nutrition-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 5px;
  border-radius: 18px;
  background: rgba(6, 26, 43, 0.87);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 18px 20px;
}

.nutrition-card div span {
  color: var(--green-300);
  font-size: 0.61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nutrition-card div small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

.plan-conditions .section-heading {
  margin-bottom: 35px;
}

.conditions-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}

.conditions-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
}

.conditions-grid h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.conditions-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.directory-intro {
  display: grid;
  align-items: end;
  gap: 65px;
  margin-bottom: 48px;
  grid-template-columns: 1fr 0.8fr;
}

.directory-intro h2 {
  margin: 12px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.directory-intro h2 span {
  color: var(--teal-500);
}

.directory-intro > p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.75;
}

.professional-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.professional-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 0.86fr 1.14fr;
}

.professional-photo {
  position: relative;
  min-height: 460px;
}

.professional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professional-photo > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  border-radius: 999px;
  background: rgba(6, 26, 43, 0.82);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  padding: 8px 11px;
  text-transform: uppercase;
}

.professional-card-body {
  padding: 32px;
}

.professional-card h3 {
  margin: 10px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.professional-card .text-link {
  margin-top: 22px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.tag-list span {
  border: 1px solid rgba(24, 166, 166, 0.18);
  border-radius: 999px;
  background: var(--ice-50);
  color: var(--teal-600);
  font-size: 0.64rem;
  font-weight: 650;
  padding: 7px 10px;
}

.profile-section {
  background: var(--gray-100);
}

.profile-layout {
  display: grid;
  align-items: start;
  gap: 42px;
  grid-template-columns: 350px 1fr;
}

.profile-sidebar {
  position: sticky;
  top: 108px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.profile-sidebar > img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1;
  object-fit: cover;
}

.demo-badge {
  display: inline-block;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--ice-100);
  color: var(--teal-600);
  font-size: 0.59rem;
  font-weight: 800;
  padding: 7px 10px;
  text-transform: uppercase;
}

.profile-sidebar h2 {
  margin: 13px 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}

.profile-sidebar > p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.76rem;
  line-height: 1.55;
}

.profile-meta {
  display: grid;
  gap: 10px;
  margin: 23px 0;
  border-block: 1px solid var(--gray-200);
  padding: 20px 0;
}

.profile-meta span {
  color: var(--gray-700);
  font-size: 0.72rem;
  line-height: 1.45;
}

.profile-content {
  border: 1px solid var(--gray-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 48px;
}

.profile-content > p {
  color: var(--gray-600);
  line-height: 1.8;
}

.profile-highlight {
  display: grid;
  gap: 8px;
  margin-bottom: 44px;
  border-left: 4px solid var(--green-500);
  border-radius: 0 16px 16px 0;
  background: var(--ice-50);
  padding: 22px 25px;
}

.profile-highlight span {
  color: var(--teal-600);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-highlight strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.profile-content .section-heading {
  margin-bottom: 18px;
}

.profile-columns {
  display: grid;
  gap: 45px;
  margin-top: 40px;
  border-top: 1px solid var(--gray-200);
  grid-template-columns: 1fr 1fr;
  padding-top: 36px;
}

.profile-columns h3 {
  margin: 0 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
}

.profile-quote {
  margin-top: 40px;
  border-radius: 20px;
  background: var(--navy-800);
  color: var(--white);
  padding: 32px;
}

.profile-quote p {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.profile-quote span {
  color: var(--green-300);
  font-size: 0.65rem;
  font-weight: 700;
}

.profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 26px;
}

.profile-cta h3 {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.profile-cta p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.77rem;
}

.form-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(24, 166, 166, 0.09), transparent 25%),
    var(--gray-100);
}

.form-page-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.78fr 1.22fr;
}

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

.form-step {
  display: inline-block;
  border-radius: 999px;
  background: var(--ice-100);
  color: var(--teal-600);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 7px 11px;
  text-transform: uppercase;
}

.form-card > h2 {
  margin: 15px 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
}

.form-card > p {
  margin: 0 0 30px;
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 13px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(24, 166, 166, 0.1);
  outline: none;
}

.form-span-2 {
  grid-column: span 2;
}

.consent-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--gray-600) !important;
  font-weight: 400 !important;
  line-height: 1.55;
}

.consent-line input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  accent-color: var(--teal-500);
}

.consent-line a {
  color: var(--teal-600);
  text-decoration: underline;
}

.lead-form > .button {
  justify-self: flex-start;
}

.lead-form > .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-notice {
  margin: -10px 0 0;
  color: var(--gray-500);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-notice-active {
  border-radius: 10px;
  background: rgba(85, 197, 122, 0.12);
  color: var(--green-600);
  font-weight: 650;
  padding: 10px 12px;
}

.form-notice-active.form-notice-error {
  background: rgba(186, 58, 58, 0.1);
  color: #a83232;
}

.privacy-mini,
.contact-side-card {
  margin-top: 30px;
  border-left: 3px solid var(--teal-500);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
}

.privacy-mini strong,
.contact-side-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
}

.privacy-mini p,
.contact-side-card p {
  margin: 7px 0 0;
  color: var(--gray-600);
  font-size: 0.72rem;
  line-height: 1.55;
}

.contact-side-card a {
  display: inline-block;
  margin-top: 13px;
  color: var(--teal-600);
  font-size: 0.77rem;
  font-weight: 700;
}

.partner-value .icon-card {
  min-height: 265px;
}

.partner-type-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(24, 166, 166, 0.08), transparent 28%),
    var(--white);
}

.partner-type-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-type-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-type-card:hover {
  border-color: rgba(24, 166, 166, 0.36);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.partner-type-number {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: var(--ice-100);
  color: var(--teal-600);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.partner-type-card h3 {
  margin: 10px 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.partner-type-card p {
  min-height: 78px;
  margin: 0 0 24px;
  color: var(--gray-600);
  font-size: 0.86rem;
  line-height: 1.7;
}

.partner-type-card-institutional {
  border-color: rgba(85, 197, 122, 0.36);
  background:
    radial-gradient(circle at 100% 0, rgba(85, 197, 122, 0.17), transparent 36%),
    var(--white);
}

.partner-type-card-institutional .partner-type-number {
  background: rgba(85, 197, 122, 0.16);
  color: var(--green-600);
}

.partner-economics {
  display: grid;
  align-items: center;
  gap: 85px;
  grid-template-columns: 1fr 0.8fr;
}

.partner-economics h2 {
  margin: 13px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.partner-economics h2 span {
  color: var(--teal-500);
}

.partner-economics > div:first-child > p {
  color: var(--gray-600);
  line-height: 1.75;
}

.economics-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(85, 197, 122, 0.26), transparent 30%),
    var(--navy-800);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  padding: 40px;
}

.economics-card > span {
  color: var(--green-300);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.economics-card > strong {
  display: block;
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 3.2rem;
  letter-spacing: -0.05em;
}

.economics-card > small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.economics-card > div {
  display: grid;
  gap: 8px;
  margin: 28px 0;
}

.economics-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.economics-card p b {
  font-size: 0.9rem;
}

.economics-card p span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
}

.economics-card > em {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  font-style: normal;
}

.requirements-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.requirements-grid article {
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.requirements-grid h3 {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.selection-steps {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(5, 1fr);
}

.selection-steps article {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
}

.selection-steps article > span {
  color: var(--green-500);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.selection-steps h3 {
  margin: 32px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.selection-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  line-height: 1.6;
}

.profile-preview-mini {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 30px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 15px;
}

.profile-preview-mini img {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.profile-preview-mini div {
  display: grid;
  gap: 5px;
}

.profile-preview-mini span {
  color: var(--teal-600);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-preview-mini strong {
  font-size: 0.79rem;
  line-height: 1.45;
}

.profile-preview-mini a {
  color: var(--teal-600);
  font-size: 0.69rem;
  font-weight: 700;
}

.partner-collab-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.8fr 1.2fr;
}

.partner-collab-grid > div:first-child > p {
  color: var(--gray-600);
  line-height: 1.75;
}

.collab-list {
  display: grid;
  gap: 12px;
}

.collab-list article {
  display: grid;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 48px 1fr;
  padding: 22px;
}

.collab-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ice-100);
  color: var(--teal-600);
  font-size: 0.69rem;
  font-weight: 850;
  place-items: center;
}

.collab-list h3 {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
}

.collab-list p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.75rem;
}

.story-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.72fr 1.28fr;
}

.story-mark {
  display: grid;
  min-height: 520px;
  align-content: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(85, 197, 122, 0.2), transparent 25%),
    var(--navy-800);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  padding: 55px;
}

.story-mark img {
  width: 150px;
  margin-bottom: 38px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.story-mark span {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.55;
}

.story-mark span:nth-of-type(2) {
  color: var(--green-500);
}

.story-grid > div:last-child > p {
  color: var(--gray-600);
  line-height: 1.8;
}

.brand-foundations {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.brand-foundations article {
  min-height: 310px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 35px;
}

.brand-foundations span {
  color: var(--teal-600);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-foundations h3 {
  margin: 40px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  line-height: 1.55;
}

.values-grid {
  row-gap: 18px;
}

.manifesto-section {
  background: var(--gray-100);
}

.manifesto {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 5%, rgba(85, 197, 122, 0.18), transparent 28%),
    var(--navy-950);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  padding: 75px 85px;
}

.manifesto p {
  max-width: 860px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.65;
}

.manifesto strong {
  display: block;
  margin-top: 35px;
  color: var(--green-300);
  font-size: 0.86rem;
}

.faq-page-grid {
  display: grid;
  gap: 70px;
}

.faq-page-grid > section {
  display: grid;
  align-items: start;
  gap: 65px;
  grid-template-columns: 0.4fr 1fr;
}

.faq-page-grid > section > h2 {
  position: sticky;
  top: 120px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.contact-options {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-options article {
  display: flex;
  min-height: 365px;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.contact-options h2 {
  margin: 25px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

.contact-options p {
  margin: 0 0 28px;
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.7;
}

.contact-options .button {
  margin-top: auto;
}

.direct-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 35px;
  border-radius: 24px;
  background: var(--ice-50);
  padding: 40px;
}

.direct-contact h2 {
  margin: 11px 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
}

.direct-contact p {
  max-width: 670px;
  margin: 0;
  color: var(--gray-600);
  font-size: 0.8rem;
  line-height: 1.6;
}

.legal-page {
  max-width: 880px;
  padding-top: 90px;
  padding-bottom: 120px;
}

.legal-notice {
  margin-bottom: 48px;
  border-left: 4px solid var(--green-500);
  border-radius: 0 16px 16px 0;
  background: var(--ice-50);
  padding: 22px 25px;
}

.legal-notice strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.83rem;
}

.legal-notice p {
  margin: 7px 0 0;
  font-size: 0.8rem;
}

.legal-page h2 {
  margin: 42px 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.8;
}

.legal-page a {
  color: var(--teal-600);
  text-decoration: underline;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  padding-left: 21px;
}

.legal-source {
  margin-top: 55px;
  border-top: 1px solid var(--gray-200);
  padding-top: 25px;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 72px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.65fr repeat(3, 0.8fr);
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-brand > a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 58px;
}

.footer-brand a > span {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
}

.footer-brand strong em {
  color: var(--green-500);
  font-style: normal;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
}

.footer-brand > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 4px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.77rem;
}

.footer-grid > div:not(.footer-brand) a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.69rem;
  line-height: 1.5;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--green-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  padding-top: 24px;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  text-align: center;
}

.not-found img {
  width: 115px;
  margin: 0 auto 25px;
}

.not-found h1 {
  max-width: 650px;
  margin: 14px auto;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
}

.not-found p {
  margin-bottom: 28px;
  color: var(--gray-600);
}

@media (max-width: 1120px) {
  .brand-logo {
    width: 200px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .header-cta {
    display: none;
  }

  .home-hero-grid {
    min-height: 600px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
  }

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

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .selection-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .professional-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 190px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .section {
    padding: 82px 0;
  }

  .home-hero {
    padding-top: 0;
  }

  .home-hero::before {
    inset: 0 0 300px;
    background:
      linear-gradient(
        180deg,
        rgba(6, 26, 43, 1) 0%,
        rgba(6, 26, 43, 0.98) 48%,
        rgba(6, 26, 43, 0.82) 65%,
        rgba(6, 26, 43, 0.2) 100%
      ),
      linear-gradient(0deg, rgba(6, 26, 43, 0.4), transparent 35%),
      url("assets/hero-personal-body.png");
    background-position: center, center, right bottom;
    background-size: cover, cover, auto 58%;
  }

  .home-hero-grid {
    min-height: 760px;
  }

  .home-hero-copy {
    max-width: 620px;
    padding: 72px 0 48px;
  }

  .home-hero-visual {
    min-height: 520px;
    margin-inline: -17px;
  }

  .home-hero-visual img {
    min-height: 520px;
  }

  .home-hero-visual::before {
    background:
      linear-gradient(180deg, var(--navy-800), transparent 25%),
      linear-gradient(0deg, rgba(6, 26, 43, 0.6), transparent 35%);
  }

  .trust-strip {
    width: 100%;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .trust-strip .icon-card {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
    padding: 21px 25px;
  }

  .steps-grid,
  .plans-preview-grid,
  .conditions-grid,
  .contact-options,
  .brand-foundations {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .match-grid,
  .coverage-grid,
  .partner-home-grid,
  .faq-home-grid,
  .split-panel,
  .professional-flow,
  .nutrition-grid,
  .directory-intro,
  .form-page-grid,
  .partner-economics,
  .partner-collab-grid,
  .story-grid,
  .profile-layout,
  .faq-page-grid > section {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 320px;
  }

  .service-card-large {
    min-height: 460px;
    grid-row: auto;
  }

  .match-visual {
    min-height: 500px;
  }

  .plan-card-featured {
    transform: none;
  }

  .coverage-map {
    min-height: 450px;
  }

  .coverage-universal {
    min-height: 470px;
  }

  .portrait-label {
    right: 18px;
  }

  .partner-portrait-stack {
    max-width: 540px;
  }

  .cta-band {
    display: grid;
    padding: 48px 40px;
  }

  .cta-actions {
    justify-items: start;
  }

  .page-hero-inner {
    min-height: 420px;
    padding-block: 78px;
  }

  .split-panel {
    padding: 42px;
  }

  .professional-card {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .profile-sidebar {
    position: static;
    max-width: 480px;
  }

  .faq-page-grid > section > h2 {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    width: 168px;
  }

  .mobile-menu nav {
    top: 68px;
    right: 14px;
    left: 14px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 2.65rem;
    letter-spacing: -0.052em;
  }

  .home-hero-copy > p,
  .page-hero p {
    font-size: 0.93rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .home-hero-visual,
  .home-hero-visual img {
    min-height: 430px;
  }

  .home-hero-visual img {
    object-position: 67% center;
  }

  .hero-floating-card {
    right: 14px;
    bottom: 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .match-visual {
    min-height: 520px;
  }

  .match-card {
    width: calc(50% - 24px);
    padding: 14px;
  }

  .match-card-one,
  .match-card-three {
    left: 14px;
  }

  .match-card-two,
  .match-card-four {
    right: 14px;
  }

  .match-card-one,
  .match-card-two {
    top: 34px;
  }

  .match-card-three,
  .match-card-four {
    bottom: 34px;
  }

  .match-center {
    width: 150px;
    height: 150px;
  }

  .match-visual::before {
    inset: 80px 25px;
  }

  .match-visual::after {
    inset: 145px 75px;
  }

  .coverage-universal {
    min-height: 440px;
  }

  .coverage-universal-orbit-one {
    width: 285px;
    height: 285px;
  }

  .coverage-universal-orbit-two {
    width: 205px;
    height: 205px;
  }

  .coverage-universal-center {
    width: 138px;
    height: 138px;
  }

  .coverage-universal-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 17px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .split-panel h2,
  .partner-home h2,
  .partner-collab-grid h2,
  .story-grid h2,
  .partner-economics h2,
  .nutrition-grid h2 {
    font-size: 2.15rem;
  }

  .step-card {
    min-height: unset;
  }

  .service-card,
  .service-card-large {
    min-height: unset;
    flex-direction: column;
    padding: 28px;
  }

  .service-card-large {
    padding-top: 170px;
  }

  .service-card-duo {
    padding-right: 120px;
  }

  .duo-mark {
    right: 22px;
    width: 75px;
    height: 75px;
    font-size: 2.2rem;
  }

  .match-features,
  .feature-grid-four,
  .partner-type-grid,
  .plans-all-grid,
  .requirements-grid,
  .profile-columns,
  .form-grid,
  .selection-steps {
    grid-template-columns: 1fr;
  }

  .form-span-2 {
    grid-column: auto;
  }

  .match-visual {
    min-height: 520px;
  }

  .match-visual::before {
    inset: 80px 25px;
  }

  .match-visual::after {
    inset: 145px 75px;
  }

  .match-center {
    width: 145px;
    height: 145px;
  }

  .match-card {
    width: calc(50% - 24px);
    padding: 13px 14px;
  }

  .match-card-one,
  .match-card-three {
    left: 14px;
  }

  .match-card-two,
  .match-card-four {
    right: 14px;
  }

  .match-card-one,
  .match-card-two {
    top: 34px;
  }

  .match-card-three,
  .match-card-four {
    bottom: 34px;
  }

  .partner-stats {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 390px;
  }

  .map-ring-one {
    inset: 55px;
  }

  .map-ring-two {
    inset: 105px;
  }

  .map-pin-one {
    top: 70px;
    left: 30px;
  }

  .map-pin-two {
    top: 175px;
    right: 15px;
  }

  .map-pin-three {
    bottom: 75px;
    left: 35px;
  }

  .cta-band {
    min-height: 390px;
    padding: 42px 28px;
  }

  .page-hero-inner,
  .page-hero-compact .page-hero-inner {
    min-height: 380px;
    padding-block: 65px;
  }

  .timeline article {
    gap: 18px;
  }

  .split-panel {
    padding: 32px 26px;
  }

  .launch-note {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .professional-card {
    grid-template-columns: 1fr;
  }

  .professional-cards {
    grid-template-columns: 1fr;
  }

  .professional-photo {
    min-height: 390px;
  }

  .profile-content,
  .form-card {
    padding: 28px 22px;
  }

  .profile-cta,
  .direct-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-cta .button,
  .direct-contact .button {
    width: 100%;
  }

  .economics-card {
    padding: 30px 24px;
  }

  .economics-card p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .profile-preview-mini {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-mark {
    min-height: 420px;
    padding: 40px;
  }

  .manifesto {
    padding: 48px 28px;
  }

  .contact-options article {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-grid > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
