/* ================================================
   LOCAL NOTE — MAIN STYLES
   ================================================ */

/* ── Variables ── */
:root {
  --c-bg: #f6f5f0;
  --c-surface: #ffffff;
  --c-surface-2: #efede6;
  --c-border: #ded8cf;
  --c-ink: #171b1f;
  --c-ink-2: #363d43;
  --c-ink-3: #747b80;
  --c-accent: #1fb895;
  --c-accent-dark: #087a66;
  --c-accent-light: #e4f7f1;
  --c-blue: #2563eb;
  --c-blue-light: #e7efff;
  --c-amber: #d97757;

  --font-display: 'Onest', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(23,27,31,0.06);
  --shadow-md: 0 12px 34px rgba(23,27,31,0.10);
  --shadow-lg: 0 22px 60px rgba(23,27,31,0.16);

  --max-w: 1160px;
  --transition: 0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #171b1f 0%, #263039 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(23,27,31,0.20);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #20262c 0%, #303b44 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23,27,31,0.26);
}
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-border);
}
.btn--ghost:hover {
  border-color: var(--c-ink);
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: var(--c-ink);
  box-shadow: 0 4px 20px rgba(26,24,20,0.12);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,24,20,0.18);
}
.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

/* ── Chips ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.72);
  color: var(--c-ink-2);
  border: 1px solid rgba(222,216,207,0.95);
  transition: all var(--transition);
  white-space: nowrap;
}
.chip:hover {
  background: #fff;
  border-color: rgba(31,184,149,0.45);
  color: var(--c-accent-dark);
  box-shadow: 0 6px 16px rgba(23,27,31,0.07);
  transform: translateY(-1px);
}
.chip--select { cursor: pointer; }
.chip--select.is-active {
  background: var(--c-accent-light);
  color: var(--c-accent-dark);
  border-color: rgba(31,184,149,0.55);
  box-shadow: inset 0 0 0 1px rgba(31,184,149,0.22), 0 8px 20px rgba(8,122,102,0.10);
}
.chip--select.is-active::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

/* ── Section common ── */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  background: var(--c-accent-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--c-ink-3);
  line-height: 1.65;
}

/* ── Avatar ── */
.avatar { border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.avatar--lg { width: 52px; height: 52px; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--c-border); }

/* ── Dot ── */
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,246,242,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.045em;
  line-height: 1;
}
.nav__brand::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-blue) 100%);
  margin-right: 7px;
  transform: translateY(-1px);
}
.nav__brand span { color: var(--c-accent-dark); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-2);
}
.nav__links a:not(.btn):hover { color: var(--c-ink); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink-2);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  padding-top: 108px;
  padding-bottom: 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #b2f0e8 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ffd6cc 0%, transparent 70%);
  bottom: -50px; left: -80px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-2);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.9vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--c-ink);
  margin-bottom: 18px;
  letter-spacing: -0.055em;
}
.hero__title em {
  font-style: normal;
  color: var(--c-accent-dark);
}
.hero__sub {
  font-size: 17px;
  line-height: 1.66;
  color: var(--c-ink-3);
  max-width: 620px;
  margin-bottom: 26px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__stat { text-align: left; }
.hero__stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink);
}
.hero__stat span {
  font-size: 12px;
  color: var(--c-ink-3);
}
.hero__divider {
  width: 1px;
  height: 36px;
  background: var(--c-border);
}

/* Hero photo accent */
.hero__photo-accent {
  position: absolute;
  right: max(24px, calc(50% - 680px));
  top: 88px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 210px;
  height: 132px;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card__label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}
.photo-card--1 { transform: rotate(-2deg); }
.photo-card--2 { transform: rotate(1.5deg); margin-left: 24px; }
.photo-card--3 { width: 88px; height: 88px; border-radius: 24px; margin-left: 58px; border: 3px solid #fff; }

/* ================================================
   MOCKUPS
   ================================================ */
.mockups {
  padding: 86px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.mockups__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

/* Memo card */
.memo-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 22px;
  transition: all var(--transition);
  opacity: 0.86;
}
.memo-card:hover, .memo-card--active {
  opacity: 1;
  box-shadow: var(--shadow-md);
  border-color: rgba(31,184,149,0.22);
}
.memo-card--active { background: var(--c-surface); }

.memo-card__header { margin-bottom: 14px; }
.memo-card__context-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  background: var(--c-accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.memo-card__context-badge--blue {
  color: var(--c-blue);
  background: var(--c-blue-light);
}
.memo-card__context-badge--gray {
  color: var(--c-ink-3);
  background: var(--c-surface-2);
}

.memo-card__sender {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.memo-card__name { font-weight: 700; font-size: 15px; }
.memo-card__role { font-size: 12px; color: var(--c-ink-3); }

.memo-card__greeting {
  font-size: 13.5px;
  color: var(--c-ink-2);
  line-height: 1.6;
  padding: 14px 15px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(222,216,207,0.75);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.memo-card__recs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }

.rec {
  display: flex;
  gap: 12px;
  background: var(--c-surface);
  border: 1px solid rgba(222,216,207,0.82);
  border-radius: 16px;
  overflow: hidden;
}
.rec__photo {
  width: 78px;
  height: 96px;
  flex-shrink: 0;
}
.rec__photo img { width: 100%; height: 100%; object-fit: cover; }
.rec__body { padding: 11px 12px 11px 0; flex: 1; min-width: 0; }
.rec__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: 3px;
}
.rec__title { font-size: 13px; font-weight: 800; color: var(--c-ink); margin-bottom: 4px; line-height: 1.25; }
.rec__desc { font-size: 11.5px; color: var(--c-ink-3); line-height: 1.5; margin-bottom: 6px; }
.rec__tip {
  font-size: 11px;
  color: var(--c-ink-3);
  background: #fff9ea;
  border: 1px solid #f2e3bc;
  padding: 5px 8px;
  border-radius: 9px;
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.tip-icon { flex-shrink: 0; color: #b7791f; line-height: 0; margin-top: 1px; }
.tip-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.memo-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.memo-card__actions .chip { padding: 5px 10px; font-size: 11px; }

/* ================================================
   BENEFITS
   ================================================ */
.benefits {
  padding: 96px 0;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 34px;
  transition: all var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.benefit-card--accent {
  background: linear-gradient(135deg, #20272b 0%, #26343a 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 48px rgba(23,27,31,0.16);
}
.benefit-card--accent h3 { color: #fff; }
.benefit-card--accent p { color: rgba(255,255,255,0.78); }
.benefit-card--accent .benefit-card__tag {
  color: #8be6d0;
  background: rgba(139,230,208,0.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}
.benefit-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
  background: var(--c-accent-light);
  border: 1px solid rgba(31,184,149,0.20);
}
.benefit-card__icon svg, .step__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card--accent .benefit-card__icon {
  color: #8be6d0;
  background: rgba(139,230,208,0.12);
  border-color: rgba(139,230,208,0.22);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefit-card p {
  font-size: 14.5px;
  color: var(--c-ink-3);
  line-height: 1.7;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how {
  padding: 96px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-border) 100%);
  z-index: 0;
}
.step { padding: 0 20px; position: relative; z-index: 1; }
.step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-ink-3);
  margin-bottom: 6px;
}
.step__line { display: none; }
.step__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.step:first-child .step__icon {
  background: var(--c-accent-light);
  border-color: rgba(31,184,149,0.28);
  color: var(--c-accent-dark);
}
.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.step p { font-size: 13.5px; color: var(--c-ink-3); line-height: 1.6; }

/* ================================================
   FORM SECTION
   ================================================ */
.form-section {
  padding: 96px 0;
}
.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.form-section__head { position: sticky; top: 96px; }
.form-section__head .section-title { text-align: left; margin-bottom: 12px; }
.form-section__head .section-sub { text-align: left; font-size: 15px; }
.form-section__head .section-tag { display: inline-block; }

/* Form */
.memo-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(222,216,207,0.92);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 50px rgba(23,27,31,0.08);
}
.form-group { display: flex; flex-direction: column; gap: 11px; }
.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: 9px;
}

.form-label__hint { font-weight: 400; color: var(--c-ink-3); font-size: 12px; }
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-surface);
  font-size: 15px;
  color: var(--c-ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-light);
}
.form-input::placeholder { color: var(--c-ink-3); }

.form-submit { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.btn-icon { font-size: 18px; transition: transform var(--transition); }
.btn--primary:hover .btn-icon { transform: translateX(4px); }
.form-note {
  font-size: 12px;
  color: var(--c-ink-3);
  text-align: center;
}
.form-note a { text-decoration: underline; }

/* Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--c-accent-light);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--c-accent);
}
.form-success__icon {
  width: 56px; height: 56px;
  background: var(--c-accent);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--c-ink-3); font-size: 14px; }

/* ================================================
   FINAL CTA
   ================================================ */
.cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: var(--c-ink);
  color: #fff;
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta__blob--1 {
  width: 500px; height: 500px;
  background: rgba(0,184,148,0.25);
  top: -100px; right: -100px;
}
.cta__blob--2 {
  width: 400px; height: 400px;
  background: rgba(9,132,227,0.2);
  bottom: -80px; left: -80px;
}
.cta__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; }

.cta__photo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.cta__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.3);
  margin-left: -10px;
}
.cta__avatar:first-child { margin-left: 0; }
.cta__more {
  margin-left: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.cta__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 28px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy { font-size: 13px; color: var(--c-ink-3); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 13px; color: var(--c-ink-3); }
.footer__links a:hover { color: var(--c-ink); }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__badge { animation: fadeUp 0.6s ease both; }
.hero__title { animation: fadeUp 0.7s 0.1s ease both; }
.hero__sub { animation: fadeUp 0.7s 0.2s ease both; }
.hero__actions { animation: fadeUp 0.7s 0.3s ease both; }
.hero__stats { animation: fadeUp 0.7s 0.4s ease both; }
.hero__photo-accent { animation: fadeUp 0.8s 0.3s ease both; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Product UI polish ── */
.form-section__head .section-title,
.benefit-card h3,
.step h3,
.memo-card__name,
.rec__title { letter-spacing: -0.02em; }

.benefit-card--accent .benefit-card__tag { border: 1px solid rgba(139,230,208,0.18); }
.benefit-card--accent:hover { border-color: rgba(139,230,208,0.20); }

.memo-card--active { box-shadow: 0 18px 48px rgba(23,27,31,0.10); }
.memo-card__actions .chip { background: rgba(255,255,255,0.78); }

.form-section { background: linear-gradient(180deg, var(--c-bg) 0%, #f1efe8 100%); }
.memo-form .chip { padding: 9px 15px; }
.memo-form .chip-group { gap: 9px; }
.form-input:hover { background: #fff; border-color: #cbc4ba; }
#otherCity { margin-top: 2px; }

.btn:disabled,
.btn[disabled] { opacity: 0.72; cursor: wait; transform: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .hero__photo-accent { display: none; }
}

@media (max-width: 900px) {
  .mockups__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .benefits__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how__steps::before { display: none; }
  .form-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-section__head { position: static; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .how__steps { grid-template-columns: 1fr; }
  .hero { padding-top: 94px; padding-bottom: 56px; }
  .hero__title { font-size: clamp(32px, 10.5vw, 44px); letter-spacing: -0.045em; }
  .hero__sub { font-size: 15.5px; }
  .hero__actions { margin-bottom: 28px; }
  .btn--lg { width: 100%; justify-content: center; }
  .hero__stats { gap: 12px; }
  .hero__divider { display: none; }
  .benefits, .mockups, .how, .form-section, .cta { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .memo-card { padding: 18px; }
  .rec { gap: 10px; }
  .rec__photo { width: 66px; height: 84px; }
  .memo-form { padding: 20px; border-radius: 24px; }
  .form-label { align-items: flex-start; flex-direction: column; gap: 2px; }
}
