:root {
  --bg: #fff8ef;
  --bg-alt: #fff2df;
  --surface: rgba(255, 252, 245, 0.84);
  --surface-strong: #fffcf5;
  --surface-accent: #fff2d1;
  --text: #202640;
  --muted: #5f6984;
  --accent: #ef6c47;
  --accent-dark: #d5522f;
  --accent-soft: #ffd4b1;
  --teal: #0da3a8;
  --teal-soft: #dff9f6;
  --yellow: #ffbf57;
  --line: rgba(32, 38, 64, 0.1);
  --shadow: 0 24px 60px rgba(41, 46, 82, 0.14);
  --shadow-soft: 0 12px 30px rgba(41, 46, 82, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 175, 0.9), transparent 24%),
    radial-gradient(circle at bottom right, rgba(13, 163, 168, 0.16), transparent 20%),
    linear-gradient(180deg, #fffaf2 0%, #fff4e5 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 80%);
  pointer-events: none;
  z-index: 0;
}

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.55;
  pointer-events: none;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: rgba(255, 191, 87, 0.4);
  top: 120px;
  left: -120px;
}

.orb-b {
  width: 240px;
  height: 240px;
  background: rgba(13, 163, 168, 0.22);
  top: 560px;
  right: 4%;
}

.orb-c {
  width: 260px;
  height: 260px;
  background: rgba(239, 108, 71, 0.18);
  bottom: 380px;
  left: 8%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 56px 0;
}

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

.section-heading h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-heading li {
  color: var(--muted);
}

.section-kicker,
.eyebrow,
.preview-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.section-kicker::before,
.eyebrow::before,
.preview-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 18px 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--accent), #ff9762);
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: 0 18px 34px rgba(239, 108, 71, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.outline-button,
.solid-button,
.cta-button,
.messenger-button,
.listen-button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  font-weight: 700;
}

.solid-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), #ff905d);
  color: #fff;
  box-shadow: 0 16px 30px rgba(239, 108, 71, 0.28);
  font-weight: 800;
}

.outline-button:hover,
.solid-button:hover,
.cta-button:hover,
.messenger-button:hover,
.listen-button:hover {
  transform: translateY(-2px);
}

.wide {
  width: 100%;
}

.balance-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(13, 163, 168, 0.12);
  border: 1px solid rgba(13, 163, 168, 0.18);
  color: #0b6d72;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  padding-top: 48px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
}

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

.hero-copy h1 {
  margin: 20px 0 18px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: none;
}

.hero-text,
.process-copy p,
.review-card p,
.benefit-card p,
.example-card p,
.seo-copy p,
.partner-copy p,
.faq-item p,
.footer-brand p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
}

.telegram {
  color: #0577b8;
}

.max {
  color: #0a8470;
}

.vk {
  color: #4067d6;
}

.hero-trust {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card,
.benefit-card,
.step-card,
.example-card,
.review-card,
.faq-item,
.price-card,
.seo-copy,
.seo-keywords,
.process-side-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  padding: 18px;
  border-radius: 22px;
}

.trust-value {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.trust-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-preview {
  position: relative;
}

.action-panel {
  position: relative;
  padding: 30px;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 239, 0.9)),
    linear-gradient(145deg, rgba(13, 163, 168, 0.12), rgba(239, 108, 71, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.action-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 108, 71, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.action-lead,
.action-secondary {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.action-lead {
  max-width: 860px;
  margin: 14px auto 0;
  font-size: 1.08rem;
}

.action-lead strong {
  color: var(--accent-dark);
  font-weight: 800;
  padding: 0 6px;
  border-radius: 8px;
  background: rgba(239, 108, 71, 0.12);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.action-secondary {
  margin-top: 28px;
  font-size: 0.98rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.messenger-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 24px 22px 22px;
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.messenger-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.messenger-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(41, 46, 82, 0.12);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.vk-icon {
  background: linear-gradient(145deg, #4b74f2, #3b63d6);
  color: #fff;
}

.max-icon {
  background: linear-gradient(145deg, #1ac5a8, #0c8a73);
  color: #fff;
}

.telegram-icon {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.telegram-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.messenger-card strong {
  font-size: 1.26rem;
}

.messenger-card small {
  color: var(--muted);
  line-height: 1.55;
  max-width: 24ch;
}

.messenger-card.telegram {
  background: linear-gradient(145deg, rgba(5, 119, 184, 0.1), rgba(255, 255, 255, 0.86));
  border-color: rgba(5, 119, 184, 0.16);
}

.messenger-card.max {
  background: linear-gradient(145deg, rgba(10, 132, 112, 0.1), rgba(255, 255, 255, 0.86));
  border-color: rgba(10, 132, 112, 0.16);
}

.messenger-card.vk {
  background: linear-gradient(145deg, rgba(64, 103, 214, 0.1), rgba(255, 255, 255, 0.86));
  border-color: rgba(64, 103, 214, 0.16);
}

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

.action-site-button {
  width: fit-content;
  min-width: 220px;
  padding: 18px 24px;
  font-size: 1.02rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.action-site-wrap {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(32, 38, 64, 0.08);
  display: flex;
  justify-content: center;
}

.action-site-button:hover {
  background: rgba(255, 255, 255, 0.86);
}

.preview-window {
  position: relative;
  padding: 20px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 239, 0.88)),
    linear-gradient(145deg, rgba(13, 163, 168, 0.16), rgba(239, 108, 71, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.window-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.window-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(32, 38, 64, 0.18);
}

.preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.preview-head strong,
.preview-result strong {
  font-size: 1.2rem;
}

.progress-chip,
.tag,
.choice-pill,
.mini-label,
.example-tag,
.price-label,
.price-badge,
.floating-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.progress-chip {
  padding: 10px 14px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}

.preview-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.preview-card + .preview-card {
  margin-top: 14px;
}

.preview-card.highlight {
  background: linear-gradient(145deg, rgba(255, 191, 87, 0.18), rgba(255, 255, 255, 0.82));
}

.mini-label {
  margin-bottom: 12px;
  padding: 7px 12px;
  background: rgba(32, 38, 64, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.tag-row,
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 10px 14px;
  background: rgba(239, 108, 71, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
}

.choice-pill {
  padding: 10px 14px;
  background: rgba(32, 38, 64, 0.06);
  color: var(--muted);
  font-weight: 700;
}

.choice-pill.active {
  background: rgba(13, 163, 168, 0.14);
  color: var(--teal);
}

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

.voice-option {
  padding: 14px;
  border-radius: 18px;
  background: rgba(32, 38, 64, 0.04);
}

.voice-option strong {
  display: block;
  margin-bottom: 4px;
}

.voice-option small {
  color: var(--muted);
}

.voice-option.selected {
  background: linear-gradient(145deg, rgba(239, 108, 71, 0.16), rgba(255, 255, 255, 0.64));
  outline: 1px solid rgba(239, 108, 71, 0.22);
}

.idea-card p {
  margin: 0;
}

.preview-footer {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.meter,
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.meter span,
.waveform span {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--accent));
  animation: bounce 1.5s ease-in-out infinite;
  transform-origin: bottom;
}

.meter span:nth-child(odd),
.waveform span:nth-child(odd) {
  animation-delay: 0.15s;
}

.meter span:nth-child(3n),
.waveform span:nth-child(3n) {
  animation-delay: 0.3s;
}

.meter span:nth-child(1) { height: 18px; }
.meter span:nth-child(2) { height: 32px; }
.meter span:nth-child(3) { height: 22px; }
.meter span:nth-child(4) { height: 38px; }
.meter span:nth-child(5) { height: 28px; }
.meter span:nth-child(6) { height: 42px; }
.meter span:nth-child(7) { height: 19px; }
.meter span:nth-child(8) { height: 35px; }
.meter span:nth-child(9) { height: 25px; }
.meter span:nth-child(10) { height: 31px; }

.waveform span:nth-child(1) { height: 18px; }
.waveform span:nth-child(2) { height: 34px; }
.waveform span:nth-child(3) { height: 20px; }
.waveform span:nth-child(4) { height: 40px; }
.waveform span:nth-child(5) { height: 16px; }
.waveform span:nth-child(6) { height: 28px; }
.waveform span:nth-child(7) { height: 24px; }
.waveform span:nth-child(8) { height: 38px; }
.waveform span:nth-child(9) { height: 22px; }
.waveform span:nth-child(10) { height: 30px; }

.preview-result {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.preview-result small {
  color: var(--muted);
}

.floating-note {
  position: absolute;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.note-a {
  top: 14%;
  right: -4%;
}

.note-b {
  left: -7%;
  bottom: 28%;
}

.note-c {
  right: 8%;
  bottom: -4%;
}

.benefit-grid,
.examples-grid,
.review-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.benefit-card,
.example-card,
.review-card,
.price-card,
.seo-copy,
.seo-keywords,
.process-side-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.benefit-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.benefit-card h3,
.step-card h3,
.example-top strong,
.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.process-layout,
.seo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.process-side-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 163, 168, 0.16), rgba(255, 191, 87, 0.28));
  color: var(--teal);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.example-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.example-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.example-tag,
.price-label {
  padding: 7px 12px;
  background: rgba(32, 38, 64, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.listen-button {
  align-self: flex-start;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(13, 163, 168, 0.1);
  color: var(--teal);
  font-weight: 800;
}

.review-card {
  min-height: 100%;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(239, 108, 71, 0.18), rgba(255, 191, 87, 0.25));
  color: var(--accent-dark);
  font-weight: 800;
}

.review-author small {
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
}

.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 800;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 1.4rem;
  color: var(--accent-dark);
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.92), rgba(255, 236, 210, 0.92)),
    linear-gradient(145deg, rgba(239, 108, 71, 0.16), rgba(255, 191, 87, 0.12));
  border-color: rgba(239, 108, 71, 0.24);
  transform: translateY(-10px);
}

.price-card.subtle {
  background: linear-gradient(180deg, rgba(223, 249, 246, 0.66), rgba(255, 255, 255, 0.72));
}

.price-badge {
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.price-features {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.partner-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 191, 87, 0.32), transparent 24%),
    linear-gradient(135deg, rgba(13, 163, 168, 0.92), rgba(24, 60, 88, 0.96));
  color: #fff;
  box-shadow: var(--shadow);
}

.partner-banner .section-kicker,
.partner-banner p {
  color: rgba(255, 255, 255, 0.86);
}

.partner-banner .section-kicker::before {
  background: rgba(255, 255, 255, 0.72);
}

.partner-copy h2 {
  margin: 10px 0 10px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
}

.partner-button {
  background: #fff;
  color: #0f3247;
  box-shadow: none;
}

.seo-shell {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at top left, rgba(255, 191, 87, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.92), rgba(255, 246, 234, 0.92));
  box-shadow: var(--shadow-soft);
}

.seo-heading {
  max-width: 880px;
  margin-bottom: 24px;
}

.seo-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.seo-copy {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.72);
}

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

.seo-list {
  margin: 22px 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.seo-gallery {
  display: grid;
  gap: 16px;
}

.seo-photo {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.seo-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 22%, rgba(23, 30, 56, 0.52) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 24%);
}

.seo-photo span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
  max-width: 16ch;
}

.photo-birthday {
  background:
    radial-gradient(circle at top left, rgba(255, 214, 170, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(245, 143, 95, 0.9), rgba(158, 73, 94, 0.9));
}

.photo-love {
  background:
    radial-gradient(circle at top right, rgba(255, 229, 210, 0.82), transparent 24%),
    linear-gradient(135deg, rgba(235, 117, 123, 0.92), rgba(101, 48, 115, 0.92));
}

.photo-content {
  background:
    radial-gradient(circle at top left, rgba(220, 246, 255, 0.86), transparent 24%),
    linear-gradient(135deg, rgba(32, 131, 180, 0.92), rgba(28, 69, 115, 0.92));
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(32, 38, 64, 0.94);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  font-weight: 800;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%,
  100% {
    transform: scaleY(0.86);
  }

  50% {
    transform: scaleY(1.08);
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .process-layout,
  .faq-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid,
  .examples-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .note-b {
    left: 0;
    bottom: -3%;
  }

  .partner-banner {
    grid-template-columns: 1fr;
  }

  .seo-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    justify-content: flex-start;
  }

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

  .hero-trust,
  .voice-grid,
  .benefit-grid,
  .examples-grid,
  .review-grid,
  .pricing-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 28px;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
    width: fit-content;
  }
}

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

  .section {
    padding: 42px 0;
  }

  .header-inner,
  .action-panel,
  .seo-shell,
  .preview-window,
  .partner-banner,
  .footer-layout {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

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

  .preview-head,
  .example-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-card {
    grid-template-columns: 1fr;
  }
}
