:root {
  color-scheme: light;
  --green: #0f6b4f;
  --green-dark: #0a3d31;
  --mint: #dff7ed;
  --ink: #10221d;
  --muted: #66756f;
  --line: #dfe8e4;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --orange: #d96c2c;
  --red: #c9473c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f7fbf8 0%, #edf5f1 42%, #ffffff 100%);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(15, 107, 79, .13);
  border-radius: 20px;
  box-shadow: 0 14px 44px rgba(13, 62, 45, .08);
  backdrop-filter: blur(16px);
}

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

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 107, 79, .24);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.site-nav .header-cta {
  background: var(--green);
  color: #fff;
}

.site-nav .header-cta:hover {
  background: var(--green-dark);
  color: #fff;
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  background: var(--green);
  color: #fff;
  border-radius: 16px;
}

.user-chip[hidden] {
  display: none;
}

.user-chip:hover {
  background: var(--green-dark);
  color: #fff;
}

.user-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.user-info small {
  max-width: 150px;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-info strong {
  font-size: 13px;
}

.hero,
.features-section,
.product-section,
.how-section,
.audience-section,
.faq-section,
.plans-section,
.final-cta {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 70px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.secondary-btn,
.plan-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
}

.primary-btn {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 107, 79, .22);
}

.secondary-btn {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-dark);
}

.hero-stats {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.hero-stats span {
  padding: 10px 12px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(15, 107, 79, .12);
  border-radius: 14px;
}

.hero-stats strong {
  color: var(--ink);
}

.app-preview {
  position: relative;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 107, 79, .12);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(14, 60, 47, .18);
  overflow: hidden;
}

.real-preview {
  width: min(430px, 100%);
  padding: 0;
  background: #f0f8f4;
  border-radius: 32px;
  overflow: hidden;
}

.app-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 170px;
  background: linear-gradient(135deg, #0f6b4f, #1b9d72);
}

.real-preview::before {
  height: 305px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .2), transparent 24%),
    linear-gradient(135deg, var(--green-dark), var(--green));
}

.preview-month-bar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 10px;
  color: #fff;
}

.preview-month-bar span {
  min-width: 160px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.preview-month-bar button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.preview-balance-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 0 18px 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.preview-balance-row::-webkit-scrollbar {
  display: none;
}

.preview-balance-row.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.preview-balance-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.preview-balance-viewport::after {
  content: "";
  position: absolute;
  inset: 0 0 10px auto;
  width: 38px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(10, 61, 49, .64));
}

.balance-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.balance-head span {
  width: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 900;
}

.balance-head a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.real-preview .balance-panel {
  flex: 0 0 260px;
  min-height: 194px;
  margin-top: 0;
  padding: 18px;
  border-radius: 22px;
  scroll-snap-align: start;
}

.real-preview .balance-panel small {
  font-size: 12px;
  font-weight: 750;
}

.real-preview .balance-panel strong {
  max-width: 210px;
  margin: 10px 0 16px;
  font-size: 36px;
  line-height: 1.05;
}

.real-preview .balance-panel em {
  display: inline-grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.real-preview .balance-panel em b {
  color: var(--green-dark);
  font-size: 10px;
  text-transform: uppercase;
}

.preview-card-panel {
  flex: 0 0 158px;
  min-height: 194px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  scroll-snap-align: start;
}

.preview-card-panel span,
.preview-card-panel small {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 800;
}

.preview-card-panel strong {
  display: block;
  margin: 72px 0 8px;
  color: #fff;
  font-size: 20px;
}

.real-preview .preview-grid {
  position: relative;
  z-index: 1;
  margin: 22px 14px 0;
}

.real-preview .preview-grid div {
  min-height: 94px;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(14, 60, 47, .08);
}

.real-preview .preview-grid strong {
  font-size: 19px;
}

.preview-due-card {
  position: relative;
  z-index: 1;
  margin: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(14, 60, 47, .08);
}

.preview-due-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.preview-due-card strong,
.preview-due-card a {
  font-size: 12px;
  font-weight: 900;
}

.preview-due-card a {
  color: var(--green);
}

.preview-due-card p {
  margin: 0;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.preview-bottom-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 12px 12px;
  background: rgba(255, 255, 255, .96);
}

.preview-bottom-nav span {
  color: #65756f;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.preview-bottom-nav span:first-child {
  padding: 12px 6px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
}

.preview-bottom-nav strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -28px auto 0;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 16px 28px rgba(15, 107, 79, .22);
}

.preview-top,
.balance-panel,
.preview-grid,
.mini-chart,
.due-list {
  position: relative;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 800;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 12px;
}

.balance-panel {
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px;
  color: #fff;
}

.balance-panel span,
.balance-panel small {
  display: block;
  opacity: .84;
}

.balance-panel strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 36px;
  line-height: 1;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.preview-grid div,
.due-list,
.mini-chart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.preview-grid div {
  padding: 14px;
}

.preview-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.income {
  color: var(--green);
}

.expense {
  color: var(--red);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 10px;
  padding: 18px;
}

.mini-chart span {
  flex: 1;
  min-width: 20px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #1b9d72, #dff7ed);
}

.due-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
}

.due-list div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
}

.due-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: var(--red);
}

.dot.green {
  background: var(--green);
}

.features-section,
.product-section,
.how-section,
.audience-section,
.faq-section,
.plans-section,
.final-cta {
  padding: 76px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.features-grid article {
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(15, 48, 36, .06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 28px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.features-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.features-grid p,
.product-panel p,
.steps-grid p,
.audience-list p,
.faq-list p,
.plan-card p,
.final-cta p {
  color: var(--muted);
  line-height: 1.55;
}

.product-section {
  padding-top: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) repeat(3, minmax(180px, .7fr));
  gap: 14px;
  align-items: stretch;
}

.product-panel,
.steps-grid article,
.audience-list article,
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(15, 48, 36, .06);
}

.product-panel {
  padding: 22px;
}

.product-panel-main {
  min-height: 270px;
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  overflow: hidden;
}

.panel-topline,
.panel-summary,
.panel-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-topline span,
.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: inherit;
  font-size: 12px;
  font-weight: 900;
}

.panel-summary {
  align-items: stretch;
}

.panel-summary div {
  flex: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
}

.panel-summary span,
.panel-list span {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 800;
}

.panel-summary strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
}

.panel-list {
  display: grid;
  gap: 8px;
}

.panel-list span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
}

.panel-list i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f08a28;
}

.panel-list strong {
  color: #fff;
}

.product-icon {
  margin-bottom: 34px;
  background: var(--mint);
  color: var(--green);
}

.product-panel h3,
.steps-grid h3,
.audience-list h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: steps;
}

.steps-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;
}

.steps-grid article span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
}

.audience-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

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

.audience-list article {
  padding: 20px;
}

.faq-section {
  padding-top: 40px;
}

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

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 18px;
}

.faq-list a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
}

.plans-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.plans-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(15, 48, 36, .07);
  transform: scale(.96);
  opacity: .76;
  transition: transform .45s ease, opacity .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.plan-card.is-active {
  transform: translateY(-12px) scale(1);
  opacity: 1;
  border-color: rgba(15, 107, 79, .45);
  box-shadow: 0 28px 70px rgba(15, 80, 59, .18);
}

.plan-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f0fbf5 100%);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #10221d;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}

.plan-head span {
  font-size: 26px;
  font-weight: 900;
}

.plan-head strong {
  color: var(--green);
  font-size: 30px;
}

.plan-head strong small {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 26px;
  color: #334740;
  line-height: 1.38;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 4px #fff;
  border: 2px solid var(--green);
}

.plan-card a {
  margin-top: auto;
  background: var(--green);
  color: #fff;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(15, 48, 36, .07);
}

.plan-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.plan-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b7c8c0;
  cursor: pointer;
}

.plan-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--green);
}

.final-cta {
  margin-bottom: 70px;
  padding: 48px;
  background: var(--green-dark);
  border-radius: 28px;
  color: #fff;
}

.final-cta p {
  max-width: 560px;
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, .78);
}

.final-cta .primary-btn {
  background: #fff;
  color: var(--green-dark);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 800;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

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

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 54px auto 72px;
}

.legal-card {
  padding: 34px;
  border: 1px solid rgba(15, 107, 79, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(14, 60, 47, .12);
}

.legal-card h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: .98;
  letter-spacing: 0;
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-note {
  display: inline-flex;
  margin: 10px 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 107, 79, .14);
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.legal-contact {
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}

.legal-contact a {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .app-preview {
    max-width: 520px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .audience-section {
    grid-template-columns: 1fr;
  }

  .product-panel-main {
    min-height: 250px;
  }

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

  .plans-carousel {
    overflow: hidden;
  }

  .plan-card {
    display: none;
  }

  .plan-card.is-active {
    display: flex;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 20px);
    border-radius: 16px;
  }

  .brand span:last-child,
  .site-nav a:not(.login-link):not(.header-cta):not(.user-chip) {
    display: none;
  }

  .site-nav .user-chip {
    display: inline-flex;
  }

  .site-nav .user-chip[hidden] {
    display: none;
  }

  .user-info {
    display: none;
  }

  .site-nav {
    gap: 4px;
  }

  .hero,
  .features-section,
  .product-section,
  .how-section,
  .audience-section,
  .faq-section,
  .plans-section,
  .final-cta,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 46px;
    gap: 34px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 17px;
  }

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

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

  .panel-summary {
    display: grid;
  }

  .product-section,
  .how-section,
  .audience-section,
  .faq-section {
    padding: 48px 0;
  }

  .plans-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

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

  .plan-card {
    min-height: 540px;
    padding: 20px;
  }

  .plan-head {
    display: block;
  }

  .plan-head strong {
    display: block;
    margin-top: 8px;
  }

  .final-cta {
    padding: 32px 22px;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    display: grid;
    justify-content: start;
    gap: 8px;
    margin-top: 10px;
  }
}
