:root {
  --orange: #f56500;
  --orange-deep: #e95a00;
  --ink: #070707;
  --muted: #747474;
  --line: rgba(245, 101, 0, 0.22);
  --soft: #fff7f2;
  --shadow: 0 12px 35px rgba(55, 24, 7, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #ffffff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
}

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

.lp {
  position: relative;
  min-height: max(100vh, 941px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 28%, rgba(245, 101, 0, 0.04), transparent 30%),
    #ffffff;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1672px;
  height: 98px;
  margin: 0 auto;
  padding: 24px 79px 14px 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand-mark,
.mini-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
}

.brand-mark {
  width: 44px;
  height: 44px;
}

.brand-mark svg,
.mini-mark svg {
  width: 74%;
  height: 74%;
  fill: #ffffff;
}

.brand-text {
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 51px;
  margin-left: auto;
  margin-right: 45px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.global-nav a {
  transition: color 0.18s ease;
}

.global-nav a:hover {
  color: var(--orange);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 207px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(245, 101, 0, 0.14);
  white-space: nowrap;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1672px;
  min-height: max(calc(100vh - 98px), 843px);
  margin: 0 auto;
  overflow: hidden;
}

.bg-shape,
.bg-green,
.person {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.bg-shape {
  z-index: 1;
  top: -92px;
  right: -74px;
  width: min(66vw, 1040px);
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.bg-green {
  z-index: 0;
  top: 110px;
  right: -92px;
  width: min(44vw, 650px);
  height: 650px;
  object-fit: cover;
  object-position: right center;
  opacity: 0.55;
  filter: saturate(1.05);
  mask-image: linear-gradient(to right, transparent 0%, #000 23%, #000 82%, transparent 100%);
}

.person {
  z-index: 5;
  top: -2px;
  right: 8px;
  width: 430px;
  height: 760px;
  object-fit: contain;
  object-position: right top;
  filter: contrast(1.03) saturate(1.02);
}

.hero-copy {
  position: relative;
  z-index: 8;
  width: min(52vw, 765px);
  padding: 32px 0 0 79px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 316px;
  min-height: 50px;
  margin: 0 0 74px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(245, 101, 0, 0.1);
  white-space: nowrap;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.15vw, 70px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero h1.hero-headline {
  font-size: clamp(42px, 3.05vw, 52px);
  line-height: 1.52;
}

.hero h1 span {
  display: inline-block;
  color: var(--orange);
}

.hero h1 .headline-line {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.hero h1 .headline-accent {
  color: var(--orange);
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: #202020;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.85;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 324px;
  min-height: 68px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(245, 101, 0, 0.14);
}

.button-secondary {
  border: 2px solid var(--orange);
  background: #ffffff;
  color: var(--orange);
}

.button-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.button-primary .button-icon {
  background: #ffffff;
}

.button-secondary .button-icon {
  background: transparent;
}

.button-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.button-primary .button-icon::before {
  color: var(--orange);
  margin-left: -2px;
}

.button-secondary .button-icon::before {
  color: var(--orange);
}

.phone {
  position: absolute;
  z-index: 6;
  top: 16px;
  left: 52.4%;
  width: 344px;
  height: 663px;
  padding: 27px 20px 20px;
  border: 8px solid #111111;
  border-radius: 52px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.3),
    0 2px 0 #4b4b4b,
    0 18px 34px rgba(15, 15, 15, 0.18);
}

.phone.hero-phone {
  width: min(382px, calc(100vw - 42px));
  height: 682px;
}

.phone::before,
.phone::after {
  content: "";
  position: absolute;
  z-index: 2;
  background: #111111;
}

.phone::before {
  top: -8px;
  left: 50%;
  width: 128px;
  height: 35px;
  border-radius: 0 0 24px 24px;
  transform: translateX(-50%);
}

.phone::after {
  top: 246px;
  right: -12px;
  width: 5px;
  height: 91px;
  border-radius: 0 6px 6px 0;
  opacity: 0.85;
}

.phone-camera {
  position: absolute;
  z-index: 3;
  top: 6px;
  left: calc(50% + 42px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 57% 43%, #0b5aa5 0 18%, transparent 20%),
    #050505;
  box-shadow: -40px 2px 0 2px #050505;
}

.phone-status {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  padding: 0 3px 0 13px;
  color: #050505;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.status-icons {
  font-size: 10px;
  letter-spacing: 1px;
}

.phone-screen {
  position: relative;
  z-index: 4;
  height: calc(100% - 24px);
  overflow: hidden;
  padding: 18px 10px 20px;
  border-radius: 0 0 34px 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(245, 101, 0, 0.07), transparent 10%),
    #ffffff;
}

.hero-phone .phone-screen {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 101, 0, 0.55) rgba(245, 101, 0, 0.08);
}

.hero-phone .phone-screen::-webkit-scrollbar {
  width: 6px;
}

.hero-phone .phone-screen::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.08);
}

.hero-phone .phone-screen::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.55);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #111111;
  font-size: 13px;
  font-weight: 900;
}

.mini-mark {
  width: 25px;
  height: 25px;
}

.letter-card {
  display: grid;
  place-items: center;
  height: 100px;
  margin-bottom: 17px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #f56500, #e95a00);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 9px 18px rgba(245, 101, 0, 0.16);
}

.letter-card p {
  margin: 0 0 6px;
  font-family: inherit;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.05;
}

.letter-card span {
  font-size: 13px;
  font-weight: 900;
}

.candidate-name {
  margin-bottom: 18px;
  color: #111111;
  font-size: 20px;
  font-weight: 900;
}

.message-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.message-heading i {
  display: block;
  height: 2px;
  flex: 1 1 auto;
  background: var(--orange);
}

.sender {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.sender-photo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f5c6ad 0 22%, transparent 23%),
    radial-gradient(circle at 50% 78%, #ffffff 0 29%, transparent 30%),
    linear-gradient(145deg, #1d4562, #6a8fa1);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.sender-photo.has-avatar {
  background-color: #fff7f3;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 0 2px #ffffff,
    0 0 0 1px rgba(245, 101, 0, 0.14);
}

.sender strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1;
}

.sender small {
  display: block;
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.message-box {
  min-height: 260px;
  padding: 13px 12px;
  border-radius: 14px;
  background: #fff7f3;
  box-shadow: inset 0 0 0 1px rgba(245, 101, 0, 0.03);
}

.message-box p {
  margin: 0 0 10px;
  color: #171717;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
}

.phone .message-stack {
  display: grid;
  gap: 14px;
}

.phone .letter-message-section .message-heading {
  margin-bottom: 8px;
}

.phone .letter-message-section .sender {
  margin-bottom: 10px;
}

.phone .letter-message-section .message-box {
  min-height: 0;
}

.metrics {
  position: absolute;
  z-index: 12;
  right: 86px;
  bottom: 31px;
  left: 79px;
  display: grid;
  grid-template-columns: 1.03fr 0.93fr 0.96fr;
  gap: 18px;
}

.metric-card {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 158px;
  padding: 21px 40px 20px 49px;
  border: 1px solid rgba(245, 101, 0, 0.05);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  margin-right: 57px;
  border-radius: 50%;
  background: var(--soft);
  overflow: hidden;
}

.metric-icon img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: cover;
}

.metric-body {
  min-width: 0;
}

.metric-body h2 {
  margin: 0 0 14px;
  color: #111111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.metric-body p {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: var(--orange);
  line-height: 0.88;
  white-space: nowrap;
}

.metric-body strong {
  font-size: 71px;
  font-weight: 900;
  letter-spacing: 0;
}

.metric-body span {
  margin-left: 6px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.note {
  position: absolute;
  z-index: 13;
  right: 88px;
  bottom: 8px;
  margin: 0;
  color: #a0a0a0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.problem-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1672px;
  margin: 0 auto;
  padding: 20px 24px 0;
  background: #ffffff;
}

.problem-band {
  position: relative;
  min-height: 530px;
  padding: 13px 54px 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 11% 6%, rgba(245, 101, 0, 0.08), transparent 27%),
    radial-gradient(circle at 88% 94%, rgba(245, 101, 0, 0.07), transparent 28%),
    #fff4ed;
}

.section-title {
  margin: 0;
  text-align: center;
  color: #080808;
  font-size: clamp(32px, 2.4vw, 41px);
  font-weight: 900;
  line-height: 1.35;
}

.section-title span {
  display: block;
  width: 72px;
  height: 2px;
  margin: 8px auto 0;
  background: var(--orange);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 4px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 430px;
  padding: 22px 28px 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 16px 32px rgba(72, 36, 16, 0.04);
  text-align: center;
}

.problem-visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 158px;
  color: var(--orange);
}

.problem-visual img {
  display: block;
  width: min(100%, 395px);
  height: 150px;
  object-fit: contain;
}

.problem-card h3 {
  margin: 9px 0 20px;
  color: #070707;
  font-size: clamp(23px, 1.62vw, 28px);
  font-weight: 900;
  line-height: 1.46;
}

.problem-card p {
  margin: 0;
  color: #0f0f0f;
  font-size: clamp(18px, 1.31vw, 22px);
  font-weight: 800;
  line-height: 1.72;
}

.band-arrow {
  position: absolute;
  right: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 16px solid var(--orange);
  transform: translate(50%, 100%);
}

.solution-copy {
  margin: 32px 0 23px;
  text-align: center;
  color: #080808;
  font-size: clamp(27px, 2.02vw, 35px);
  font-weight: 900;
  line-height: 1.35;
}

.solution-copy strong {
  color: var(--orange);
  font-size: 1.14em;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  width: min(100%, 1460px);
  margin: 0 auto;
}

.comparison-box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 326px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
}

.comparison-box-hot {
  padding: 33px 38px 22px;
  border: 2px solid var(--orange);
}

.comparison-box-cool {
  padding: 41px 45px 26px;
  border: 2px solid #33405d;
  justify-content: center;
}

.box-label {
  position: absolute;
  top: -19px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 285px;
  margin: 0;
  padding: 0 20px;
  background: #ffffff;
  color: var(--orange);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.3;
  transform: translateX(-50%);
  white-space: nowrap;
}

.comparison-box-cool .box-label {
  min-width: 318px;
  color: #33405d;
}

.box-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 3px;
  color: var(--orange);
}

.box-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.comparison-box h3 {
  margin: 0 0 16px;
  text-align: center;
  color: var(--orange);
  font-size: clamp(28px, 1.96vw, 34px);
  font-weight: 900;
  line-height: 1.25;
}

.comparison-box ul {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-box li {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  min-height: 64px;
  border-radius: 7px;
  font-size: clamp(22px, 1.5vw, 26px);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.comparison-box li span {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.comparison-box-hot li {
  background: #fff4ed;
  color: #070707;
}

.comparison-box-hot li span {
  color: var(--orange);
}

.comparison-box-cool li {
  min-height: 64px;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.62), rgba(247, 248, 250, 0.96), rgba(247, 248, 250, 0.62));
  color: #070707;
}

.comparison-box-cool li span {
  color: #33405d;
}

.vs-divider {
  display: grid;
  grid-template-rows: 44px 34px 44px;
  align-self: center;
  justify-items: center;
  align-items: center;
  color: #9aa1ad;
}

.vs-divider span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(currentColor, currentColor);
  opacity: 0.55;
}

.vs-divider strong {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #747c88;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: none;
}

.service-section {
  width: 100%;
  max-width: 1672px;
  margin: 16px auto 0;
  padding: 0 16px 28px;
}

.service-panel {
  border-radius: 18px;
  background: #fff4ed;
}

.service-showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 42px 42px 44px;
  background: #fff4ed;
}

.service-showcase::before,
.service-showcase::after {
  display: none;
}

.service-showcase::before {
  top: 48px;
  left: 48px;
}

.service-showcase::after {
  right: 52px;
  top: 122px;
}

.service-overview {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  text-align: center;
}

.service-heading {
  margin: 0;
  color: #090909;
  font-size: clamp(36px, 4.1vw, 52px);
  font-weight: 900;
  line-height: 1.18;
}

.service-heading strong {
  color: var(--orange);
}

.service-main-copy {
  margin: 18px 0 0;
  color: #080808;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.75;
}

.service-main-copy strong {
  color: var(--orange);
}

.service-stage-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 760px);
  margin: 22px auto 0;
}

.stage-pill {
  min-width: 0;
  min-height: 56px;
  padding: 0 22px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: #ffffff;
  color: var(--orange);
  cursor: pointer;
  font: inherit;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(245, 101, 0, 0.12);
  transition:
    filter 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.stage-pill.is-active {
  border-color: transparent;
  background: linear-gradient(145deg, #f87912, var(--orange-deep));
  color: #ffffff;
  filter: none;
  box-shadow: 0 15px 25px rgba(245, 101, 0, 0.22);
  transform: translateY(-1px);
}

.stage-pill:focus-visible {
  outline: 3px solid rgba(245, 101, 0, 0.34);
  outline-offset: 4px;
}

.service-title {
  margin: 0;
  color: #081019;
  text-align: center;
  font-size: clamp(31px, 3.1vw, 40px);
  font-weight: 900;
  line-height: 1.25;
}

.service-title span {
  display: block;
  width: 52px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--orange);
}

.service-title-small {
  font-size: clamp(26px, 2.55vw, 32px);
}

.service-lead {
  margin: 16px auto 24px;
  color: #111111;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.78;
}

.service-lead strong {
  color: var(--orange);
  font-weight: 900;
}

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

.service-feature-card {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 234px;
  padding: 28px 36px 28px 20px;
  border: 1px solid rgba(36, 48, 63, 0.14);
  border-radius: 13px;
  background:
    radial-gradient(circle at 13% 26%, rgba(245, 101, 0, 0.06), transparent 34%),
    #fff7f1;
}

.service-feature-card img {
  display: block;
  width: 139px;
  height: 154px;
  object-fit: contain;
}

.service-feature-card h3 {
  margin: 0 0 17px;
  color: var(--orange);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.35;
}

.service-feature-card p {
  margin: 0;
  color: #151515;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.82;
}

.service-flow {
  margin-top: 16px;
  padding: 25px 29px 28px;
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 23px;
}

.flow-card {
  min-height: 328px;
  padding: 18px 38px 17px;
  border: 1px solid rgba(36, 48, 63, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 24px rgba(32, 28, 24, 0.03);
}

.flow-head {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  align-items: start;
  min-height: 55px;
}

.flow-head span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.flow-head h3 {
  margin: 0;
  color: #101010;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.flow-card img {
  display: block;
  width: 100%;
  height: 138px;
  margin: 5px auto 9px;
  object-fit: contain;
}

.flow-card p {
  margin: 0;
  color: #161616;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.flow-arrow {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--orange);
  justify-self: center;
}

.flow-loop {
  position: relative;
  width: min(78%, 770px);
  margin: 18px auto 0;
  padding: 0 22px 5px;
  color: #121212;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.flow-loop::before,
.flow-loop::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 45px;
  border-bottom: 2px dashed var(--orange);
}

.flow-loop::before {
  left: 0;
  border-left: 2px dashed var(--orange);
  border-radius: 0 0 0 10px;
}

.flow-loop::after {
  right: 0;
  border-right: 2px dashed var(--orange);
  border-radius: 0 0 10px 0;
}

.timing-lead {
  margin: 30px 0 0;
  color: #101010;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
}

.timing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.timing-card {
  appearance: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 362px;
  padding: 24px 18px 25px;
  border: 1px solid rgba(245, 101, 0, 0.18);
  border-radius: 12px;
  background: #fff7f1;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: center;
  box-shadow: 0 14px 24px rgba(32, 28, 24, 0.04);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.timing-card:not(:last-child)::after {
  display: none;
}

.timing-card.is-active {
  border-color: var(--orange);
  background:
    radial-gradient(circle at 14% 16%, rgba(245, 101, 0, 0.08), transparent 30%),
    #ffffff;
  box-shadow: 0 18px 30px rgba(245, 101, 0, 0.12);
}

.timing-card:focus-visible {
  outline: 3px solid rgba(245, 101, 0, 0.38);
  outline-offset: 4px;
}

.timing-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f87912, var(--orange-deep));
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.timing-card h3 {
  margin: 18px 0 15px;
  color: var(--orange);
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 900;
  line-height: 1.25;
}

.timing-card img {
  display: block;
  width: min(100%, 176px);
  height: 154px;
  object-fit: contain;
}

.timing-card p {
  width: 100%;
  margin: 21px 0 0;
  padding-top: 18px;
  border-top: 2px dotted var(--orange);
  color: #101010;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.68;
}

.message-example {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  width: 100%;
  margin: 34px auto 0;
  padding: 0;
  background: transparent;
}

.phone.example-phone {
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
  justify-self: center;
  width: 328px;
  height: 632px;
  margin: 0;
  padding: 24px 18px 18px;
  border-width: 7px;
  border-radius: 46px;
  transform: none;
}

.phone.example-phone::before {
  top: -7px;
  width: 112px;
  height: 30px;
  border-radius: 0 0 22px 22px;
}

.phone.example-phone::after {
  top: 216px;
  right: -11px;
  height: 80px;
}

.example-phone .phone-camera {
  top: 5px;
  left: calc(50% + 37px);
  width: 8px;
  height: 8px;
  box-shadow: -35px 2px 0 2px #050505;
}

.example-phone .phone-status {
  height: 21px;
  padding-left: 11px;
  font-size: 13px;
}

.example-phone .phone-screen {
  height: calc(100% - 21px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 15px 9px 16px;
  border-radius: 0 0 30px 30px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 101, 0, 0.55) rgba(245, 101, 0, 0.08);
}

.example-phone .phone-screen::-webkit-scrollbar {
  width: 6px;
}

.example-phone .phone-screen::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.08);
}

.example-phone .phone-screen::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.55);
}

.example-phone .phone-brand {
  gap: 7px;
  margin-bottom: 13px;
  font-size: 11px;
}

.example-phone .mini-mark {
  width: 22px;
  height: 22px;
}

.example-phone .letter-card {
  height: 86px;
  margin-bottom: 14px;
  border-radius: 12px;
}

.example-phone .letter-card p {
  font-size: 28px;
}

.example-phone .letter-card span {
  font-size: 11px;
}

.example-phone .candidate-name {
  margin-bottom: 14px;
  font-size: 17px;
}

.example-phone .message-heading {
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
}

.example-phone .sender {
  gap: 10px;
  margin-bottom: 11px;
}

.example-phone .sender-photo {
  width: 42px;
  height: 42px;
}

.example-phone .sender strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.example-phone .sender small {
  font-size: 9px;
}

.example-phone .message-box {
  min-height: 220px;
  padding: 11px;
  border-radius: 12px;
}

.example-phone .message-stack {
  display: grid;
  gap: 14px;
}

.example-phone .letter-message-section .message-heading {
  margin-bottom: 8px;
}

.example-phone .letter-message-section .sender {
  margin-bottom: 10px;
}

.example-phone .letter-message-section .message-box {
  min-height: 0;
}

.example-phone .message-box p {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.68;
}

.example-content {
  min-width: 0;
  padding-top: 14px;
}

.example-points-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.example-points-label::before {
  content: "";
  display: block;
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange);
}

.example-list {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.letter-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.letter-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(245, 101, 0, 0.26);
  border-radius: 9px;
  background: #ffffff;
  color: var(--orange);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.letter-switcher button span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: rgba(245, 101, 0, 0.1);
  font-size: 14px;
}

.letter-switcher button.is-active {
  border-color: transparent;
  background: linear-gradient(145deg, #f87912, var(--orange-deep));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(245, 101, 0, 0.16);
}

.letter-switcher button.is-active span {
  background: rgba(255, 255, 255, 0.22);
}

.example-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 105px;
  padding: 17px 26px 17px 28px;
  border: 1px solid rgba(36, 48, 63, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 22px rgba(32, 28, 24, 0.03);
}

.example-icon {
  display: grid;
  place-items: center;
  color: var(--orange);
}

.example-icon svg {
  display: block;
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.example-item h3 {
  margin: 0 0 8px;
  color: #101010;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.example-item p {
  margin: 0;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.pricing-section {
  width: 100%;
  max-width: 1360px;
  margin: 86px auto 0;
  padding: 0 18px 42px;
}

.pricing-inner {
  position: relative;
  overflow: hidden;
  padding: 58px 46px 38px;
  border-radius: 18px;
  background: #ffffff;
}

.pricing-decor {
  position: absolute;
  width: 110px;
  height: 96px;
  opacity: 0.42;
  background-image: radial-gradient(circle, var(--orange) 1.8px, transparent 2.2px);
  background-size: 13px 13px;
}

.decor-left {
  top: 74px;
  left: 38px;
}

.decor-right {
  top: 50px;
  right: 48px;
}

.pricing-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #091018;
  text-align: center;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 900;
  line-height: 1.18;
}

.pricing-title span {
  color: var(--orange);
  font-size: 1.7em;
  line-height: 0.8;
}

.pricing-title-line {
  display: block;
  width: 78px;
  height: 4px;
  margin: 13px auto 24px;
  background: var(--orange);
}

.pricing-lead {
  margin: 0;
  color: #111111;
  text-align: center;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.55;
}

.pricing-included-heading {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) auto minmax(72px, 1fr);
  gap: 28px;
  align-items: center;
  width: min(100%, 580px);
  margin: 50px auto 22px;
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.pricing-included-heading span {
  display: block;
  height: 2px;
  background: currentColor;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px 32px;
  margin-top: 0;
}

.pricing-item {
  grid-column: span 2;
  min-height: 206px;
  padding: 24px 28px 26px;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(31, 24, 18, 0.08);
}

.pricing-item-wide {
  grid-column: span 3;
}

.pricing-item > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 23px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f87912, var(--orange-deep));
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.pricing-item h3 {
  margin: 0;
  color: #101010;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.pricing-item p {
  margin: 22px 0 0;
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.pricing-note {
  margin: 18px 8px 17px 0;
  color: #333333;
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.pricing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(320px, 430px);
  gap: 42px;
  align-items: center;
  min-height: 206px;
  padding: 34px 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f87912, var(--orange-deep));
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(132, 42, 0, 0.14);
}

.pricing-cta::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 116px;
  background: rgba(255, 255, 255, 0.7);
  justify-self: center;
}

.pricing-cta-copy {
  grid-column: 1;
  grid-row: 1;
}

.pricing-cta-copy p {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.48;
}

.pricing-cta-copy span {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.pricing-cta-button {
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 86px;
  padding: 0 46px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--orange);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(111, 28, 0, 0.14);
}

.pricing-cta-button span {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 5px solid currentColor;
  border-right: 5px solid currentColor;
  transform: rotate(45deg);
}

.download-section,
.booking-section {
  width: 100%;
  max-width: 1360px;
  margin: 34px auto 0;
  padding: 0 18px;
}

.booking-section {
  padding-bottom: 56px;
}

.bottom-conversion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: 100%;
  max-width: 1360px;
  margin: 34px auto 0;
  padding: 0 18px 56px;
}

.bottom-conversion-grid .download-section,
.bottom-conversion-grid .booking-section {
  max-width: none;
  margin: 0;
  padding: 0;
}

.bottom-conversion-grid .conversion-inner {
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: start;
  height: 100%;
  padding: 36px 30px;
}

.bottom-conversion-grid .conversion-copy h2 {
  font-size: clamp(28px, 2.1vw, 35px);
}

.bottom-conversion-grid .conversion-copy p:not(.conversion-label) {
  font-size: 15px;
  line-height: 1.8;
}

.conversion-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
  padding: 44px 46px;
  border-radius: 18px;
  background: #fff4ed;
  box-shadow: 0 18px 42px rgba(31, 24, 18, 0.06);
}

.booking-inner {
  background: #ffffff;
}

.conversion-label {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.1);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.conversion-copy h2 {
  margin: 0;
  color: #091018;
  font-size: clamp(30px, 2.6vw, 43px);
  font-weight: 900;
  line-height: 1.36;
}

.conversion-copy p:not(.conversion-label) {
  margin: 20px 0 0;
  color: #222222;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.conversion-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.conversion-list li {
  position: relative;
  padding-left: 32px;
  color: #111111;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.conversion-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.conversion-form,
.booking-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(245, 101, 0, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.booking-panel {
  box-shadow: 0 14px 26px rgba(31, 24, 18, 0.05);
}

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

.conversion-form label,
.booking-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.conversion-form label span,
.booking-form label span,
.challenge-field legend {
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.conversion-form em,
.booking-form em,
.challenge-field em {
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.12);
  color: var(--orange);
  font-style: normal;
  font-size: 11px;
}

.challenge-field small {
  margin-left: 8px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
}

.conversion-form input,
.booking-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(36, 48, 63, 0.18);
  border-radius: 9px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.conversion-form input:focus,
.booking-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 101, 0, 0.12);
}

.challenge-field {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 16px;
  border: 1px solid rgba(36, 48, 63, 0.12);
  border-radius: 12px;
  background: #ffffff;
}

.challenge-field.is-invalid {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 101, 0, 0.12);
}

.challenge-field legend {
  padding: 0 4px;
}

.challenge-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222222;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.challenge-field input {
  width: 17px;
  height: 17px;
  min-height: 0;
  accent-color: var(--orange);
}

.conversion-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(145deg, #f87912, var(--orange-deep));
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.conversion-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(245, 101, 0, 0.16);
}

.conversion-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.conversion-button span[aria-hidden="true"] {
  width: 11px;
  height: 11px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.conversion-button-secondary {
  background: #ffffff;
  border-color: var(--orange);
  color: var(--orange);
}

.conversion-button-ghost {
  background: #ffffff;
  border-color: rgba(36, 48, 63, 0.16);
  color: #222222;
}

.conversion-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--orange);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.conversion-message.is-error {
  color: #d43f00;
}

.booking-step {
  display: grid;
  gap: 20px;
}

.booking-calendar {
  padding: 18px;
  border: 1px solid rgba(36, 48, 63, 0.11);
  border-radius: 14px;
  background: #ffffff;
}

.booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.booking-calendar-head strong {
  color: #111111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.booking-month-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(36, 48, 63, 0.14);
  border-radius: 9px;
  background: #fff7f3;
  color: var(--orange);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.booking-month-button:disabled {
  cursor: default;
  opacity: 0.35;
}

.booking-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.booking-weekdays {
  margin-bottom: 6px;
  color: #666666;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.booking-day {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #111111;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.booking-day:hover:not(:disabled) {
  background: #fff0e8;
  color: var(--orange);
}

.booking-day.is-disabled,
.booking-day:disabled {
  color: #c2c2c2;
  cursor: default;
}

.booking-day.is-selected {
  background: var(--orange);
  color: #ffffff;
}

.booking-day.is-empty {
  pointer-events: none;
}

.booking-slots-card {
  padding: 18px;
  border: 1px solid rgba(36, 48, 63, 0.11);
  border-radius: 14px;
  background: #fffaf7;
}

.booking-slots-label {
  margin: 0 0 12px;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

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

.booking-slot {
  min-height: 42px;
  padding: 0 8px;
  border: 1px solid rgba(245, 101, 0, 0.25);
  border-radius: 999px;
  background: #ffffff;
  color: var(--orange);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.booking-slot:hover,
.booking-slot.is-selected {
  background: var(--orange);
  color: #ffffff;
}

.booking-loading,
.booking-error,
.booking-no-slots {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 0;
  color: #666666;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.booking-error {
  color: #d43f00;
}

.booking-form {
  display: grid;
  gap: 15px;
}

.booking-step[hidden],
.booking-form[hidden],
.booking-complete[hidden] {
  display: none !important;
}

.booking-selected {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(245, 101, 0, 0.26);
  border-radius: 12px;
  background: #fff4ed;
  color: var(--orange);
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.booking-actions {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12px;
}

.booking-actions .conversion-button {
  margin-top: 6px;
}

.booking-complete {
  padding: 30px 16px;
  text-align: center;
}

.booking-complete > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.booking-complete h3 {
  margin: 0;
  color: #111111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.booking-complete p {
  margin: 14px 0 6px;
  color: #333333;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

body.has-legal-modal {
  overflow: hidden;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 34px 18px 48px;
  border-top: 1px solid rgba(36, 48, 63, 0.1);
  color: #111111;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-company {
  margin: 0;
  color: #333333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  color: #222222;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.footer-links button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--orange);
}

.footer-links button:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin: 0 12px;
  color: rgba(36, 48, 63, 0.38);
}

.footer-copy {
  margin: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 26px;
}

.legal-modal[hidden] {
  display: none !important;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 8, 8, 0.54);
  cursor: pointer;
}

.legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(86vh, 840px);
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(8, 8, 8, 0.22);
}

.legal-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 48, 63, 0.13);
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(31, 24, 18, 0.08);
}

.legal-modal-close:hover,
.legal-modal-close:focus-visible {
  color: var(--orange);
  outline: 3px solid rgba(245, 101, 0, 0.18);
}

.legal-modal-content {
  max-height: min(86vh, 840px);
  overflow-y: auto;
  padding: 46px 52px 52px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 101, 0, 0.55) rgba(245, 101, 0, 0.08);
}

.legal-modal-content::-webkit-scrollbar {
  width: 8px;
}

.legal-modal-content::-webkit-scrollbar-track {
  background: rgba(245, 101, 0, 0.08);
}

.legal-modal-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.55);
}

.legal-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(245, 101, 0, 0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.legal-modal-content h2 {
  margin: 0 48px 24px 0;
  color: #091018;
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 900;
  line-height: 1.35;
}

.legal-document h3 {
  margin: 30px 0 10px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.legal-document p {
  margin: 0 0 14px;
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.legal-document a,
.company-list a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(36, 48, 63, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.company-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 58px;
  border-bottom: 1px solid rgba(36, 48, 63, 0.1);
}

.company-list div:last-child {
  border-bottom: 0;
}

.company-list dt,
.company-list dd {
  margin: 0;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.7;
}

.company-list dt {
  display: flex;
  align-items: center;
  background: #fff4ed;
  color: var(--orange);
  font-weight: 900;
}

.company-list dd {
  color: #111111;
  font-weight: 800;
}

.legal-effective {
  margin-top: 26px !important;
  color: #666666 !important;
  text-align: right;
  font-size: 13px !important;
}

@media (max-width: 1320px) {
  .site-header {
    padding-right: 42px;
    padding-left: 42px;
  }

  .brand-text {
    font-size: 27px;
  }

  .global-nav {
    gap: 30px;
    margin-right: 28px;
  }

  .hero-copy {
    width: min(56vw, 690px);
    padding-left: 48px;
  }

  .phone {
    left: 56%;
    transform: scale(0.9);
    transform-origin: top left;
  }

  .person {
    right: -68px;
  }

  .metrics {
    right: 42px;
    left: 42px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-card {
    padding-right: 24px;
    padding-left: 28px;
  }

  .metric-icon {
    margin-right: 30px;
  }

  .problem-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .problem-band {
    padding-right: 34px;
    padding-left: 34px;
  }

  .problem-card {
    padding-right: 18px;
    padding-left: 18px;
  }

  .comparison {
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
    gap: 22px;
  }

  .comparison-box-hot,
  .comparison-box-cool {
    padding-right: 26px;
    padding-left: 26px;
  }

  .comparison-box li {
    grid-template-columns: 44px 1fr 44px;
  }

  .vs-divider strong {
    width: auto;
    height: auto;
    font-size: 20px;
  }

  .timing-grid {
    gap: 16px;
  }

  .timing-card {
    min-height: 346px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .timing-card img {
    height: 146px;
  }

  .timing-card p {
    font-size: 16px;
  }

  .pricing-card-grid {
    gap: 22px;
  }

  .pricing-item {
    min-height: 198px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .pricing-item h3 {
    font-size: 20px;
  }

  .pricing-item p {
    font-size: 15px;
  }

  .pricing-cta {
    grid-template-columns: minmax(0, 1fr) 1px minmax(280px, 360px);
    gap: 32px;
    padding-right: 42px;
    padding-left: 42px;
  }

  .pricing-cta-copy p {
    font-size: 27px;
  }

  .pricing-cta-button {
    min-height: 76px;
    padding: 0 34px;
    font-size: 24px;
  }
}

@media (max-width: 1020px) {
  .lp {
    min-height: 100vh;
    overflow: visible;
  }

  .site-header {
    height: auto;
    min-height: 84px;
    padding: 20px 24px;
  }

  .global-nav {
    display: none;
  }

  .header-cta {
    min-width: 164px;
    min-height: 44px;
    padding: 0 20px;
    font-size: 15px;
  }

  .hero {
    display: grid;
    min-height: auto;
    overflow: visible;
    padding: 20px 24px 32px;
  }

  .bg-shape {
    top: 105px;
    right: -280px;
    width: 850px;
  }

  .bg-green {
    top: 360px;
    right: -180px;
    width: 560px;
    opacity: 0.42;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .price-pill {
    min-width: 0;
    min-height: 44px;
    margin-bottom: 34px;
    padding: 0 22px;
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(36px, 8vw, 62px);
    line-height: 1.42;
  }

  .hero h1.hero-headline {
    font-size: clamp(31px, 5.3vw, 44px);
    line-height: 1.48;
  }

  .hero-lead {
    max-width: 720px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.8;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .button {
    min-width: min(100%, 300px);
    min-height: 58px;
    font-size: 18px;
  }

  .phone {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    margin-top: 50px;
    transform: none;
  }

  .person {
    z-index: 4;
    top: 380px;
    right: -108px;
    width: 350px;
    height: 600px;
    opacity: 0.84;
  }

  .metrics {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .metric-card {
    min-height: 128px;
    padding: 18px 26px;
  }

  .metric-icon {
    width: 86px;
    height: 86px;
    flex-basis: 86px;
    margin-right: 28px;
  }

  .metric-icon img {
    width: 96px;
    height: 96px;
  }

  .metric-body h2 {
    font-size: 20px;
  }

  .metric-body strong {
    font-size: 56px;
  }

  .metric-body span {
    font-size: 25px;
  }

  .note {
    position: static;
    margin-top: 18px;
    text-align: right;
    font-size: 13px;
  }

  .problem-section {
    padding: 42px 18px 0;
  }

  .problem-band {
    min-height: 0;
    padding: 22px 18px 32px;
    border-radius: 22px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .problem-card {
    min-height: auto;
    padding: 24px 20px 26px;
  }

  .problem-visual {
    height: 138px;
  }

  .problem-visual img {
    height: 132px;
  }

  .solution-copy {
    margin-top: 35px;
  }

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

  .vs-divider {
    grid-template-rows: auto;
    display: flex;
    justify-content: center;
  }

  .vs-divider span {
    display: none;
  }

  .timing-lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .timing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timing-card {
    display: grid;
    grid-template-columns: 54px 116px minmax(0, 1fr);
    grid-template-areas:
      "badge image title"
      "badge image text";
    column-gap: 18px;
    row-gap: 5px;
    align-items: center;
    min-height: auto;
    padding: 18px 22px;
    text-align: left;
  }

  .timing-badge {
    grid-area: badge;
  }

  .timing-card h3 {
    grid-area: title;
    margin: 0;
  }

  .timing-card img {
    grid-area: image;
    width: 116px;
    height: 116px;
  }

  .timing-card p {
    grid-area: text;
    margin: 0;
    padding-top: 8px;
    font-size: 16px;
  }

  .service-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-flow {
    padding: 24px 18px;
  }

  .service-showcase {
    padding: 34px 22px 34px;
  }

  .service-showcase::before,
  .service-showcase::after {
    opacity: 0.34;
  }

  .service-overview {
    width: 100%;
  }

  .service-main-copy {
    font-size: 18px;
  }

  .service-main-copy br {
    display: none;
  }

  .service-stage-labels {
    width: min(100%, 660px);
  }

  .stage-pill {
    font-size: 20px;
  }

  .message-example {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    margin-top: 28px;
  }

  .service-lead br {
    display: none;
  }

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

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

  .flow-loop {
    width: 100%;
    margin-top: 16px;
  }

  .example-content {
    width: 100%;
    padding-top: 0;
  }

  .pricing-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .pricing-inner {
    padding: 42px 20px 28px;
  }

  .pricing-title {
    font-size: clamp(32px, 7vw, 48px);
  }

  .pricing-lead {
    font-size: 19px;
  }

  .pricing-included-heading {
    margin-top: 34px;
    font-size: 22px;
  }

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

  .pricing-item,
  .pricing-item-wide {
    grid-column: span 1;
    min-height: 190px;
    padding: 22px 20px;
  }

  .pricing-item h3 {
    font-size: 19px;
  }

  .pricing-item p {
    margin-top: 14px;
    font-size: 14px;
  }

  .pricing-note {
    font-size: 17px;
  }

  .pricing-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 26px 22px;
    text-align: center;
  }

  .pricing-cta::before {
    display: none;
  }

  .pricing-cta-copy,
  .pricing-cta-button {
    grid-column: 1;
    grid-row: auto;
  }

  .pricing-cta-copy p {
    font-size: 26px;
  }

  .pricing-cta-copy span {
    font-size: 17px;
  }

  .pricing-cta-button {
    width: min(100%, 360px);
  }

  .download-section,
  .booking-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .bottom-conversion-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-right: 18px;
    padding-bottom: 44px;
    padding-left: 18px;
  }

  .conversion-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 24px;
  }

  .conversion-copy h2 {
    font-size: clamp(28px, 5.2vw, 40px);
  }

  .conversion-copy p:not(.conversion-label) {
    font-size: 16px;
  }

  .booking-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 20px;
  }

  .header-cta {
    min-width: 118px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding: 16px 18px 28px;
  }

  .hero h1 {
    font-size: clamp(31px, 9.2vw, 44px);
  }

  .hero h1.hero-headline {
    font-size: clamp(28px, 5.2vw, 31px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    justify-content: space-between;
    min-width: 0;
    padding: 0 22px;
  }

  .phone {
    width: min(344px, calc(100vw - 42px));
    height: min(663px, 182vw);
    min-height: 600px;
  }

  .letter-card p {
    font-size: 30px;
  }

  .person {
    right: -170px;
    top: 430px;
    opacity: 0.48;
  }

  .metric-card {
    padding: 18px;
  }

  .metric-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    margin-right: 18px;
  }

  .metric-icon img {
    width: 82px;
    height: 82px;
  }

  .metric-body h2 {
    font-size: 17px;
  }

  .metric-body strong {
    font-size: 44px;
  }

  .metric-body span {
    font-size: 20px;
  }

  .problem-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .problem-band {
    padding: 20px 12px 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .problem-card h3 {
    font-size: 21px;
  }

  .problem-card p {
    font-size: 16px;
  }

  .solution-copy {
    font-size: 25px;
  }

  .comparison-box-hot,
  .comparison-box-cool {
    padding: 32px 14px 18px;
  }

  .box-label {
    min-width: 220px;
    font-size: 17px;
  }

  .comparison-box-cool .box-label {
    min-width: 250px;
  }

  .comparison-box h3 {
    font-size: 25px;
  }

  .comparison-box li {
    grid-template-columns: 40px 1fr 40px;
    min-height: 50px;
    font-size: 18px;
  }

  .comparison-box li span {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .vs-divider strong {
    width: auto;
    height: auto;
    font-size: 18px;
  }

  .service-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-panel {
    border-radius: 18px;
  }

  .service-title {
    font-size: 27px;
  }

  .service-showcase {
    padding: 26px 12px 22px;
  }

  .service-showcase::before,
  .service-showcase::after {
    display: none;
  }

  .service-overview {
    padding: 0;
  }

  .service-heading {
    font-size: 28px;
    line-height: 1.28;
  }

  .service-main-copy {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
  }

  .service-main-copy br {
    display: none;
  }

  .service-stage-labels {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .stage-pill {
    min-height: 44px;
    padding: 0 14px;
    font-size: 16px;
  }

  .timing-lead {
    margin-top: 22px;
    text-align: left;
    font-size: 14px;
  }

  .timing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .timing-card {
    grid-template-columns: 40px 74px minmax(0, 1fr);
    column-gap: 10px;
    padding: 14px 12px;
  }

  .timing-badge {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .timing-card h3 {
    font-size: 21px;
  }

  .timing-card img {
    width: 74px;
    height: 74px;
  }

  .timing-card p {
    padding-top: 7px;
    font-size: 13px;
    line-height: 1.55;
  }

  .timing-card p br {
    display: none;
  }

  .service-title-small {
    font-size: 24px;
  }

  .service-lead {
    font-size: 14px;
    text-align: left;
  }

  .service-feature-card {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    min-height: 0;
    padding: 22px 18px;
    text-align: center;
  }

  .service-feature-card h3 {
    font-size: 22px;
  }

  .service-feature-card p {
    font-size: 14px;
    text-align: left;
  }

  .flow-card {
    padding: 18px;
  }

  .flow-head {
    grid-template-columns: 34px 1fr;
  }

  .flow-head h3 {
    font-size: 16px;
  }

  .flow-card img {
    height: 128px;
  }

  .flow-card p,
  .flow-loop {
    font-size: 13px;
  }

  .message-example {
    margin-top: 22px;
    padding: 0;
  }

  .letter-switcher {
    gap: 6px;
  }

  .letter-switcher button {
    gap: 5px;
    min-height: 44px;
    padding: 0 5px;
    font-size: 13px;
  }

  .letter-switcher button span {
    width: 23px;
    height: 23px;
    font-size: 11px;
  }

  .phone.example-phone {
    width: min(100%, 304px);
    height: auto;
    aspect-ratio: 304 / 586;
  }

  .example-item {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 14px 12px;
  }

  .example-icon svg {
    width: 46px;
    height: 46px;
  }

  .example-item h3 {
    font-size: 16px;
  }

  .example-item p {
    font-size: 12px;
  }

  .pricing-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .pricing-inner {
    padding: 34px 12px 22px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .pricing-title span {
    font-size: 1.55em;
  }

  .pricing-lead {
    font-size: 15px;
    text-align: left;
  }

  .pricing-included-heading {
    grid-template-columns: 40px auto 40px;
    gap: 12px;
    margin-top: 28px;
    font-size: 18px;
  }

  .pricing-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-item,
  .pricing-item-wide {
    min-height: 0;
    padding: 20px 16px;
  }

  .pricing-item > span {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    font-size: 24px;
  }

  .pricing-item h3 {
    font-size: 17px;
  }

  .pricing-item p {
    font-size: 13px;
  }

  .pricing-note {
    font-size: 14px;
  }

  .pricing-cta {
    border-radius: 14px;
  }

  .pricing-cta-copy p {
    font-size: 22px;
  }

  .pricing-cta-copy span {
    font-size: 14px;
  }

  .pricing-cta-button {
    min-height: 64px;
    padding: 0 26px;
    font-size: 20px;
  }

  .download-section,
  .booking-section {
    margin-top: 22px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .bottom-conversion-grid {
    gap: 18px;
    margin-top: 22px;
    padding-right: 12px;
    padding-bottom: 34px;
    padding-left: 12px;
  }

  .booking-section {
    padding-bottom: 34px;
  }

  .conversion-inner {
    padding: 26px 14px;
    border-radius: 16px;
  }

  .conversion-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .conversion-copy h2 {
    font-size: 25px;
    line-height: 1.42;
  }

  .conversion-copy p:not(.conversion-label) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.75;
  }

  .conversion-list {
    margin-top: 18px;
  }

  .conversion-list li {
    font-size: 14px;
  }

  .conversion-form,
  .booking-panel {
    padding: 16px;
    border-radius: 14px;
  }

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

  .challenge-field {
    padding: 13px;
  }

  .conversion-button {
    min-height: 52px;
    padding: 0 18px;
    font-size: 16px;
  }

  .booking-calendar {
    padding: 14px;
  }

  .booking-calendar-head strong {
    font-size: 16px;
  }

  .booking-month-button {
    width: 34px;
    height: 34px;
  }

  .booking-weekdays,
  .booking-calendar-grid {
    gap: 3px;
  }

  .booking-day {
    border-radius: 7px;
    font-size: 12px;
  }

  .booking-slots-card {
    padding: 14px;
  }

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

  .booking-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    gap: 12px;
    padding: 28px 18px 38px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-brand .brand-mark {
    width: 32px;
    height: 32px;
  }

  .footer-links {
    max-width: 290px;
    font-size: 13px;
  }

  .footer-links button {
    min-height: 30px;
  }

  .footer-links button:not(:last-child)::after {
    margin: 0 9px;
  }

  .legal-modal {
    padding: 12px;
  }

  .legal-modal-panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 16px;
  }

  .legal-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .legal-modal-content {
    max-height: 88vh;
    padding: 30px 18px 32px;
  }

  .legal-modal-content h2 {
    margin-right: 42px;
    font-size: 24px;
  }

  .legal-document h3 {
    font-size: 16px;
  }

  .legal-document p {
    font-size: 13px;
    line-height: 1.78;
  }

  .company-list div {
    grid-template-columns: 1fr;
  }

  .company-list dt,
  .company-list dd {
    padding: 12px 14px;
    font-size: 13px;
  }

  .company-list dt {
    min-height: 0;
  }
}

@media (min-width: 1021px) {
  .lp {
    min-height: auto;
  }

  .site-header,
  .hero,
  .problem-section,
  .service-section {
    max-width: 1360px;
  }

  .site-header {
    height: 80px;
    padding: 18px 52px 10px;
  }

  .brand {
    gap: 13px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 26px;
  }

  .global-nav {
    gap: 36px;
    margin-right: 36px;
    font-size: 16px;
  }

  .header-cta {
    min-width: 176px;
    min-height: 44px;
    padding: 0 24px;
    font-size: 16px;
  }

  .hero {
    min-height: 620px;
  }

  .bg-shape {
    top: -78px;
    right: -80px;
    width: min(58vw, 820px);
  }

  .bg-green {
    top: 96px;
    right: -90px;
    width: min(36vw, 500px);
    height: 500px;
  }

  .person {
    top: -4px;
    right: -12px;
    width: 360px;
    height: 640px;
  }

  .hero-copy {
    width: min(52vw, 680px);
    padding: 28px 0 0 52px;
  }

  .price-pill {
    min-width: 254px;
    min-height: 44px;
    margin-bottom: 40px;
    padding: 0 26px;
    font-size: 21px;
  }

  .hero h1.hero-headline {
    font-size: clamp(32px, 2.38vw, 40px);
    line-height: 1.45;
  }

  .hero-lead {
    max-width: 640px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.78;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 26px;
  }

  .button {
    gap: 18px;
    min-width: 264px;
    min-height: 58px;
    padding: 0 24px;
    font-size: 20px;
  }

  .button-icon {
    width: 24px;
    height: 24px;
  }

  .phone {
    top: 10px;
    left: 53.2%;
    transform: scale(0.76);
    transform-origin: top left;
  }

  .metrics {
    right: 52px;
    bottom: 32px;
    left: 52px;
    gap: 16px;
  }

  .metric-card {
    min-height: 126px;
    padding: 18px 28px;
  }

  .metric-icon {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
    margin-right: 34px;
  }

  .metric-icon img {
    width: 94px;
    height: 94px;
  }

  .metric-body h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .metric-body strong {
    font-size: 56px;
  }

  .metric-body span {
    font-size: 25px;
  }

  .note {
    right: 54px;
    bottom: 4px;
    font-size: 13px;
  }

  .problem-section {
    padding: 76px 18px 0;
  }

  .problem-band {
    min-height: 430px;
    padding: 30px 42px 38px;
    border-radius: 24px;
  }

  .section-title {
    font-size: clamp(30px, 2vw, 36px);
  }

  .section-title span {
    margin-top: 10px;
  }

  .problem-cards {
    gap: 22px;
    margin-top: 24px;
  }

  .problem-card {
    min-height: 342px;
    padding: 18px 22px 24px;
    border-radius: 20px;
  }

  .problem-visual {
    height: 118px;
  }

  .problem-visual img {
    height: 112px;
  }

  .problem-card h3 {
    margin: 8px 0 14px;
    font-size: clamp(20px, 1.4vw, 24px);
    line-height: 1.45;
  }

  .problem-card p {
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.72;
  }

  .solution-copy {
    margin: 68px 0 34px;
    font-size: clamp(25px, 1.75vw, 31px);
  }

  .comparison {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    gap: 24px;
    width: min(100%, 1180px);
  }

  .comparison-box {
    min-height: 280px;
  }

  .comparison-box-hot {
    padding: 30px 30px 20px;
  }

  .comparison-box-cool {
    padding: 36px 34px 22px;
  }

  .box-label {
    top: -17px;
    min-width: 242px;
    font-size: 19px;
  }

  .comparison-box-cool .box-label {
    min-width: 270px;
  }

  .box-icon,
  .box-icon svg {
    width: 48px;
    height: 48px;
  }

  .comparison-box h3 {
    margin-bottom: 13px;
    font-size: clamp(24px, 1.6vw, 29px);
  }

  .comparison-box ul {
    gap: 7px;
    grid-template-rows: repeat(3, 58px);
  }

  .comparison-box li {
    grid-template-columns: 46px 1fr 46px;
    min-height: 0;
    height: 58px;
    font-size: clamp(18px, 1.22vw, 22px);
  }

  .comparison-box-cool {
    justify-content: flex-start;
    padding-top: 130px;
  }

  .comparison-box li span {
    width: 29px;
    height: 29px;
    font-size: 18px;
  }

  .service-section {
    margin-top: 90px;
    padding: 0 18px 32px;
  }

  .service-showcase {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 42px;
    align-items: start;
    width: 100%;
    padding: 42px 48px 42px;
  }

  .service-showcase::before {
    top: 42px;
    left: 40px;
  }

  .service-showcase::after {
    top: 112px;
    right: 42px;
  }

  .service-heading {
    font-size: clamp(34px, 3.1vw, 44px);
  }

  .service-overview {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .service-main-copy {
    margin-top: 16px;
    font-size: 18px;
  }

  .service-stage-labels {
    width: min(100%, 660px);
    margin: 20px 0 0;
  }

  .stage-pill {
    min-height: 50px;
    font-size: 20px;
  }

  .message-example {
    display: contents;
  }

  .phone.example-phone {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 342px;
    height: 660px;
    padding: 25px 18px 18px;
    border-width: 7px;
    border-radius: 48px;
  }

  .phone.example-phone::before {
    width: 110px;
    height: 29px;
  }

  .example-phone .phone-status {
    height: 22px;
    font-size: 13px;
  }

  .example-phone .phone-screen {
    height: calc(100% - 22px);
    padding: 16px 10px 16px;
  }

  .example-phone .letter-card {
    height: 88px;
  }

  .example-phone .letter-card p {
    font-size: 28px;
  }

  .example-phone .message-box p {
    font-size: 11px;
    line-height: 1.68;
  }

  .example-content {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    padding-top: 28px;
  }

  .example-list {
    gap: 12px;
  }

  .example-item {
    grid-template-columns: 74px 1fr;
    gap: 18px;
    min-height: 92px;
    padding: 14px 22px;
  }

  .example-icon svg {
    width: 54px;
    height: 54px;
  }

  .example-item h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .example-item p {
    font-size: 13px;
  }

  .pricing-section {
    max-width: 1360px;
    margin-top: 90px;
  }
}
