.landing-page {
  --landing-navy: #082b52;
  --landing-blue: #066dde;
  --landing-soft: #eef7ff;
  --landing-ink: #092848;
  --landing-muted: #52667c;
  --landing-line: #dce9f5;
  background: #f8fbff;
}

.aesthetic-landing section[id] {
  scroll-margin-top: 92px;
}

.landing-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 252, 255, 0.94);
  border-bottom: 1px solid rgba(206, 224, 240, 0.74);
  backdrop-filter: blur(14px);
}

.landing-nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 24px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  width: 192px;
}

.landing-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.landing-toggle {
  display: none;
}

.landing-nav {
  justify-self: end;
}

.landing-nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.landing-nav-list a,
.landing-menu-trigger {
  color: var(--landing-ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
}

.landing-menu-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.landing-menu-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.landing-has-menu {
  position: relative;
}

.landing-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  display: grid;
  min-width: 230px;
  padding: 12px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(8, 43, 82, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.landing-has-menu:hover .landing-submenu,
.landing-has-menu:focus-within .landing-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.landing-submenu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #36536f;
  font-size: 0.86rem;
}

.landing-submenu a:hover {
  color: var(--landing-blue);
  background: var(--landing-soft);
}

.landing-call-btn,
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.landing-call-btn {
  color: #fff;
  background: linear-gradient(135deg, #075fc1, #0c82ec);
  box-shadow: 0 14px 28px rgba(6, 109, 222, 0.24);
  white-space: nowrap;
}

.landing-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #f4fbff;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.97) 0%, rgba(248, 252, 255, 0.9) 34%, rgba(248, 252, 255, 0.35) 56%, rgba(248, 252, 255, 0.05) 100%),
    url("../images/landing/aesthetic-clinic-hero1.png") center right / cover no-repeat;
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(280px, 380px);
  align-items: center;
  min-height: 590px;
  gap: 70px;
  padding: 72px 0 56px;
}

.landing-hero-copy h1 {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--landing-navy);
  font-size: 3.3rem;
  line-height: 1.08;
}

.landing-hero-copy p {
  max-width: 520px;
  margin: 0 0 26px;
  color: #405a73;
  font-size: 1.02rem;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.landing-btn-primary {
  border: 1px solid var(--landing-blue);
  color: #fff;
  background: linear-gradient(135deg, #075fc1, #0c82ec);
  box-shadow: 0 16px 30px rgba(6, 109, 222, 0.25);
}

.landing-btn-secondary {
  border: 1px solid #91bfe9;
  color: var(--landing-blue);
  background: rgba(255, 255, 255, 0.9);
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-badge {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 154px;
  padding: 12px 14px;
  border: 1px solid #d7e6f3;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(8, 43, 82, 0.08);
}

.partner-badge::before {
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.google-badge::before {
  content: "G";
  color: #fff;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
}

.meta-badge::before {
  content: "M";
  color: #fff;
  background: linear-gradient(135deg, #1473e6, #4c9cff);
}

.partner-badge > span {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  gap: 2px;
  min-width: 0;
  justify-items: start;
  align-content: center;
}

.partner-badge strong,
.partner-badge small {
  display: block;
  line-height: 1.15;
  text-align: left;
}

.partner-badge strong {
  color: var(--landing-ink);
  font-size: 0.86rem;
}

.partner-badge small {
  color: var(--landing-muted);
  font-size: 0.72rem;
}

.hero-insight-card {
  align-self: end;
  margin-top: 160px;
  padding: 28px;
  border: 1px solid rgba(208, 224, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(8, 43, 82, 0.16);
  backdrop-filter: blur(14px);
}

.hero-insight-card h2 {
  margin: 0 0 18px;
  color: var(--landing-navy);
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-insight-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.hero-insight-card li {
  position: relative;
  padding-left: 26px;
  color: #28455f;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-insight-card li::before,
.audit-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border: 2px solid #4ca5ef;
  border-radius: 50%;
  background: #eef8ff;
}

.hero-insight-card li::after,
.audit-copy li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #0d73d9;
  border-bottom: 2px solid #0d73d9;
  transform: rotate(-45deg);
}

.mini-chart {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 8px;
  height: 76px;
  padding-top: 10px;
  border-top: 1px solid #e6eef6;
}

.mini-chart span {
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #7fc3ff, #0e73dc);
}

.mini-chart span:nth-child(1) { height: 24px; }
.mini-chart span:nth-child(2) { height: 34px; }
.mini-chart span:nth-child(3) { height: 46px; }
.mini-chart span:nth-child(4) { height: 58px; }
.mini-chart span:nth-child(5) { height: 72px; }

.landing-section {
  padding: 46px 0;
  background: #fff;
}

.challenge-section,
.process-section,
.proof-section {
  background: #f6fbff;
}

.landing-section-head {
  margin: 0 auto 28px;
  text-align: center;
}

.landing-section-head.left {
  text-align: left;
}

.landing-section-head.compact h2 {
  margin: 0;
  color: var(--landing-navy);
  font-size: 1.65rem;
}

.landing-section-head.light h2 {
  color: #fff;
}

.challenge-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #dce9f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 43, 82, 0.08);
}

.challenge-strip article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 22px 18px;
  text-align: center;
}

.challenge-strip article + article {
  border-left: 1px solid #dce9f5;
}

.challenge-strip h3,
.service-card-grid h3,
.why-grid h3 {
  margin: 0;
  color: var(--landing-ink);
  font-size: 0.94rem;
  line-height: 1.3;
}

.line-icon,
.service-mark,
.why-icon,
.process-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #c8e1f9;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #eef8ff);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.82);
}

.line-icon::before,
.service-mark::before,
.why-icon::before,
.process-icon::before {
  content: "";
  position: absolute;
  border-color: #0e73dc;
}

.screen-icon::before {
  width: 21px;
  height: 15px;
  border: 2px solid #0e73dc;
  border-radius: 3px;
}

.screen-icon::after {
  content: "";
  position: absolute;
  bottom: 13px;
  width: 22px;
  height: 2px;
  background: #0e73dc;
}

.search-icon::before {
  width: 16px;
  height: 16px;
  border: 2px solid #0e73dc;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #0e73dc;
  transform: translate(10px, 10px) rotate(45deg);
}

.budget-icon::before {
  content: "$";
  border: 0;
  color: #0e73dc;
  font-size: 1.7rem;
  font-weight: 900;
}

.social-icon-shape::before {
  width: 24px;
  height: 15px;
  border: 2px solid #0e73dc;
  border-radius: 12px 12px 5px 5px;
}

.calendar-icon::before {
  width: 22px;
  height: 21px;
  border: 2px solid #0e73dc;
  border-radius: 4px;
}

.calendar-icon::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 20px;
  height: 2px;
  background: #0e73dc;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card-grid article {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 18px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fcff);
  box-shadow: 0 14px 30px rgba(8, 43, 82, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(8, 43, 82, 0.13);
}

.service-card-grid p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-card-grid a {
  margin-top: auto;
  color: var(--landing-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.ads-icon::before {
  width: 22px;
  height: 22px;
  border: 2px solid #0e73dc;
  border-radius: 50%;
}

.ads-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 18px;
  background: #0e73dc;
  transform: rotate(35deg);
}

.meta-icon::before {
  content: "f";
  border: 0;
  color: #0e73dc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
}

.lead-icon::before {
  width: 20px;
  height: 16px;
  border: 2px solid #0e73dc;
  border-radius: 5px;
}

.lead-icon::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0e73dc;
  border-right: 2px solid #0e73dc;
}

.why-section {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(62, 145, 228, 0.24), transparent 34%),
    linear-gradient(135deg, #08284c, #05386d 62%, #08284c);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 13px;
  padding: 18px 22px;
  text-align: center;
}

.why-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.why-grid h3 {
  color: #fff;
}

.why-grid p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.55;
}

.why-icon,
.process-icon {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.why-icon::before,
.process-icon::before {
  border-color: #7dc6ff;
}

.strategy-icon::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-color: inherit;
  border-radius: 50%;
}

.strategy-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dc6ff;
}

.target-icon::before {
  width: 26px;
  height: 26px;
  border: 2px solid #0e73dc;
  border-radius: 50%;
}

.target-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0e73dc;
}

.why-grid .target-icon::before,
.why-grid .target-icon::after {
  border-color: #7dc6ff;
  background: #7dc6ff;
}

.report-icon::before {
  width: 19px;
  height: 24px;
  border: 2px solid #0e73dc;
  border-radius: 4px;
}

.report-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #0e73dc;
  box-shadow: 0 6px 0 #0e73dc;
}

.why-grid .report-icon::before {
  border-color: #7dc6ff;
}

.why-grid .report-icon::after {
  background: #7dc6ff;
  box-shadow: 0 6px 0 #7dc6ff;
}

.secure-icon::before {
  width: 22px;
  height: 24px;
  border: 2px solid #7dc6ff;
  border-radius: 12px 12px 8px 8px;
}

.support-icon::before {
  width: 22px;
  height: 22px;
  border: 2px solid #7dc6ff;
  border-radius: 50%;
}

.support-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: #7dc6ff;
  transform: translate(11px, 8px);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-line article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  padding: 8px 8px 0;
  text-align: center;
}

.process-line article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -19px;
  width: 20px;
  height: 2px;
  background: #b8cce0;
}

.process-line article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 23px;
  right: -20px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #b8cce0;
  border-right: 2px solid #b8cce0;
  transform: rotate(45deg);
}

.process-icon {
  width: 76px;
  height: 76px;
  border-color: #e2eef8;
  background: #fff;
  box-shadow: 0 14px 28px rgba(8, 43, 82, 0.1);
}

.process-line strong {
  color: var(--landing-ink);
  font-size: 0.92rem;
}

.process-line p {
  max-width: 190px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.code-icon::before {
  content: "</>";
  border: 0;
  color: #0e73dc;
  font-size: 1.05rem;
  font-weight: 900;
}

.rocket-icon::before {
  width: 22px;
  height: 22px;
  border: 2px solid #0e73dc;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(45deg);
}

.rocket-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0e73dc;
  transform: translate(2px, -2px);
}

.chart-icon::before {
  width: 22px;
  height: 24px;
  border-left: 2px solid #0e73dc;
  border-bottom: 2px solid #0e73dc;
}

.chart-icon::after {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 5px;
  height: 10px;
  background: #0e73dc;
  box-shadow: 8px -6px 0 #0e73dc, 16px -14px 0 #0e73dc;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
}

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

.result-cards article,
.testimonial-grid article {
  min-height: 178px;
  padding: 22px 18px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 15px 32px rgba(8, 43, 82, 0.08);
}

.result-cards article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.result-cards strong {
  color: var(--landing-blue);
  font-size: 2.2rem;
  line-height: 1;
}

.result-cards p,
.testimonial-grid p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.stars {
  display: block;
  margin-bottom: 12px;
  color: #f6b80f;
  letter-spacing: 0;
  font-size: 0.85rem;
  font-weight: 900;
}

.testimonial-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--landing-ink);
  font-size: 0.8rem;
}

.landing-audit-section {
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 42%, rgba(129, 203, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #064f9d, #0478df);
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.12fr);
  gap: 52px;
  align-items: center;
}

.audit-copy h2 {
  max-width: 490px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 2rem;
}

.audit-copy p {
  max-width: 520px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
}

.audit-copy ul {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.audit-copy li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.audit-report-card {
  display: grid;
  align-content: space-between;
  width: 172px;
  height: 218px;
  margin-left: 150px;
  padding: 20px 18px;
  border-radius: 8px;
  color: var(--landing-navy);
  background: linear-gradient(145deg, #fff, #eaf5ff);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
  transform: rotate(-10deg);
}

.audit-report-card span {
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.report-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 54px;
}

.report-bars i {
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: var(--landing-blue);
}

.report-bars i:nth-child(1) { height: 18px; }
.report-bars i:nth-child(2) { height: 30px; }
.report-bars i:nth-child(3) { height: 42px; }
.report-bars i:nth-child(4) { height: 54px; }

.landing-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 56px rgba(4, 42, 78, 0.25);
}

.landing-form label {
  color: #2a425c;
  font-size: 0.8rem;
  font-weight: 600;
}

.landing-form input,
.landing-form select {
  min-height: 44px;
}

.landing-form .captcha-field,
.landing-form .captcha-status,
.landing-form .bot-field,
.landing-form button,
.landing-form .landing-privacy,
.landing-form .form-success {
  grid-column: 1 / -1;
}

.landing-form .captcha-field {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: end;
}

.landing-form .captcha-field .captcha-question {
  min-height: 44px;
}

.landing-form button {
  width: 100%;
}

.landing-privacy,
.landing-form .form-success {
  margin: 0;
  text-align: center;
  color: #5b6c80;
  font-size: 0.78rem;
}

.landing-form .form-success:not([hidden]) {
  padding: 12px;
  border: 1px solid #b8e0c6;
  border-radius: 7px;
  color: #176534;
  background: #ecfdf3;
}

.landing-contact-strip {
  padding: 38px 0;
  background: #f8fbff;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.contact-strip-grid h2 {
  margin: 0 0 4px;
  color: var(--landing-navy);
  font-size: 1.55rem;
}

.contact-strip-grid p {
  margin: 0;
  color: var(--landing-muted);
}

.contact-strip-grid a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  color: var(--landing-ink);
  font-size: 0.9rem;
}

.contact-link-text {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.3;
}

.contact-link-text strong {
  display: block;
  color: var(--landing-navy);
}

.contact-link-text span {
  display: block;
  color: #405a73;
}

.phone-icon::before {
  width: 19px;
  height: 19px;
  border: 2px solid #0e73dc;
  border-radius: 14px 14px 14px 4px;
  transform: rotate(-30deg);
}

.mail-icon::before {
  width: 24px;
  height: 17px;
  border: 2px solid #0e73dc;
  border-radius: 4px;
}

.mail-icon::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-right: 2px solid #0e73dc;
  border-bottom: 2px solid #0e73dc;
  transform: translateY(-4px) rotate(45deg);
}

@media (max-width: 1120px) {
  .landing-nav-wrap {
    grid-template-columns: auto auto;
    min-height: 68px;
    gap: 14px;
  }

  .landing-toggle {
    display: grid;
    grid-template-columns: 22px auto;
    grid-template-rows: repeat(3, 4px);
    align-content: center;
    align-items: center;
    column-gap: 8px;
    justify-self: end;
    width: auto;
    min-width: 88px;
    height: 44px;
    padding: 0 12px;
    border-color: rgba(6, 109, 222, 0.26);
    color: #fff;
    background: linear-gradient(135deg, var(--landing-navy), var(--landing-blue));
    box-shadow: 0 12px 24px rgba(6, 109, 222, 0.2);
  }

  .landing-toggle::after {
    content: "Menu";
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
  }

  .landing-toggle span:not(.sr-only) {
    grid-column: 1;
    width: 22px;
    height: 2px;
    margin: 0;
    background: #fff;
  }

  .landing-toggle span:nth-child(1) {
    grid-row: 1;
  }

  .landing-toggle span:nth-child(2) {
    grid-row: 2;
  }

  .landing-toggle span:nth-child(3) {
    grid-row: 3;
  }

  .landing-header.is-open .landing-toggle::after {
    content: "Close";
  }

  .landing-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    padding: 0 0 14px;
  }

  .landing-header.is-open .landing-nav {
    display: block;
  }

  .landing-nav-list {
    display: grid;
    gap: 0;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--landing-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(8, 43, 82, 0.12);
  }

  .landing-nav-list a,
  .landing-menu-trigger {
    display: block;
    width: 100%;
    padding: 13px 12px;
    text-align: left;
    border-radius: 6px;
  }

  .landing-nav-list a:hover,
  .landing-nav-list a:focus-visible {
    color: var(--landing-blue);
    background: var(--landing-soft);
  }

  .landing-submenu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    min-width: 0;
    margin: 0 12px 10px;
    box-shadow: none;
  }

  .landing-has-menu.is-open .landing-submenu {
    display: grid;
  }

  .landing-call-btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    min-height: 42px;
  }

  .landing-hero-grid,
  .audit-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-grid {
    gap: 24px;
    min-height: auto;
  }

  .hero-insight-card {
    align-self: auto;
    max-width: 430px;
    margin-top: 20px;
  }

  .service-card-grid,
  .challenge-strip,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .challenge-strip article + article,
  .why-grid article + article {
    border-left: 0;
  }

  .challenge-strip article,
  .why-grid article {
    border-top: 1px solid rgba(8, 43, 82, 0.09);
  }

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

  .process-line article::before,
  .process-line article::after {
    display: none;
  }

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

@media (max-width: 760px) {
  .landing-container {
    width: min(100% - 28px, 1180px);
  }

  .landing-brand {
    width: 154px;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero-bg {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.94) 52%, rgba(248, 252, 255, 0.58) 100%),
      url("../images/landing/aesthetic-clinic-hero1.png") center top / cover no-repeat;
  }

  .landing-hero-grid {
    padding: 52px 0 34px;
  }

  .landing-hero-copy h1 {
    font-size: 2.35rem;
  }

  .landing-actions,
  .partner-row {
    display: grid;
  }

  .landing-btn,
  .partner-badge {
    width: 100%;
  }

  .hero-insight-card {
    max-width: none;
  }

  .service-card-grid,
  .challenge-strip,
  .why-grid,
  .process-line,
  .result-cards,
  .testimonial-grid,
  .landing-form,
  .contact-strip-grid {
    grid-template-columns: 1fr;
  }

  .landing-form .captcha-field {
    grid-template-columns: 1fr;
  }

  .audit-report-card {
    margin-left: 28px;
  }

}

@media (max-width: 440px) {
  .landing-hero-copy h1 {
    font-size: 2.05rem;
  }

  .landing-section-head.compact h2 {
    font-size: 1.42rem;
  }

  .landing-form {
    padding: 18px;
  }
}
