:root {
  --yellow: #ffd814;
  --yellow-soft: #fff6b8;
  --yellow-pale: #fffcef;
  --black: #121212;
  --ink: #222222;
  --gray-700: #575757;
  --gray-500: #868686;
  --gray-300: #dcdcdc;
  --gray-200: #ececec;
  --gray-100: #f6f6f3;
  --white: #ffffff;
  --container: 1200px;
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 80px rgba(18, 18, 18, 0.12);
  --shadow-card: 0 16px 42px rgba(18, 18, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

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

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

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

.section {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img,
.footer-brand img {
  width: 196px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 16px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-cta {
  padding: 12px 20px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 940px;
  padding: 164px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 216, 20, 0.29), transparent 31%),
    linear-gradient(180deg, #fffef7 0%, #ffffff 74%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

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

.hero-orb-one {
  width: 430px;
  height: 430px;
  right: -190px;
  top: 130px;
  border: 90px solid rgba(255, 216, 20, 0.22);
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 80px;
  background: rgba(255, 216, 20, 0.16);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.88fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow span {
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: var(--yellow);
}

.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(58px, 6.6vw, 102px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 5px;
  left: -4px;
  height: 25%;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--gray-700);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.85;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 2px solid var(--black);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--black);
}

.button-primary:hover {
  box-shadow: 7px 7px 0 var(--black);
}

.button-secondary {
  background: var(--white);
}

.button-secondary:hover {
  background: var(--gray-100);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.hero-proof {
  display: flex;
  align-items: stretch;
  margin-top: 58px;
}

.hero-proof div {
  min-width: 150px;
  padding: 0 24px;
  border-left: 1px solid var(--gray-300);
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--black);
  font-size: 24px;
  font-weight: 900;
}

.hero-proof span {
  margin-top: 2px;
  color: var(--gray-500);
  font-size: 16px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, 0.25);
}

.phone-shell {
  position: relative;
  width: min(330px, 82vw);
  padding: 12px;
  border: 3px solid var(--black);
  border-radius: 44px;
  background: var(--black);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.phone-shell img {
  width: 100%;
  aspect-ratio: 540 / 998;
  object-fit: cover;
  object-position: top;
  border-radius: 31px;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 50%;
  width: 88px;
  height: 21px;
  border-radius: 99px;
  background: var(--black);
  transform: translateX(-50%);
}

.phone-main {
  z-index: 2;
  width: 338px;
  transform: rotate(2deg);
}

.visual-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  padding: 15px 17px;
  border: 2px solid var(--black);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--black);
}

.visual-badge strong,
.visual-badge small {
  display: block;
}

.visual-badge strong {
  font-size: 16px;
}

.visual-badge small {
  margin-top: 2px;
  color: var(--gray-500);
  font-size: 16px;
}

.badge-top {
  top: 92px;
  left: -40px;
  transform: rotate(-3deg);
}

.badge-bottom {
  right: -44px;
  bottom: 86px;
  transform: rotate(2.5deg);
}

.status-dot {
  width: 14px;
  height: 14px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px var(--yellow-soft);
}

.badge-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--black);
  background: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 64px;
  padding: 20px 24px;
  border-block: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
}

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

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

.section-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-heading h2 span,
.outcome h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.section-heading h2 span::after,
.outcome h2 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 4px;
  left: -3px;
  height: 23%;
  background: var(--yellow);
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--gray-700);
  font-size: 18px;
}

.centered {
  text-align: center;
}

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

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

.split-heading > p {
  margin: 0 0 6px;
  color: var(--gray-700);
  font-size: 18px;
}

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

.value-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.value-card.featured {
  background: var(--yellow);
  border-color: var(--black);
  box-shadow: 8px 8px 0 var(--black);
}

.value-number {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(18, 18, 18, 0.22);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.value-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border: 2px solid var(--black);
  border-radius: 18px;
  background: var(--yellow);
}

.value-card.featured .value-icon {
  background: var(--white);
}

.value-icon svg {
  width: 30px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 26px;
  font-weight: 900;
}

.value-card p {
  margin: 12px 0 0;
  color: var(--gray-700);
  font-size: 16px;
}

.value-card.featured p {
  color: rgba(18, 18, 18, 0.72);
}

.workflow {
  position: relative;
  background: var(--white);
}

.feature-list {
  display: grid;
  gap: 34px;
}

.feature-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: 70px;
  min-height: 680px;
  padding: 58px 72px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--gray-100);
  overflow: hidden;
}

.feature-row::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255, 216, 20, 0.18);
}

.feature-row.reverse {
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 0.92fr);
}

.feature-row.reverse .feature-copy {
  grid-column: 2;
}

.feature-row.reverse .feature-visual {
  grid-column: 1;
  grid-row: 1;
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-index {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-copy h3 {
  margin: 22px 0 0;
  color: var(--black);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.feature-copy > p {
  margin: 20px 0 0;
  color: var(--gray-700);
  font-size: 18px;
}

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

.feature-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
}

.feature-points li::before {
  content: "✓";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
}

.feature-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.feature-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--yellow);
}

.feature-visual .phone-shell {
  width: 290px;
  transform: rotate(1.6deg);
}

.reverse .feature-visual .phone-shell {
  transform: rotate(-1.6deg);
}

.visual-label {
  position: absolute;
  z-index: 5;
  top: 9%;
  right: -4%;
  padding: 9px 13px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--black);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(5deg);
}

.reverse .visual-label {
  right: auto;
  left: -4%;
  transform: rotate(-5deg);
}

.outcome {
  color: var(--white);
  background: var(--black);
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.65);
}

.outcome h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: -0.045em;
}

.outcome-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  overflow: hidden;
}

.outcome-grid div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.outcome-grid div:nth-child(2n) {
  border-right: 0;
}

.outcome-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.outcome-grid strong {
  color: var(--yellow);
  font-size: 28px;
  font-weight: 900;
}

.outcome-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.pricing {
  background: var(--yellow-pale);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 1020px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 42px;
  border: 2px solid var(--black);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(18, 18, 18, 0.14);
}

.price-card.recommended {
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--black);
}

.recommended-label {
  position: absolute;
  top: 0;
  right: 34px;
  padding: 8px 16px;
  border-radius: 0 0 14px 14px;
  color: var(--white);
  background: var(--black);
  font-size: 16px;
  font-weight: 800;
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.plan-badge {
  padding: 7px 11px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.plan-badge.dark {
  color: var(--white);
  background: var(--black);
}

.plan-users {
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 700;
}

.price-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
}

.plan-copy {
  min-height: 58px;
  margin: 13px 0 0;
  color: var(--gray-700);
  font-size: 16px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin: 34px 0 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.16);
}

.price small {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
}

.price strong {
  color: var(--black);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.price span {
  margin-bottom: 6px;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 700;
}

.plan-list {
  display: grid;
  gap: 13px;
  min-height: 205px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
}

.plan-list li::before {
  content: "✓";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 900;
}

.recommended .plan-list li::before {
  background: var(--white);
}

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

.pricing-note {
  margin: 32px 0 0;
  color: var(--gray-500);
  text-align: center;
  font-size: 16px;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 60px;
  padding: 68px;
  border: 2px solid var(--black);
  border-radius: 34px;
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--black);
  overflow: hidden;
}

.contact-card::after {
  content: "P";
  position: absolute;
  right: 1%;
  bottom: -26%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 280px;
  font-weight: 900;
  line-height: 1;
}

.contact-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.contact-side {
  position: relative;
  z-index: 2;
}

.contact-side p {
  margin: 0 0 25px;
  color: rgba(18, 18, 18, 0.7);
  font-size: 17px;
}

.site-footer {
  padding: 55px 0 30px;
  color: var(--white);
  background: var(--black);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-brand img {
  width: 196px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 16px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr 390px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 82px);
  }

  .badge-top {
    left: -80px;
  }

  .badge-bottom {
    right: -35px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    padding: 50px;
  }

  .feature-row.reverse .feature-copy {
    grid-column: 2;
  }

  .feature-row.reverse .feature-visual {
    grid-column: 1;
  }

  .outcome-layout {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 92px 0;
  }

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

  .brand img {
    width: 172px;
  }

  .nav-toggle-label {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 2px solid var(--black);
    border-radius: 12px;
    background: var(--yellow);
    cursor: pointer;
  }

  .nav-toggle-label span {
    height: 2px;
    border-radius: 99px;
    background: var(--black);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .main-nav .nav-cta {
    margin-top: 10px;
    padding: 13px 20px;
    border-bottom: 2px solid var(--black);
    text-align: center;
  }

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

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 130px;
  }

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

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

  .hero-visual {
    min-height: 620px;
  }

  .badge-top {
    left: 5%;
  }

  .badge-bottom {
    right: 4%;
  }

  .split-heading,
  .outcome-layout,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading {
    align-items: start;
  }

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

  .value-card {
    min-height: 280px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 56px;
    padding: 50px 40px;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-row.reverse .feature-visual {
    order: 2;
  }

  .outcome-grid {
    max-width: 640px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .plan-copy,
  .plan-list {
    min-height: 0;
  }
}

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

  .section {
    padding: 76px 0;
  }

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

  .brand img {
    width: 154px;
  }

  .nav-toggle-label {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 112px 0 42px;
  }

  .hero-grid {
    background-size: 30px 30px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 66px);
    letter-spacing: -0.05em;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }

  .hero-proof div {
    min-width: 0;
    padding: 0 10px;
    text-align: center;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 11px;
  }

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

  .hero-visual::before {
    width: 330px;
    height: 330px;
  }

  .phone-main {
    width: 270px;
  }

  .visual-badge {
    min-width: 210px;
    padding: 12px 14px;
  }

  .badge-top {
    top: 48px;
    left: -2%;
  }

  .badge-bottom {
    right: -2%;
    bottom: 48px;
  }

  .hero-strip {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding-inline: 4px;
    font-size: 11px;
  }

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

  .section-heading h2,
  .outcome h2,
  .contact-card h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .centered {
    text-align: left;
  }

  .centered .eyebrow {
    justify-content: flex-start;
  }

  .section-heading > p:not(.eyebrow) {
    margin-inline: 0;
    font-size: 16px;
  }

  .split-heading {
    gap: 26px;
  }

  .split-heading > p {
    font-size: 16px;
  }

  .value-card {
    min-height: 260px;
    padding: 28px;
  }

  .value-icon {
    margin-bottom: 42px;
  }

  .feature-list {
    gap: 20px;
  }

  .feature-row,
  .feature-row.reverse {
    gap: 44px;
    padding: 36px 22px 42px;
    border-radius: 26px;
  }

  .feature-copy h3 {
    font-size: 34px;
  }

  .feature-copy > p {
    font-size: 16px;
  }

  .feature-visual::before {
    width: 290px;
    height: 290px;
  }

  .feature-visual .phone-shell {
    width: 250px;
  }

  .visual-label,
  .reverse .visual-label {
    top: 6%;
    right: -1%;
    left: auto;
  }

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

  .outcome-grid div,
  .outcome-grid div:nth-child(2n),
  .outcome-grid div:nth-last-child(-n + 2) {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .outcome-grid div:last-child {
    border-bottom: 0;
  }

  .price-card {
    padding: 32px 24px;
  }

  .price-card h3 {
    font-size: 34px;
  }

  .price strong {
    font-size: 52px;
  }

  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-card {
    padding: 40px 24px;
    border-radius: 26px;
  }

  .contact-card::after {
    right: -14%;
    bottom: -10%;
    font-size: 190px;
  }

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

  .footer-links {
    gap: 18px;
  }
}

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

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