/* ============================
   Base
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --mint: #5dcaa5;
  --mint-soft: #e8f7f1;
  --mint-pale: #f4fbf8;
  --mint-deep: #0f6e56;
  --cream: #fbfaf5;
  --paper: #ffffff;
  --ink: #1b211f;
  --ink-mid: #4f5955;
  --ink-soft: #7b8681;
  --line: #d9ebe4;
  --line-strong: #b8dbcf;
  --accent: #d9995f;

  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --shadow: 0 18px 50px rgba(15, 110, 86, 0.11);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading .section-title {
  margin-bottom: 14px;
}

.section-kicker {
  color: var(--mint-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.title-line {
  display: block;
}

.section-note {
  color: var(--ink-mid);
  font-size: 0.98rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

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

.btn-primary {
  background: var(--mint-deep);
  color: var(--paper);
  border-color: var(--mint-deep);
}

.btn-primary:hover {
  background: #0b5945;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--mint-deep);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: var(--paper);
  border-color: var(--mint-deep);
}

.btn-wide {
  width: 100%;
}

/* ============================
   Header
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(251, 250, 245, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 235, 228, 0.8);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo {
  color: var(--mint-deep);
  font-family: var(--font-serif);
  font-size: 1.38rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-mid);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--mint-deep);
}

.nav-cta {
  padding: 9px 18px;
  border: 1.5px solid var(--mint-deep);
  border-radius: 6px;
  color: var(--mint-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--mint-deep);
  color: var(--paper);
}

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 148px 0 88px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 1) 0%, rgba(251, 250, 245, 0.98) 38%, rgba(251, 250, 245, 0.72) 52%, rgba(251, 250, 245, 0.08) 74%, rgba(251, 250, 245, 0.02) 100%),
    var(--mint-pale);
  border-bottom: 1px solid var(--line);
}

.hero-panel {
  position: absolute;
  inset: 72px 0 0 auto;
  width: min(66vw, 1180px);
  height: calc(100% - 72px);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 1) 0%, rgba(251, 250, 245, 0.98) 32%, rgba(251, 250, 245, 0.72) 46%, rgba(251, 250, 245, 0.14) 66%, rgba(251, 250, 245, 0) 100%),
    linear-gradient(0deg, rgba(251, 250, 245, 0.92) 0%, rgba(251, 250, 245, 0) 24%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 40px));
  margin-left: max(40px, calc((100vw - 1120px) / 2));
  margin-right: auto;
  max-width: 560px;
  justify-self: start;
}

.eyebrow {
  color: var(--mint-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 5.8vw, 5.05rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 28px;
  word-break: keep-all;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 560px;
  color: var(--ink-mid);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 2;
  margin-bottom: 40px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-steps {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 22px);
  color: var(--ink);
}

.hero-step {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 86px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-step-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--mint-deep);
}

.hero-step-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-step-arrow {
  color: var(--mint-deep);
  font-size: 2rem;
  line-height: 54px;
}

/* ============================
   Intro / features
   ============================ */
.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) 1.05fr;
  gap: 72px;
  align-items: start;
}

.intro .section-title {
  max-width: 620px;
  font-size: clamp(2.2rem, 3.7vw, 3.45rem);
}

.intro-copy {
  color: var(--ink-mid);
  font-size: 1rem;
}

.intro-copy p + p {
  margin-top: 18px;
}

.intro-copy strong {
  color: var(--mint-deep);
}

/* ============================
   Transformation
   ============================ */
.transformation {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.transformation-heading {
  max-width: 860px;
}

.transformation-heading .section-note {
  max-width: 720px;
  margin-top: 18px;
  color: var(--ink-mid);
  line-height: 1.9;
}

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

.transformation-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 251, 248, 0.68), rgba(255, 255, 255, 0) 44%),
    var(--paper);
}

.before-label,
.after-label {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-label {
  color: var(--ink-soft);
  background: #f1f1ed;
}

.after-label {
  margin-top: 26px;
  color: var(--mint-deep);
  background: var(--mint-soft);
}

.transformation-card h3,
.transformation-card h4 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.transformation-card h3 {
  margin-bottom: 10px;
}

.transformation-card h4 {
  margin-bottom: 10px;
}

.transformation-card p:not(.before-label):not(.after-label) {
  color: var(--ink-mid);
  font-size: 0.92rem;
}

.transformation-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--mint);
  background: var(--mint-pale);
}

.transformation-cta p {
  color: var(--ink-mid);
  font-weight: 700;
}

.transformation-cta .btn {
  flex: 0 0 auto;
}

/* ============================
   Editor
   ============================ */
.editor {
  background: var(--mint-pale);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 80px;
  align-items: center;
}

.editor-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 44px rgba(15, 110, 86, 0.09);
  max-width: 340px;
}

.editor-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.12);
}

.editor-copy {
  max-width: 640px;
}

.editor-name {
  color: var(--mint-deep);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: -4px 0 12px;
}

.editor-copy .section-title {
  margin-bottom: 24px;
}

.editor-copy p {
  color: var(--ink-mid);
  font-size: 1rem;
}

.editor-copy p + p {
  margin-top: 16px;
}

.strengths {
  background: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.feature {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-mark {
  display: inline-block;
  color: var(--mint);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 28px;
}

.feature h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.feature p {
  color: var(--ink-mid);
  font-size: 0.9rem;
}

/* ============================
   Works
   ============================ */
.works {
  background: var(--mint-deep);
  color: var(--paper);
  padding: 88px 0;
}

.works-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.works .section-kicker,
.works .section-title {
  color: var(--paper);
}

.works p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

.works-heading p {
  max-width: none;
}

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

.sample-card {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.sample-card-short {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  grid-column: 1 / -1;
  align-items: center;
}

.sample-copy span {
  display: inline-flex;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sample-copy h3 {
  color: var(--paper);
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 2px 0 6px;
}

.sample-copy p {
  font-size: 0.92rem;
}

.sample-link {
  justify-self: start;
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.sample-link:hover {
  border-color: var(--paper);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.video-frame-short {
  aspect-ratio: 9 / 16;
  max-height: 420px;
  justify-self: end;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================
   Price
   ============================ */
.price {
  background: var(--paper);
}

.pricing-block,
.pricing-panel {
  border: 1px solid var(--line);
  background: var(--paper);
}

.pricing-block {
  margin-bottom: 28px;
}

.pricing-header {
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.pricing-header h3 {
  color: var(--mint-deep);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

.pricing-header p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.plan-table {
  width: 100%;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.7fr;
  border-bottom: 1px solid var(--line);
}

.plan-row:last-child {
  border-bottom: none;
}

.plan-row span,
.plan-row strong {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.plan-row span:last-child,
.plan-row strong:last-child {
  border-right: none;
}

.plan-head {
  background: var(--mint-pale);
  color: var(--ink-mid);
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-row strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.is-recommended {
  background: var(--mint-pale);
}

.price-caption {
  padding: 18px 30px 24px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

.mini-plans article {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.mini-plans article:last-child {
  border-right: none;
}

.mini-plans span,
.subscription-list span {
  display: block;
  color: var(--mint-deep);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mini-plans strong,
.subscription-list strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}

.mini-plans p,
.subscription-list em {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-style: normal;
}

.subscription-list div {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) 132px 92px;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.subscription-list div:last-child {
  border-bottom: none;
}

.subscription-list strong {
  font-size: 1.55rem;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.subscription-list em {
  text-align: right;
  white-space: nowrap;
}

.price-notes {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 4px solid var(--mint);
  background: var(--mint-pale);
}

.price-notes p {
  color: var(--ink-mid);
  font-size: 0.9rem;
}

.price-notes p + p {
  margin-top: 8px;
}

/* ============================
   Flow
   ============================ */
.flow {
  background: var(--cream);
}

.flow-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.flow-list li {
  position: relative;
  padding: 28px 22px 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.flow-list li + li {
  margin-left: 20px;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -31px;
  z-index: 1;
  width: 40px;
  height: 1.5px;
  background: var(--mint);
  transform: translateY(-50%);
}

.flow-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -33px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--mint);
  border-right: 1.5px solid var(--mint);
  transform: translateY(-50%) rotate(45deg);
}

.flow-list span {
  display: inline-block;
  color: var(--mint);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.flow-list h3 {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 10px;
}

.flow-list p {
  color: var(--ink-mid);
  font-size: 0.86rem;
}

/* ============================
   FAQ
   ============================ */
.faq {
  background: var(--paper);
}

.faq-list {
  max-width: 860px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  color: var(--ink);
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mint-deep);
  font-size: 1.3rem;
  font-weight: 400;
}

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

.faq-list p {
  color: var(--ink-mid);
  font-size: 0.94rem;
  padding: 0 48px 24px 0;
}

/* ============================
   Contact
   ============================ */
.contact {
  background: var(--mint-pale);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-copy p {
  color: var(--ink-mid);
  margin-top: 18px;
}

.contact-points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.contact-points li {
  color: var(--ink-mid);
  font-weight: 700;
  padding-left: 22px;
  position: relative;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.required {
  color: var(--mint-deep);
}

.optional {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(93, 202, 165, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aaa5;
}

.form-group select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ============================
   Footer
   ============================ */
.footer {
  padding: 34px 20px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 0.86rem;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 132px;
  }

  .hero-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }

  .hero-panel {
    position: relative;
    inset: auto;
    width: min(100% - 40px, 720px);
    height: auto;
    margin: 54px auto 0;
    order: 2;
  }

  .hero-visual {
    position: relative;
    right: auto;
    left: 0;
    width: 100%;
    height: auto;
    top: 0;
    border-radius: 12px;
  }

  .hero-visual img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: center right;
  }

  .hero-visual::before {
    background: linear-gradient(0deg, rgba(251, 250, 245, 0.72) 0%, rgba(251, 250, 245, 0) 36%);
  }

  .intro-grid,
  .editor-grid,
  .contact-grid,
  .pricing-split {
    grid-template-columns: 1fr;
  }

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

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

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

  .editor-grid {
    gap: 40px;
  }

  .editor-image {
    max-width: 320px;
  }

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

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-inner,
  .nav {
    width: min(100% - 28px, 1120px);
  }

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

  .section {
    padding: 76px 0;
  }

  .nav {
    height: 64px;
  }

  .nav-cta {
    padding: 8px 12px;
  }

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

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .hero-panel {
    display: none;
  }

  .feature-grid,
  .flow-list,
  .mini-plans {
    grid-template-columns: 1fr;
  }

  .flow-list {
    gap: 18px;
  }

  .flow-list li + li {
    margin-left: 0;
  }

  .flow-list li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -19px;
    left: 32px;
    width: 1.5px;
    height: 20px;
    transform: none;
  }

  .flow-list li:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 28px;
    transform: rotate(135deg);
  }

  .feature {
    min-height: auto;
  }

  .sample-grid,
  .sample-card-short {
    grid-template-columns: 1fr;
  }

  .video-frame-short {
    width: min(100%, 320px);
    justify-self: center;
  }

  .plan-row {
    grid-template-columns: 1fr;
  }

  .plan-row span,
  .plan-row strong {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
  }

  .plan-row span:last-child,
  .plan-row strong:last-child {
    border-bottom: none;
  }

  .plan-head {
    display: none;
  }

  .subscription-list div {
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
  }

  .subscription-list em {
    grid-column: 1 / -1;
    text-align: left;
  }

  .mini-plans article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .mini-plans article:last-child {
    border-bottom: none;
  }

  .contact-form {
    padding: 24px;
  }
}
