/* ═══════════════════════════════════════════
   DESIGN SYSTEM — CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
  --bg:          #F9F6F0;
  --bg-white:    #FFFFFF;
  --accent:      #1A3A2A;
  --cta:         #C4622D;
  --cta-hover:   #A8501F;
  --text:        #1C1C1C;
  --muted:       #6B6B6B;
  --border:      #E8E3DC;
  --border-dark: #C8C0B4;

  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;

  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.br-desktop { display: inline; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.section-label--light {
  color: rgba(255,255,255,0.5);
}

.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn--cta {
  background: var(--cta);
  color: #fff;
  font-size: 15px;
  padding: 13px 24px;
  box-shadow: 0 2px 8px rgba(196,98,45,0.28);
}

.btn--cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,98,45,0.32);
}

.btn--cta:active { transform: translateY(0); }

.btn--sm { font-size: 13px; padding: 9px 18px; }

.btn--lg { font-size: 16px; padding: 16px 32px; }

.btn--download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  padding: 9px 16px;
  background: var(--bg-white);
  transition: border-color 0.15s, background 0.15s;
}

.btn--download:hover { border-color: var(--accent); background: var(--bg); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,246,240,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-mark {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--bg);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px;
  align-items: center;
}

.hero__avatar {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__subline {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero__micro {
  font-size: 13px;
  color: var(--muted);
}

/* Before/After slider */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.before-after {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: col-resize;
  user-select: none;
  touch-action: none;
}

.before-after__img {
  position: absolute;
  inset: 0;
}

.before-after__img--before {
  z-index: 1;
  clip-path: inset(0 20% 0 0); /* initial pct=80 → right clip = 100-80 = 20% */
}

.before-after__img--after {
  z-index: 2;
  clip-path: inset(0 0 0 50%); /* initial 50% — JS overrides on load */
}

/* Before / After real photo images */
.ba-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Before photo is already naturally a phone shot — no artificial filter needed */

/* photo-mock kept for step visuals (result card) */
.photo-mock {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.photo-mock--thumb {
  border-radius: 6px;
}

.photo-mock--result {
  border-radius: 8px;
  filter: saturate(1.3) brightness(1.05);
}

.before-after__handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after__handle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
}

.ba-handle__icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  color: var(--accent);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Labels live inside their own image layer — they clip with the photo naturally */
.ba-label {
  position: absolute;
  bottom: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  white-space: nowrap;
}

.ba-label--before {
  left: 14px;
  background: rgba(0,0,0,.38);
  color: rgba(255,255,255,.85);
}

.ba-label--after {
  right: 14px;
  background: rgba(26,58,42,.72);
  color: rgba(255,255,255,.92);
}

.hero__visual-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ═══════════════════════════════════════════
   PAIN
═══════════════════════════════════════════ */
.pain {
  background: var(--bg-white);
  padding: 88px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pain__card {
  background: var(--bg-white);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain__anchor {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 4px;
}

.pain__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.pain__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════ */
.statement {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.statement__quote {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--accent);
  font-style: normal;
  max-width: 760px;
  margin: 0 auto;
}

.statement__quote em {
  font-style: italic;
  color: var(--cta);
}

/* ═══════════════════════════════════════════
   RESULTS GALLERY
═══════════════════════════════════════════ */
.gallery {
  background: var(--bg-white);
  padding: 16px 0 96px;
}

.gallery__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}

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

.gallery__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg);
}

.gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__card:hover img { transform: scale(1.05); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,18,0.72) 0%, transparent 52%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.gallery__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--cta);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gallery__info { display: flex; flex-direction: column; gap: 3px; }
.gallery__dish   { font-size: 14px; font-weight: 600; color: #fff; }
.gallery__format { font-size: 11.5px; color: rgba(255,255,255,0.6); }

/* Gallery — real food photos */
.gallery__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__card:hover .gallery__photo {
  transform: scale(1.04);
}

/* Per-card crop tuning */
.gallery__card:nth-child(1) .gallery__photo { object-position: center 60%; } /* Caesar — focus on plate */
.gallery__card:nth-child(2) .gallery__photo { object-position: center 40%; } /* Fries — show top of bucket */
.gallery__card:nth-child(3) .gallery__photo { object-position: center 55%; } /* Sliders — cut bokeh foreground */

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.howto {
  background: var(--bg-white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.howto__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.howto__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.howto__step:last-child { border-bottom: none; padding-bottom: 0; }
.howto__step:first-child { padding-top: 0; }

.howto__step--reverse .step__left { order: 2; }
.howto__step--reverse .step__right { order: 1; }

.step__number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--border-dark);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}

.step__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--accent);
  margin-bottom: 16px;
}

.step__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* UI Mock components */
.ui-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ui-mock__topbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.ui-mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-dark);
}

.ui-mock__dot:first-child { background: #F4785A; }
.ui-mock__dot:nth-child(2) { background: #F2BD50; }
.ui-mock__dot:nth-child(3) { background: #60C558; }

.ui-mock__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ui-mock__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Upload zone */
.upload-zone {
  border: 1.5px dashed var(--border-dark);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.upload-zone__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.upload-zone__text span {
  color: var(--cta);
  font-weight: 500;
}

.upload-thumb {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}

.photo-mock--thumb {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background:
    radial-gradient(ellipse at 50% 60%, #d4956a, #8a5530 80%);
  filter: saturate(0.5) brightness(0.85);
}

.upload-thumb__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.upload-thumb__name { font-size: 13px; font-weight: 500; color: var(--text); }
.upload-thumb__size { font-size: 11px; color: var(--muted); }

/* Preset list */
.preset-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preset-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s;
}

.preset-item--active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(26,58,42,.04);
}

.preset-item__check { margin-left: auto; flex-shrink: 0; }

.preset-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.preset-item__icon--delivery { background: linear-gradient(135deg, #f0a070 0%, #c06030 100%); }
.preset-item__icon--social   { background: linear-gradient(135deg, #a0c8e0 0%, #4088b8 100%); }
.preset-item__icon--print    { background: linear-gradient(135deg, #b8d4b0 0%, #60985a 100%); }

/* Result preview */
.result-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-mock--result {
  width: 100%;
  height: 130px;
  background:
    radial-gradient(ellipse 60% 55% at 50% 60%, #e8a87a 0%, #d4834a 25%, #b86230 55%, #8c4520 100%);
  filter: saturate(1.4) brightness(1.06);
}

.result-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge--green { background: rgba(26,58,42,.08); color: var(--accent); }
.badge--muted { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features {
  background: var(--bg);
  padding: 96px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.feature-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.feature-card__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  background: var(--bg-white);
  padding: 96px 0;
}

.pricing__h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--accent);
  margin: 8px 0 48px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 780px;
}

/* ── Main subscription card ── */
.pricing__card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg);
}

.pricing__card--main {
  background: var(--bg-white);
  border-color: var(--accent);
}

.pricing__card-header {
  margin-bottom: 24px;
}

.pricing__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.pricing__badge--muted {
  color: var(--muted);
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing__amount {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.pricing__period {
  font-size: 15px;
  color: var(--muted);
}

.pricing__includes {
  font-size: 14px;
  color: var(--muted);
}

.pricing__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing__perks li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.pricing__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 700;
  font-size: 13px;
}

.pricing__btn {
  display: block;
  text-align: center;
  width: 100%;
}

/* ── Credit packs card ── */
.pricing__packs-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing__pack-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.pricing__pack {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.pricing__pack:last-child {
  border-bottom: none;
}

.pricing__pack-count {
  font-size: 14px;
  color: var(--text);
}

.pricing__pack-count--best {
  font-weight: 600;
  color: var(--accent);
}

.pricing__pack-price {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--accent);
  font-weight: 400;
}

.pricing__packs-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 680px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__h2 { font-size: 26px; }
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: var(--accent);
  padding: 100px 0;
}

.cta-section__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* CTA Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cta-form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cta-form__input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 18px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: #fff;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.cta-form__input::placeholder { color: rgba(255,255,255,0.45); }

.cta-form__input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,.14);
}

.cta-form__micro {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--text);
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 17px;
  color: rgba(255,255,255,.8);
  letter-spacing: -0.02em;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.footer__links {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color 0.15s;
}

.footer__links a:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════
   STEP ABSTRACT VISUALS (no browser chrome)
═══════════════════════════════════════════ */
.step-vis {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

/* — Upload visual — */
.sv-upload-photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  width: 100%;
}

.sv-upload-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sv-upload-photo__tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.88);
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.sv-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sv-file-name { font-size: 13px; font-weight: 500; color: var(--text); }
.sv-file-size { font-size: 12px; color: var(--muted); }

.sv-progress-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.sv-progress-bar {
  height: 100%;
  width: 68%;
  background: var(--cta);
  border-radius: 4px;
}

/* — Step 02: uploaded photo thumbnail — */
.sv-thumb-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  width: 100%;
}

.sv-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sv-thumb-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* — Choose visual — */
.sv-chips-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sv-chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--bg-white);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.sv-chip--on {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(26,58,42,0.04);
}

.sv-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.sv-divider::before,
.sv-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.sv-input-mock {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}

.sv-caret {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: var(--cta);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret { 50% { opacity: 0; } }

/* — Download visual — */
.sv-result-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  width: 100%;
}

.sv-result-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}


.sv-result-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(26,58,42,0.82);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.sv-dl-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sv-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sv-spec-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
}

.sv-spec-tag--ok {
  color: #1A6B3A;
  background: rgba(26,107,58,0.07);
  border-color: rgba(26,107,58,0.22);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   SCROLL-IN ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.fade-up:nth-child(1) { transition-delay: 0.05s; }
.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.19s; }
.fade-up:nth-child(4) { transition-delay: 0.26s; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__cta-group { align-items: center; }

  .hero__avatar { text-align: center; }

  .br-desktop { display: none; }

  .howto__step,
  .howto__step--reverse .step__left,
  .howto__step--reverse .step__right {
    grid-template-columns: 1fr;
    order: unset;
  }

  .howto__step { grid-template-columns: 1fr; gap: 32px; }
  .howto__step--reverse .step__left { order: unset; }
  .howto__step--reverse .step__right { order: unset; }

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

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

  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .hero { padding: 56px 0 72px; }

  .hero__h1 { font-size: 36px; }

  .hero__subline { font-size: 15px; }

  .pain, .howto, .features, .statement, .cta-section { padding: 72px 0; }

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

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

  .statement__quote { font-size: 28px; }

  .cta-section__h2 { font-size: 28px; }

  .footer__inner { flex-wrap: wrap; gap: 12px; }
  .footer__links { margin-left: 0; }
}
