:root {
  --ink: #123b37;
  --ink-dark: #0b2b28;
  --cream: #f4f1e7;
  --paper: #fbfaf5;
  --lime: #d9f27e;
  --lime-strong: #c7e958;
  --mint: #cde7dc;
  --line: rgba(18, 59, 55, 0.17);
  --muted: #5e716e;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(6, 39, 36, 0.13);
  --radius: 24px;
  --container: 1180px;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.chat-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

h3 {
  font-size: 1.55rem;
}

em {
  font-family: var(--font-serif);
  font-weight: 400;
}

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

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(251, 250, 245, 0.9);
  box-shadow: 0 10px 30px rgba(18, 59, 55, 0.05);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
}

.brand-name {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

.brand-word {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.brand-o {
  position: relative;
  display: inline-block;
}

.brand-o::before {
  position: absolute;
  z-index: 0;
  top: 49%;
  left: 42%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  transform: translate(-50%, -50%);
}

.brand-o svg {
  position: absolute;
  z-index: 1;
  top: 49%;
  left: 42%;
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--ink-dark);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-50%, -50%);
}

.brand-name small {
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.76rem;
}

.button-light {
  border-color: var(--lime);
  color: var(--ink-dark);
  background: var(--lime);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--white);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 105px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(18, 59, 55, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 59, 55, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom right, black, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
  gap: 85px;
  align-items: center;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 32px;
  font-size: clamp(4.5rem, 8vw, 7.7rem);
  line-height: 0.88;
}

.hero h1 em {
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

.hero-lead {
  max-width: 670px;
  margin-bottom: 36px;
  color: #3d5a56;
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: currentColor;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 42px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.hero-points li::before {
  margin-right: 7px;
  color: var(--ink);
  content: "✓";
}

.hero-card-wrap {
  position: relative;
}

.hero-card {
  position: relative;
  z-index: 2;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-card-head,
.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 0.6rem;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 242, 126, 0.1);
  content: "";
}

.launch-path {
  margin: 18px 0 25px;
  padding: 0;
  list-style: none;
}

.launch-path li {
  display: grid;
  grid-template-columns: 38px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.launch-path strong,
.launch-path small {
  display: block;
}

.launch-path strong {
  margin-bottom: 2px;
  font-size: 1.05rem;
}

.launch-path small {
  color: #acc4bf;
  font-size: 0.72rem;
}

.step-state {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.75rem;
}

.step-state.active {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.progress-label {
  margin-top: 25px;
  color: var(--mint);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.progress-label strong {
  color: var(--white);
}

.progress-track {
  height: 5px;
  margin: 9px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.progress-track span {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.card-note {
  margin: 0;
  color: #bfd0cd;
  font-size: 0.74rem;
  line-height: 1.55;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(18, 59, 55, 0.12);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 40px rgba(6, 39, 36, 0.13);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.floating-note span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.note-one {
  top: 31%;
  left: -64px;
}

.note-two {
  right: -35px;
  bottom: 12%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  top: 105px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(18, 59, 55, 0.13);
}

.hero-orb-two {
  right: 105px;
  bottom: -210px;
  width: 420px;
  height: 420px;
  background: var(--lime);
  opacity: 0.55;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 86px;
}

.trust-inner p {
  max-width: 350px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 650;
}

.trust-tags {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #81918e;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.trust-tags i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime-strong);
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.centered {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  max-width: 630px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
}

.problem-section {
  background: var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.problem-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.problem-card:hover p,
.problem-card:hover .card-index {
  color: var(--mint);
}

.card-index {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #92a19e;
  font-size: 0.65rem;
  font-weight: 750;
}

.line-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 66px 0 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.problem-card h3 {
  max-width: 270px;
  margin-bottom: 20px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.method-section {
  color: var(--white);
  background: var(--ink);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: 100px;
}

.method-intro {
  align-self: start;
}

.method-intro h2 {
  color: var(--white);
}

.method-intro h2 em {
  color: var(--lime);
}

.method-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 34px;
  color: #b8ccc8;
}

.method-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 34px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: padding 0.25s ease, background 0.25s ease;
}

.method-steps li:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.method-number {
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.method-steps h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.method-steps p {
  max-width: 500px;
  margin: 0;
  color: #b8ccc8;
  font-size: 0.87rem;
}

.offers-section {
  background: var(--cream);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.custom-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.8fr) minmax(230px, 0.55fr);
  gap: 46px;
  align-items: center;
  margin-top: 24px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.custom-offer-intro .offer-kicker {
  margin: 28px 0 12px;
}

.custom-offer-intro h3 {
  max-width: 560px;
  margin-bottom: 17px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.custom-offer-intro > p:last-child,
.custom-offer-action > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.custom-offer-services {
  padding: 26px 30px;
  border-radius: 18px;
  background: #edf3ed;
}

.custom-offer-services > p {
  margin-bottom: 16px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-offer-services ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-offer-services li {
  position: relative;
  padding-left: 20px;
  color: #405c58;
  font-size: 0.72rem;
}

.custom-offer-services li::before {
  position: absolute;
  left: 0;
  color: var(--ink);
  content: "✓";
}

.custom-offer-action {
  display: grid;
  gap: 20px;
  align-items: start;
}

.custom-offer-action .pill {
  justify-self: start;
}

.custom-offer-action .button {
  width: 100%;
}

.offer-card {
  display: flex;
  min-height: 720px;
  padding: 44px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.offer-foundations {
  background: var(--paper);
}

.offer-presence {
  color: var(--white);
  background: var(--ink);
}

.offer-topline,
.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.offer-number {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.offer-presence .offer-number {
  color: var(--mint);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-dark {
  color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
}

.offer-kicker {
  margin: 70px 0 17px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-presence .offer-kicker {
  color: var(--lime);
}

.offer-card h3 {
  max-width: 500px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.offer-summary {
  max-width: 490px;
  color: var(--muted);
}

.offer-presence .offer-summary {
  color: #b8ccc8;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 50px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  font-size: 0.84rem;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  content: "✓";
  font-size: 0.6rem;
}

.offer-presence .check-list li::before {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--lime);
}

.offer-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.offer-presence .offer-footer {
  border-color: rgba(255, 255, 255, 0.15);
}

.offer-footer p,
.bundle-price {
  margin: 0;
}

.offer-footer small,
.offer-footer strong,
.bundle-price small,
.bundle-price strong {
  display: block;
}

.offer-footer small,
.bundle-price small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.offer-presence .offer-footer small {
  color: var(--mint);
}

.offer-footer strong,
.bundle-price strong {
  font-size: 1.55rem;
}

.offer-footer strong span,
.bundle-price strong span,
.follow-price strong span {
  font-size: 0.63rem;
  font-weight: 650;
}

.round-link {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  transition: background 0.2s ease, transform 0.2s ease;
}

.round-link.dark {
  color: var(--ink);
  background: var(--lime);
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--lime-strong);
  transform: rotate(45deg);
}

.bundle-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto auto;
  gap: 35px;
  align-items: center;
  margin-top: 24px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
}

.bundle-card h3 {
  margin: 16px 0 7px;
  font-size: 1.8rem;
}

.bundle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.bundle-path {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.57rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.bundle-path i {
  color: #78908c;
  font-style: normal;
}

.follow-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-dark);
}

.follow-section::after {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(217, 242, 126, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(217, 242, 126, 0.03), 0 0 0 140px rgba(217, 242, 126, 0.02);
}

.follow-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 95px;
  align-items: center;
}

.follow-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #b8ccc8;
}

.follow-inclusions {
  max-width: 560px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.follow-inclusions h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.9rem;
}

.follow-inclusions ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.follow-inclusions li {
  position: relative;
  padding-left: 25px;
  color: #d7e5e2;
  font-size: 0.84rem;
  line-height: 1.5;
}

.follow-inclusions li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--lime);
  content: "✓";
}

.follow-inclusions p {
  margin-top: 16px;
  color: #8fa9a4;
  font-size: 0.7rem;
  line-height: 1.55;
}

.follow-price {
  margin: 30px 0 22px;
}

.follow-price small,
.follow-price strong {
  display: block;
}

.follow-price small {
  color: var(--mint);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.follow-price strong {
  margin-top: 5px;
  color: var(--lime);
  font-size: 2rem;
}

.light-link {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.dashboard-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
}

.dashboard-head,
.dashboard-head > div,
.action-list > div {
  display: flex;
  align-items: center;
}

.dashboard-head {
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.dashboard-head > div {
  gap: 12px;
}

.mini-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.dashboard-head p,
.action-list p {
  margin: 0;
}

.dashboard-head strong,
.dashboard-head small,
.action-list strong,
.action-list small {
  display: block;
}

.dashboard-head small,
.action-list small {
  color: var(--muted);
  font-size: 0.65rem;
}

.dashboard-date {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.6rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0;
}

.dashboard-stats > div {
  padding: 17px;
  border-radius: 15px;
  background: #edf3ed;
}

.dashboard-stats small,
.dashboard-stats strong,
.dashboard-stats span {
  display: block;
}

.dashboard-stats small {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-stats strong {
  margin: 12px 0 5px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.dashboard-stats span {
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.4;
}

.action-list {
  display: grid;
  gap: 4px;
}

.action-list > div {
  gap: 13px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.check-circle {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.65rem;
}

.check-circle.empty {
  border: 1px solid var(--line);
  background: transparent;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 160px 160px 28px 28px;
  background: var(--mint);
}

.about-visual::before,
.about-visual::after {
  position: absolute;
  border: 1px solid rgba(18, 59, 55, 0.2);
  border-radius: 50%;
  content: "";
}

.about-visual::before {
  top: 82px;
  left: 50%;
  width: 330px;
  height: 330px;
  transform: translateX(-50%);
}

.about-visual::after {
  top: 136px;
  left: 50%;
  width: 220px;
  height: 220px;
  background: var(--lime);
  transform: translateX(-50%);
}

.monogram {
  position: absolute;
  z-index: 2;
  top: 148px;
  left: 50%;
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 1;
  transform: translateX(-50%);
}

.about-caption {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 59, 55, 0.25);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy .large-copy {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 1.15rem;
}

.about-copy > p:not(.eyebrow):not(.large-copy) {
  color: var(--muted);
}

.about-copy blockquote {
  margin: 40px 0 0;
  padding: 28px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--lime-strong);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.35;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 90px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  padding: 25px 0;
  grid-template-columns: 1fr 36px;
  gap: 20px;
  align-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item button[aria-expanded="true"] span {
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 650px;
  padding: 0 55px 24px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-answer p {
  margin: 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background: var(--ink);
}

.contact-section::before {
  position: absolute;
  top: -350px;
  right: -250px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(217, 242, 126, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(217, 242, 126, 0.025), 0 0 0 180px rgba(217, 242, 126, 0.015);
  pointer-events: none;
}

.contact-heading,
.contact-options,
.contact-panels {
  position: relative;
  z-index: 1;
}

.contact-heading {
  margin-bottom: 54px;
}

.contact-heading-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 90px;
  align-items: end;
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-heading h2 em {
  color: var(--lime);
}

.contact-heading-grid > p {
  max-width: 470px;
  margin-bottom: 8px;
  color: #b8ccc8;
}

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

.contact-option {
  display: flex;
  min-height: 350px;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-option:hover,
.contact-option:focus-visible,
.contact-option[aria-expanded="true"] {
  border-color: var(--lime);
  color: var(--ink-dark);
  background: var(--lime);
  transform: translateY(-6px);
}

.contact-option-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-option-number,
.contact-option-duration {
  color: #b8ccc8;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-option-duration {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.contact-option:hover .contact-option-number,
.contact-option:hover .contact-option-duration,
.contact-option:focus-visible .contact-option-number,
.contact-option:focus-visible .contact-option-duration,
.contact-option[aria-expanded="true"] .contact-option-number,
.contact-option[aria-expanded="true"] .contact-option-duration {
  border-color: rgba(18, 59, 55, 0.18);
  color: var(--ink);
}

.contact-option-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 44px 0 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.contact-option:hover .contact-option-icon,
.contact-option:focus-visible .contact-option-icon,
.contact-option[aria-expanded="true"] .contact-option-icon {
  border-color: rgba(18, 59, 55, 0.22);
  color: var(--ink);
}

.contact-option > strong {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.contact-option-copy {
  margin-bottom: 26px;
  color: #b8ccc8;
  font-size: 0.78rem;
  line-height: 1.6;
}

.contact-option:hover .contact-option-copy,
.contact-option:focus-visible .contact-option-copy,
.contact-option[aria-expanded="true"] .contact-option-copy {
  color: #34534f;
}

.contact-option-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 750;
}

.contact-option:hover .contact-option-action,
.contact-option:focus-visible .contact-option-action,
.contact-option[aria-expanded="true"] .contact-option-action {
  border-color: rgba(18, 59, 55, 0.18);
}

.contact-panels {
  margin-top: 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 28px 80px rgba(5, 28, 26, 0.25);
  scroll-margin-top: 100px;
}

.contact-panel[hidden],
.chat-widget[hidden],
.chat-backdrop[hidden] {
  display: none;
}

.contact-panel-copy {
  padding: 38px 32px;
}

.contact-panel-copy h3 {
  margin: 30px 0 18px;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
}

.contact-panel-copy > p {
  color: #47635f;
}

.contact-panel-points {
  display: grid;
  gap: 10px;
  margin: 32px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(18, 59, 55, 0.17);
  list-style: none;
}

.contact-panel-points li {
  position: relative;
  padding-left: 25px;
  font-size: 0.76rem;
  font-weight: 650;
}

.contact-panel-points li::before {
  position: absolute;
  left: 0;
  color: var(--ink);
  content: "✓";
}

.contact-form {
  padding: 36px;
  border: 1px solid rgba(18, 59, 55, 0.1);
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label:not(.consent-field):not(.choice-field) {
  display: grid;
  gap: 8px;
  margin-bottom: 19px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font-size: 0.86rem;
  text-transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.optional {
  justify-self: start;
  color: #879794;
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(18, 59, 55, 0.08);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  margin: 7px 0 24px;
  color: var(--muted);
  font-size: 0.7rem;
}

.consent-field input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--ink);
}

.choice-group {
  margin: 2px 0 20px;
  padding: 0;
  border: 0;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 8px 0 20px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-section-title ~ .form-section-title {
  margin-top: 32px;
}

.form-section-title span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.58rem;
}

.choice-group legend {
  margin-bottom: 10px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.choice-field {
  display: flex;
  min-height: 46px;
  padding: 10px 12px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  cursor: pointer;
}

.choice-field:has(input:checked) {
  border-color: var(--ink);
  color: var(--ink);
  background: #f0f5e9;
}

.choice-field input {
  width: 16px;
  min-height: 0;
  height: 16px;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--ink);
}

.choice-field-wide {
  grid-column: 1 / -1;
}

.choice-field-summary {
  border-color: rgba(18, 59, 55, 0.24);
  background: rgba(205, 231, 220, 0.16);
}

.delivery-group {
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.delivery-group legend {
  max-width: 620px;
  padding-top: 20px;
  line-height: 1.45;
}

.choice-field-detailed {
  min-height: 108px;
  align-items: flex-start;
  padding: 15px;
}

.choice-field-detailed input {
  margin-top: 3px;
}

.choice-field-detailed strong,
.choice-field-detailed small {
  display: block;
}

.choice-field-detailed strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.73rem;
  line-height: 1.35;
}

.choice-field-detailed small {
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.5;
}

.choice-help {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.5;
}

.button-submit {
  width: 100%;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  text-align: center;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.chat-launcher {
  position: fixed;
  z-index: 190;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 38px rgba(6, 39, 36, 0.25);
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-3px);
}

.chat-open .chat-launcher {
  opacity: 0;
  pointer-events: none;
}

.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 242, 126, 0.13);
}

.chat-launcher:hover .chat-dot,
.chat-launcher:focus-visible .chat-dot {
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(18, 59, 55, 0.1);
}

.chat-backdrop {
  position: fixed;
  z-index: 195;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(4, 23, 21, 0.42);
  cursor: default;
  backdrop-filter: blur(2px);
}

.chat-widget {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  width: min(410px, calc(100vw - 32px));
  max-height: min(740px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(4, 23, 21, 0.38);
}

.chat-head,
.chat-head > div {
  display: flex;
  align-items: center;
}

.chat-head {
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--white);
  background: var(--ink);
}

.chat-head > div {
  gap: 11px;
}

.chat-head .mini-logo {
  color: var(--ink);
  background: var(--lime);
}

.chat-head p {
  margin: 0;
}

.chat-head strong,
.chat-head small {
  display: block;
}

.chat-head small {
  color: var(--mint);
  font-size: 0.6rem;
}

.chat-head > button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-body {
  max-height: calc(min(740px, 100vh - 48px) - 75px);
  padding: 20px;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 5px 16px 16px;
  color: #36534f;
  background: #e8eee9;
  font-size: 0.76rem;
  line-height: 1.55;
}

.chat-response-note {
  margin: 9px 0 15px;
  color: var(--muted);
  font-size: 0.61rem;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.chat-quick-replies button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.62rem;
  cursor: pointer;
}

.chat-quick-replies button:hover,
.chat-quick-replies button:focus-visible {
  border-color: var(--ink);
  background: var(--lime);
}

.chat-form {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.chat-form label:not(.consent-field) {
  display: grid;
  gap: 5px;
  margin-bottom: 11px;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font-size: 0.76rem;
  text-transform: none;
}

.chat-form input:focus,
.chat-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(18, 59, 55, 0.08);
}

.chat-form textarea {
  resize: vertical;
}

.chat-form .field-row {
  gap: 9px;
}

.chat-form .consent-field {
  margin: 4px 0 14px;
  font-size: 0.61rem;
  line-height: 1.45;
}

.chat-form .consent-field input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.chat-form .button {
  min-height: 46px;
  font-size: 0.72rem;
}

.site-footer {
  padding: 65px 0 25px;
  color: var(--white);
  background: var(--ink-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 45px;
}

.footer-main p {
  margin: 0;
  color: #a6bfba;
  font-size: 0.75rem;
}

.footer-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-arrow:hover,
.footer-arrow:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7f9a95;
  font-size: 0.63rem;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-small {
  transition-delay: 0.1s;
}

.reveal-delay {
  transition-delay: 0.2s;
}

.legal-page {
  min-height: 100vh;
  padding: 150px 0 90px;
  background: var(--cream);
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin-bottom: 38px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.legal-content h2 {
  margin-top: 44px;
  font-size: 1.7rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.placeholder-note {
  padding: 18px 20px;
  border: 1px solid #c8b66d;
  border-radius: 12px;
  color: #594e20;
  background: #fff7d6;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: var(--cream);
}

.thanks-card {
  max-width: 650px;
  padding: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card .brand {
  margin-bottom: 45px;
}

.thanks-card h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.thanks-card p {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 410px;
    gap: 45px;
  }

  .note-one {
    left: -24px;
  }

  .note-two {
    right: -5px;
  }

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

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

  .custom-offer-intro {
    grid-column: 1 / -1;
  }

  .bundle-path {
    display: none;
  }

  .method-grid,
  .follow-grid,
  .about-grid {
    gap: 60px;
  }

  .contact-heading-grid {
    gap: 55px;
  }

  .contact-panel {
    grid-template-columns: minmax(260px, 0.6fr) 1fr;
  }
}

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

  .section {
    padding: 90px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 110px 30px 45px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 25px;
    background: var(--cream);
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav .button {
    margin-top: 15px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 140px 0 85px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(4rem, 14vw, 6.5rem);
  }

  .hero-card-wrap {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .trust-inner,
  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .trust-inner {
    padding: 25px 0;
  }

  .trust-tags {
    flex-wrap: wrap;
  }

  .split-heading,
  .method-grid,
  .follow-grid,
  .about-grid,
  .faq-grid,
  .contact-heading-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .method-grid,
  .follow-grid,
  .about-grid,
  .faq-grid {
    gap: 55px;
  }

  .contact-section {
    padding: 90px 0;
  }

  .contact-heading-grid {
    gap: 18px;
  }

  .contact-heading-grid > p {
    max-width: 650px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option {
    min-height: 280px;
  }

  .contact-option-icon {
    margin: 28px 0 20px;
  }

  .contact-panel {
    gap: 0;
  }

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

  .problem-card {
    min-height: auto;
  }

  .line-icon {
    margin-top: 35px;
  }

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

  .custom-offer-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .custom-offer-intro {
    grid-column: auto;
  }

  .offer-card {
    min-height: auto;
  }

  .about-visual {
    width: min(100%, 520px);
    min-height: 560px;
    margin-inline: auto;
  }

  .faq-grid > .section-heading {
    margin-bottom: 0;
  }
}

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

  .section {
    padding: 75px 0;
  }

  h2 {
    font-size: 2.65rem;
  }

  .brand-name small {
    display: none;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

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

  .text-link {
    align-self: flex-start;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .hero-card {
    padding: 23px;
    transform: none;
  }

  .floating-note {
    display: none;
  }

  .launch-path li {
    grid-template-columns: 31px 1fr 28px;
  }

  .trust-tags {
    gap: 10px;
  }

  .split-heading {
    gap: 20px;
  }

  .problem-card,
  .offer-card,
  .dashboard-card,
  .contact-form {
    padding: 26px;
  }

  .offer-kicker {
    margin-top: 45px;
  }

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

  .offer-footer {
    margin-top: 10px;
  }

  .bundle-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .custom-offer-card {
    padding: 26px;
  }

  .custom-offer-services {
    padding: 22px;
  }

  .bundle-card .button {
    width: 100%;
  }

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

  .dashboard-stats > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 15px;
  }

  .dashboard-stats strong {
    grid-row: span 2;
    margin: 0;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-caption {
    gap: 10px;
    font-size: 0.52rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-section {
    padding: 75px 0;
  }

  .contact-heading {
    margin-bottom: 38px;
  }

  .contact-option {
    min-height: 255px;
    padding: 23px;
  }

  .contact-option-icon {
    width: 48px;
    height: 48px;
    margin: 24px 0 18px;
  }

  .contact-panel {
    padding: 9px;
  }

  .contact-panel-copy {
    padding: 27px 18px 32px;
  }

  .contact-panel-copy h3 {
    margin-top: 22px;
    font-size: 2.2rem;
  }

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

  .chat-launcher {
    right: 14px;
    bottom: 14px;
  }

  .chat-widget {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .chat-body {
    max-height: calc(100vh - 94px);
  }

  .chat-form .field-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

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

  .footer-main p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .thanks-card {
    padding: 40px 24px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
