:root {
  --blue: #73a9ff;
  --blue-dark: #4f8fe8;
  --ink: #17130f;
  --muted: #6f6258;
  --soft: #f6efe7;
  --bubble: #f2ede7;
  --line: rgba(77, 55, 38, 0.12);
  --accent: #9d6840;
  --rose: #e39a92;
  --paper: #fffaf4;
  --surface: rgba(255, 253, 250, 0.78);
  --surface-strong: rgba(255, 250, 244, 0.94);
  --shadow: 0 24px 80px rgba(70, 43, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fffdf9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: -18%;
  z-index: -3;
  content: "";
  background:
    radial-gradient(ellipse at 92% 12%, rgba(186, 128, 72, 0.18) 0%, rgba(186, 128, 72, 0.08) 34%, transparent 64%),
    radial-gradient(ellipse at 72% 74%, rgba(130, 82, 45, 0.1) 0%, rgba(130, 82, 45, 0.05) 32%, transparent 68%),
    radial-gradient(ellipse at 18% 20%, rgba(223, 185, 134, 0.16) 0%, rgba(223, 185, 134, 0.07) 35%, transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 42%, #fbf1e6 100%);
  filter: blur(28px) saturate(1.04);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.04);
  animation: mesh-drift 16s ease-in-out infinite alternate;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 246, 235, 0.26));
  pointer-events: none;
}

@keyframes mesh-drift {
  0% {
    transform: translate3d(-2.5%, -1.5%, 0) scale(1.08) rotate(0deg);
  }

  50% {
    transform: translate3d(2%, 1%, 0) scale(1.12) rotate(5deg);
  }

  100% {
    transform: translate3d(-1%, 2.5%, 0) scale(1.1) rotate(-4deg);
  }
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 14px;
  left: 50%;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(77, 55, 38, 0.1);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(70, 43, 20, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-self: end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.site-nav a:hover,
.footer a:hover {
  color: var(--ink);
}

.brand,
.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-weight: 760;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(17, 19, 25, 0.08);
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 640;
}

.nav-cta {
  justify-self: end;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #17130f;
  background: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  overflow: hidden;
  padding: 118px max(28px, calc((100vw - 1120px) / 2)) 86px;
  text-align: left;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: transparent;
}

.hero::after {
  content: none;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 7.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: normal;
}

.hero-subtitle {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 780;
}

.hero-actions a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-actions .availability-pill {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none !important;
  background: #1688f7;
  box-shadow: 0 14px 40px rgba(22, 136, 247, 0.2);
}

.hero-product {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  border: 1px solid rgba(77, 55, 38, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 250, 0.82);
  box-shadow: 0 30px 90px rgba(70, 43, 20, 0.14);
  backdrop-filter: blur(14px);
}

.hero-product::before {
  position: absolute;
  inset: auto 28px -18px;
  height: 30px;
  border-radius: 50%;
  content: "";
  background: rgba(23, 19, 15, 0.16);
  filter: blur(22px);
}

.demo-screen {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 246, 0.96));
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.demo-header img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 1px 5px rgba(17, 19, 25, 0.1);
}

.demo-header strong,
.demo-header span {
  display: block;
}

.demo-header strong {
  font-size: 21px;
  line-height: 1;
}

.demo-header span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.demo-thread {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px 18px 18px;
}

.bubble {
  max-width: 92%;
  margin: 0;
  box-shadow: 0 10px 30px rgba(70, 43, 20, 0.08);
}

.shared-photo-line {
  align-self: center;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.bubble {
  padding: 13px 16px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 680;
  line-height: 1.22;
}

.bubble.maddy {
  align-self: flex-start;
  color: var(--ink);
  background: #f0eef3;
}

.bubble.user {
  align-self: flex-end;
  color: #ffffff;
  background: #1688f7;
}

.bubble.done {
  border: 0;
  background: #f0eef3;
}

.demo-composer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
}

.composer-plus,
.composer-send {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 760;
}

.composer-plus {
  color: var(--ink);
  background: #f0eef3;
}

.composer-input {
  min-width: 0;
  padding: 11px 14px;
  overflow: hidden;
  border: 1px solid rgba(77, 55, 38, 0.1);
  border-radius: 999px;
  color: #9b938c;
  background: #ffffff;
  font-size: 15px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.composer-send {
  color: #ffffff;
  background: #1688f7;
  font-size: 21px;
}

.info-card,
.plan-card,
.faq-list article,
.support-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.68);
  box-shadow: 0 18px 50px rgba(70, 43, 20, 0.08);
  backdrop-filter: blur(12px);
}

.info-card h2,
.plan-card h2,
.faq-list h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.03;
}

.info-card p,
.plan-card li,
.plan-card .plan-price,
.plan-card span,
.faq-list p,
.support-form label,
.support-form input,
.support-form select,
.support-form textarea,
.page-hero p {
  color: var(--muted);
}

.info-card p,
.faq-list p {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.home-section {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto 96px;
  scroll-margin-top: 96px;
}

.home-section .section-heading {
  max-width: 820px;
}

.home-section .section-heading p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.24;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.how-steps article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.68);
  box-shadow: 0 18px 50px rgba(70, 43, 20, 0.08);
  backdrop-filter: blur(12px);
}

.how-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #1688f7;
  font-weight: 850;
}

.how-steps h3 {
  font-size: clamp(21px, 2.2vw, 29px);
}

.how-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.detail-section {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto 96px;
}

.detail-section .section-heading {
  max-width: 790px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.detail-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.62);
  box-shadow: 0 18px 50px rgba(70, 43, 20, 0.07);
  backdrop-filter: blur(12px);
}

.detail-grid h3 {
  font-size: clamp(23px, 2.7vw, 34px);
}

.detail-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.home-faq-list {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.home-faq-list h3 {
  font-size: clamp(21px, 2.2vw, 29px);
}

.hero-byline {
  margin: 24px 0 0;
  color: #d9d2c6;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.signup-form {
  display: flex;
  width: min(100%, 520px);
  min-height: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.signup-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 22px;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.signup-form button {
  flex: 0 0 auto;
  border: 0;
  padding: 0 22px;
  color: #11100d;
  background: var(--blue);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.form-note {
  max-width: 530px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.trust-strip {
  display: grid;
  width: min(1120px, calc(100% - 56px));
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(247, 239, 228, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.trust-strip p {
  margin: 0;
  padding: 20px 14px;
  background: rgba(247, 239, 228, 0.08);
  text-align: center;
  font-weight: 760;
}

.section {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  padding: 94px 0;
}

.section-heading {
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}

.steps,
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.steps article,
.plans article {
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  color: #17130f;
  background: var(--accent);
  font-weight: 800;
}

.steps p,
.use-list p,
.privacy p,
.plans p,
.plans span {
  color: var(--muted);
}

.how-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
  align-items: center;
  gap: 42px;
  margin-top: 56px;
}

.how-showcase-copy {
  max-width: 560px;
}

.how-showcase-copy h3 {
  max-width: 520px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}

.how-showcase-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.split-section,
.privacy {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.use-list p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
}

.privacy {
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy p {
  margin: 0;
  font-size: 23px;
  line-height: 1.35;
}

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

.plans article {
  min-height: 300px;
}

.plans strong {
  display: block;
  margin: 56px 0 8px;
  font-size: 34px;
  line-height: 1;
}

.featured-plan {
  color: var(--ink);
  background: var(--surface-strong) !important;
}

.featured-plan p,
.featured-plan span {
  color: var(--muted);
}

.footer {
  display: flex;
  width: min(1120px, calc(100% - 56px));
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.standard-page {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.page-hero {
  max-width: 850px;
  margin-bottom: 36px;
}

.page-hero h1 {
  white-space: normal;
  font-size: clamp(54px, 7.6vw, 104px);
  line-height: 0.9;
}

.support-hero {
  max-width: 1120px;
}

.support-hero h1 {
  font-size: clamp(64px, 7vw, 96px);
  white-space: nowrap;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.2;
}

.page-hero a,
.info-card a {
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.faq-list article {
  padding: 26px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.plan-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
}

.plan-card.featured {
  background: rgba(255, 247, 237, 0.86);
}

.plan-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.plan-price {
  margin: 14px 0 0;
  font-size: 22px;
  font-weight: 820;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding-left: 20px;
}

.plan-card span {
  margin-top: auto;
  font-weight: 760;
}

.info-card {
  padding: 28px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 16px;
  align-items: start;
}

.support-side {
  display: grid;
  gap: 16px;
}

.support-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.support-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 760;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.support-form textarea {
  resize: vertical;
}

.support-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fffaf4;
  background: #1688f7;
  font: inherit;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(22, 136, 247, 0.16);
}

.support-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note-error {
  color: #9b2f20;
}

.footer span {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-credit {
  flex-basis: 100%;
  margin: -18px 0 0;
  color: rgba(111, 98, 88, 0.76);
  font-size: 11px;
  line-height: 1.45;
}

.policy-page {
  width: min(900px, calc(100% - 56px));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.policy-content {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.policy-content h1 {
  white-space: normal;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.92;
}

.policy-content h2 {
  margin: 44px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.policy-content p {
  margin: 14px 0 0;
}

.policy-content .policy-date {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 680;
  line-height: 1.35;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-content a {
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .site-nav {
    justify-self: start;
    gap: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 56px;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-subtitle {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-product {
    width: min(100%, 430px);
  }

  .trust-strip,
  .detail-grid,
  .how-steps,
  .home-faq-list,
  .pricing-grid,
  .support-layout,
  .steps,
  .how-showcase,
  .plans,
  .split-section,
  .privacy {
    grid-template-columns: 1fr;
  }

  .how-showcase {
    gap: 34px;
    margin-top: 42px;
  }

  .trust-strip {
    border-radius: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .detail-section {
    margin-bottom: 70px;
  }

  .home-section {
    margin-bottom: 70px;
  }
}

@media (max-width: 540px) {
  .site-header,
  .trust-strip,
  .section,
  .home-section,
  .detail-section,
  .standard-page,
  .footer {
    width: calc(100% - 32px);
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(43px, 14vw, 64px);
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .hero-product {
    width: 100%;
    border-radius: 24px;
  }

  .demo-screen {
    border-radius: 24px;
  }

  .demo-header {
    padding: 14px;
  }

  .demo-header img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .demo-header strong {
    font-size: 19px;
  }

  .demo-thread {
    gap: 9px;
    padding: 14px;
  }

  .shared-photo-line {
    font-size: 14px;
  }

  .bubble {
    padding: 11px 13px;
    border-radius: 17px;
    font-size: 16px;
  }

  .demo-composer {
    gap: 8px;
    padding: 12px;
  }

  .composer-plus,
  .composer-send {
    width: 31px;
    height: 31px;
  }

  .composer-input {
    padding: 10px 12px;
    font-size: 15px;
  }

  .hero-copy {
    width: min(100%, 358px);
    min-width: 0;
    max-width: 358px;
  }

  .hero-subtitle {
    max-width: 358px;
    font-size: 22px;
    line-height: 1.12;
  }

  .form-note {
    max-width: 358px;
  }

  .signup-form {
    width: min(100%, 358px);
    min-height: auto;
    flex-direction: column;
    border-radius: 22px;
  }

  .signup-form input,
  .signup-form button {
    min-height: 52px;
  }

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

  .how-showcase-copy p:last-child {
    font-size: 18px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .policy-page {
    width: calc(100% - 32px);
    padding-top: 112px;
  }

  .standard-page {
    padding-top: 136px;
  }

  .page-hero h1 {
    font-size: clamp(46px, 17vw, 72px);
  }

  .support-hero h1 {
    white-space: normal;
  }

  .page-hero p:last-child {
    font-size: 21px;
  }

  .how-steps article,
  .info-card,
  .plan-card,
  .faq-list article,
  .support-form {
    padding: 20px;
  }
}
