/* ============================================================
   LOOP — component & section layout styles
   ============================================================ */

/* ---------------- Logo ---------------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark {
  position: relative; width: 34px; height: 26px; display: inline-block;
}
.logo__loop {
  position: absolute; top: 3px; left: 0;
  width: 20px; height: 20px; border-radius: 50%;
  border: 4px solid var(--purple);
}
.logo__loop--2 { left: 12px; border-color: var(--pink-deep); mix-blend-mode: multiply; }
.logo__word {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: -0.02em; color: var(--ink);
}
.logo__word span { color: var(--purple); }
.logo__word--light { color: #fff; }
.logo__word--light span { color: var(--pink); }

/* ---------------- Header ---------------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.hdr--scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 6px 24px rgba(124,58,237,0.07);
}
.hdr__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.hdr__nav { display: flex; align-items: center; gap: 6px; }
.hdr__link {
  background: none; border: none; font-family: var(--font-display);
  font-weight: 500; font-size: 15.5px; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .15s, background .15s;
  white-space: nowrap;
}
.hdr__link:hover { color: var(--purple-dark); background: var(--lavender-50); }
.hdr__end { display: flex; align-items: center; gap: 12px; }
.hdr__actions { display: flex; align-items: center; }
.hdr__actions .btn { padding: 12px 22px; font-size: 15px; }

/* Language switcher (TH / EN) */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; background: var(--lavender-50); border: 1px solid var(--border); }
.lang-switch__opt { border: none; background: none; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.03em; line-height: 1; color: var(--ink-faint); padding: 6px 10px; border-radius: 999px; transition: background .18s ease, color .18s ease; }
.lang-switch__opt:hover { color: var(--purple-dark); }
.lang-switch__opt.is-active { background: var(--white); color: var(--purple-dark); box-shadow: 0 1px 3px rgba(124,58,237,0.16); }

.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  padding: 8px; border-radius: 10px;
}
.burger span { width: 24px; height: 2.4px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.burger--open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 6px; padding: 0 var(--gutter);
  max-height: 0; overflow: hidden; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); transition: max-height .3s ease, padding .3s ease;
}
.mobile-menu--open { max-height: 420px; padding: 12px var(--gutter) 22px; box-shadow: 0 14px 30px rgba(124,58,237,0.12); }
.mobile-menu__link {
  text-align: left; background: none; border: none; font-family: var(--font-display);
  font-weight: 500; font-size: 17px; color: var(--ink); padding: 13px 6px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 14px; }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding-top: clamp(36px, 6vw, 64px); padding-bottom: 0; overflow: hidden; }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 70px);
  align-items: center; padding-top: clamp(20px, 4vw, 48px); padding-bottom: clamp(40px, 6vw, 72px);
}
.hero__title {
  font-size: clamp(38px, 6vw, 68px); font-weight: 700; line-height: 1.08; margin-top: 22px;
  letter-spacing: -0.025em;
}
.hero__title-accent {
  background: linear-gradient(120deg, var(--purple), var(--pink-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub { margin-top: 22px; font-size: clamp(16px, 1.8vw, 19px); color: var(--ink-soft); max-width: 520px; line-height: 1.8; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note { display: inline-flex; align-items: flex-start; gap: 9px; margin-top: 22px; font-size: 14.5px; line-height: 1.65; color: var(--ink-faint); }
/* dot aligns to the optical center of the FIRST line even when the note wraps */
.hero__note-dot { flex-shrink: 0; width: 9px; height: 9px; margin-top: calc((1.65em - 9px) / 2 + 1px); border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,0.18); }

/* Hero collage */
.hero__visual { position: relative; min-height: 480px; }
.hero__collage {
  position: absolute; top: 0; left: 0; width: 60%; height: 100%; min-height: 480px;
}
.look-card {
  position: absolute; border-radius: var(--r-lg); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-lg); border: 5px solid #fff;
}
.look-card__occ {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-weight: 500; font-size: 12.5px; color: var(--purple-dark);
  background: rgba(255,255,255,0.92); padding: 5px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.look-card__meta {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.94); border-radius: 14px; padding: 8px 12px; box-shadow: var(--shadow-sm);
}
.look-card__price { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); }
.look-card__rate { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: var(--ink-soft); }

.lc--1 { width: 56%; top: 2%; left: 0; aspect-ratio: 3/4; z-index: 3; animation: floaty 6s ease-in-out infinite; }
.lc--2 { width: 52%; top: 0; right: -2%; aspect-ratio: 3/4; z-index: 2; animation: floaty 7s ease-in-out infinite .6s; }
.lc--3 { width: 54%; bottom: 0; left: 3%; aspect-ratio: 4/4.4; z-index: 4; animation: floaty 6.5s ease-in-out infinite .3s; }
.lc--4 { width: 50%; bottom: 7%; right: -3%; aspect-ratio: 4/4.3; z-index: 2; animation: floaty 7.5s ease-in-out infinite .9s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero app-preview mini phone — signals "this is an app / marketplace" */
.hero__app {
  position: absolute; z-index: 6;
  right: 0; top: 50%; transform: translateY(-50%);
  width: clamp(186px, 17vw, 218px); padding: 8px;
  background: #17121f; border-radius: 34px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  animation: floatPhone 6.8s ease-in-out infinite .45s;
}
@keyframes floatPhone { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 9px)); } }
.hero__app-screen { background: var(--lavender-50); border-radius: 27px; overflow: hidden; display: block; }
.hero__app-shot { display: block; width: 100%; height: auto; }

.hero__chip {
  position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: 13.5px; color: var(--ink);
  background: #fff; padding: 10px 15px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
}
.hero__chip--search { top: 1%; left: 6%; }
.hero__chip--avail { bottom: 4%; left: -4%; }
.ping { width: 9px; height: 9px; border-radius: 50%; background: #34D399; position: relative; }
.ping::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #34D399; animation: ping 1.6s ease-out infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(3); opacity: 0; } }

/* Hero strip */
.hero-strip {
  position: relative; z-index: 1; display: flex; align-items: center; gap: 24px;
  width: 100%; max-width: var(--maxw); margin: 8px auto 0;
  border-top: 1px solid var(--border); padding: 20px var(--gutter);
}
.hero-strip__label { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--ink-faint); white-space: nowrap; flex-shrink: 0; }
/* Viewport clips + softly fades both edges so no word is hard-clipped */
.hero-strip__viewport {
  position: relative; flex: 1 1 auto; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}
/* gap:0 — each item carries its own symmetric spacing via the dot's margins,
   so the duplicated set is a uniform repeat and translateX(-50%) loops seamlessly */
.hero-strip__track { display: inline-flex; align-items: center; width: max-content; gap: 0; animation: marquee 44s linear infinite; will-change: transform; }
.hero-strip__viewport:hover .hero-strip__track { animation-play-state: paused; }
.hero-strip__item { display: inline-flex; align-items: center; white-space: nowrap; font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.hero-strip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lavender); margin: 0 20px; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-strip__track { animation: none; } }

/* ---------------- Problem ---------------- */
.problem-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .25s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-card__no { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--pink-deep); margin-bottom: 12px; }
.problem-card__t { font-size: 19px; font-weight: 600; }
.problem-card__d { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }
.problem-card--cta {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px;
  background: linear-gradient(135deg, var(--lavender-100), var(--pink-soft)); border: none;
}
.problem-card__cta-text { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--ink); }

/* ---------------- Solution ---------------- */
.solution__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.solution__head { position: sticky; top: 96px; }
.app-preview {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-items: start;
}
.app-screen {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 10px 10px 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.app-screen--offset { margin-top: 26px; }
.app-screen__img {
  display: block; width: 100%; height: auto;
  border-radius: 14px 14px 0 0;
  background: var(--lavender-50);
}
.app-screen__chrome { display: flex; justify-content: center; padding: 6px 0 10px; }
.app-screen__notch { width: 46px; height: 5px; border-radius: 999px; background: var(--lavender-100); }
.app-screen__drop {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: 1.5px dashed rgba(139,92,246,0.32);
  background:
    repeating-linear-gradient(-45deg, rgba(167,139,250,0.06) 0 11px, rgba(167,139,250,0) 11px 22px),
    linear-gradient(160deg, var(--lavender-50), #fff);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 14px;
}
.app-screen__drop--pink {
  border-color: rgba(236,111,180,0.32);
  background:
    repeating-linear-gradient(-45deg, rgba(249,168,212,0.08) 0 11px, rgba(249,168,212,0) 11px 22px),
    linear-gradient(160deg, var(--pink-soft), #fff);
}
.app-screen__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--purple-dark);
  box-shadow: 0 3px 10px rgba(124,58,237,0.12);
}
.app-screen__drop--pink .app-screen__icon { color: var(--pink-deep); }
.app-screen__label { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.app-screen__hint {
  font-family: var(--font-mono, monospace); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-faint);
}
.app-screen__cap {
  padding: 12px 4px 14px; text-align: center;
  font-family: var(--font-display); font-weight: 500; font-size: 13px; color: var(--ink-soft);
}

.solution__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { padding: 26px; }
.feature-card__icon {
  width: 42px; height: 42px; border-radius: 13px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--lavender-100), var(--pink-soft));
  display: flex; align-items: center; justify-content: center;
}
.feature-card__icon span { width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(135deg, var(--purple), var(--pink-deep)); }
.feature-card__t { font-size: 18px; font-weight: 600; }
.feature-card__d { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------------- Occasions ---------------- */
.occ-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.occ-card { position: relative; cursor: default; }
.occ-card .ph { transition: transform .25s ease, box-shadow .25s ease; }
.occ-card:hover .ph { transform: translateY(-5px) scale(1.015); box-shadow: var(--shadow-md); }
.occ-card__name {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink);
  background: rgba(255,255,255,0.92); padding: 8px 12px; border-radius: 12px; text-align: center;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(3px);
}

/* ---------------- Categories ---------------- */
.cat-chips { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--surface, #fff); border: 1px solid var(--line, rgba(0,0,0,0.08));
  font-size: 15px; font-weight: 500; color: var(--ink, #1a1320);
  box-shadow: 0 1px 2px rgba(60,30,90,0.04);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  cursor: default;
}
.cat-chip:hover { background: var(--lavender-50); border-color: var(--purple); color: var(--purple-dark); transform: translateY(-2px); }
.cat-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }

/* ---------------- How it works ---------------- */
.steps { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); }
.step { position: relative; text-align: left; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; box-shadow: var(--shadow-purple);
}
.step__t { font-size: 21px; font-weight: 600; }
.step__d { margin-top: 8px; color: var(--ink-soft); font-size: 15.5px; }
.step__connector { position: absolute; top: 22px; right: -28px; width: 28px; height: 2px; background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px); }
.how-note {
  margin: 44px auto 0; max-width: 640px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; color: var(--ink-soft); background: #fff; border: 1px solid var(--border);
  padding: 16px 24px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.how-note__icon { color: var(--pink-deep); }

/* ---------------- Conversion sections (customer + seller) ---------------- */
.conv__inner { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 64px); align-items: start; position: relative; z-index: 1; }
.conv__inner--reverse { grid-template-columns: 0.92fr 1.08fr; }
.conv__copy { position: sticky; top: 96px; }
.eyebrow--pink { color: var(--pink-deep); }
.eyebrow--pink .dot { background: var(--purple); }
.perk-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.perk { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; font-family: var(--font-display); }
.perk__tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); display: flex; align-items: center; justify-content: center; }
.conv__aside { margin-top: 30px; display: flex; align-items: center; gap: 14px; }
.conv__avatars { display: flex; }
.av { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -12px; box-shadow: var(--shadow-sm); }
.av:first-child { margin-left: 0; }
.av--1 { background: #EBDDFB center/cover no-repeat url("images/user-1.png"); }
.av--2 { background: #DCE6F7 center/cover no-repeat url("images/user-2.png"); }
.av--3 { background: #F3D9C9 center/cover no-repeat url("images/user-3.png"); }
.av--4 { background: #DDE3D9 center/cover no-repeat url("images/user-4.png"); }
.conv__aside-text { font-size: 14px; color: var(--ink-soft); }

/* Seller benefit list */
.benefit-list { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }
.benefit { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
.benefit:last-child { border-bottom: none; }
.benefit__no { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--pink-deep); flex-shrink: 0; padding-top: 2px; }

/* Form internals */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row--3 { grid-template-columns: 1fr 1.4fr; }
.form-foot { margin-top: 16px; text-align: center; font-size: 13px; color: var(--ink-faint); }

/* Thank you */
.thanks { text-align: center; padding: 30px 10px; display: flex; flex-direction: column; align-items: center; }
.thanks__badge { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-purple); }
.thanks__title { margin-top: 22px; font-size: 28px; font-weight: 700; }
.thanks__sub { margin-top: 10px; color: var(--ink-soft); font-size: 16px; max-width: 320px; margin-left: auto; margin-right: auto; }
.thanks .btn { margin-top: 24px; }

/* ---------------- Seller teaser (customer page) ---------------- */
.seller-teaser__card {
  position: relative;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: clamp(20px, 4vw, 48px);
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-100));
  border: 1px solid rgba(236,111,180,0.20);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.seller-teaser__title { font-size: clamp(24px, 3.2vw, 34px); margin-top: 16px; max-width: 18ch; }
.seller-teaser__text { margin-top: 14px; font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-soft); max-width: 52ch; line-height: 1.7; }
.seller-teaser__action { flex-shrink: 0; }
@media (max-width: 760px) {
  .seller-teaser__card { grid-template-columns: 1fr; }
  .seller-teaser__action .btn { width: 100%; }
}

/* ---------------- Footer cross-sell CTA ---------------- */
.footer__cross {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  padding-bottom: 40px; margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__cross-text { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 24px); color: #fff; }

/* ---------------- Trust ---------------- */
.trust-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.trust-card__status { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--purple-dark); }
.trust-card__pulse { width: 9px; height: 9px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,0.16); }
.trust-card__d { margin-top: 10px; color: var(--ink-soft); font-size: 14.5px; }
.trust-foot { margin: 34px auto 0; max-width: 700px; text-align: center; font-size: 14.5px; color: var(--ink-faint); }

/* ---------------- Final CTA ---------------- */
.final { background: linear-gradient(180deg, var(--light-lavender), #fff); overflow: hidden; }
.final__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.final__title { font-size: clamp(32px, 5vw, 56px); font-weight: 700; margin-top: 20px; letter-spacing: -0.02em; }
.final__text { margin-top: 20px; font-size: clamp(16px, 1.8vw, 19px); color: var(--ink-soft); }
.final__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------------- Footer ---------------- */
.footer { background: #16121F; color: #E5E1EC; padding: 64px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.footer__tag { margin-top: 16px; color: #A79FB8; font-size: 15px; max-width: 320px; }
.footer__socials { margin-top: 20px; display: flex; gap: 10px; }
.footer__social { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); font-family: var(--font-display); font-weight: 600; font-size: 13px; color: #fff; transition: background .2s; }
.footer__social:hover { background: var(--purple); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col-h { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #fff; margin-bottom: 14px; }
.footer__link { display: block; color: #A79FB8; font-size: 14.5px; padding: 6px 0; transition: color .15s; }
.footer__link:hover { color: #fff; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #847C96; }

/* ---------------- Sticky mobile CTA ---------------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  display: none; gap: 10px; padding: 10px; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); transform: translateY(140%); transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.sticky-cta--show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 14.5px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hdr__nav, .hdr__actions { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; order: 2; }
  .solution__inner { grid-template-columns: 1fr; }
  .solution__head { position: static; }
  .solution__features { grid-template-columns: repeat(2, 1fr); }
  .conv__inner, .conv__inner--reverse { grid-template-columns: 1fr; }
  .conv__copy { position: static; }
  .occ-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .sticky-cta { display: flex; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step__connector { display: none; }
  .solution__features { grid-template-columns: 1fr; }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-row, .form-row--3 { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .final__cta { flex-direction: column; align-items: stretch; }
  .footer__bottom { flex-direction: column; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero__chip--avail { left: 0; }
  .hero__chip--search { right: 0; }
  .section { padding: 56px 0; }
  body { padding-bottom: 78px; }
}
