/* =========================================================
   QeRetail — Mobile-First Redesign for Shopify Jewelry
   Mobile-first. No frameworks. Manrope. Brand #367df9
   + warm luxury accents (ivory, champagne).
   ========================================================= */

:root {
  --c-primary: #367df9;
  --c-primary-strong: #1e4ed8;
  --c-primary-soft: #eaf2ff;

  --c-bg: #ffffff;
  --c-bg-alt: #f7f9fc;
  --c-bg-soft: #eaf2ff;

  /* Luxury warm tones */
  --c-cream: #fdfaf5;
  --c-cream-2: #fbf4e6;
  --c-cream-3: #f7f1e3;
  --c-champagne: #f5dd95;
  --c-champagne-deep: #c89f44;
  --c-gold-ink: #8a6c2f;
  --c-gold-line: #ecdfc7;

  --c-ink: #1a1a1a;
  --c-ink-2: #5f6b7a;
  --c-ink-3: #94a3b8;
  --c-border: #e3e8ef;

  --c-success: #22c55e;
  --c-warn: #ef4444;

  --c-dark: #0b0805;
  --c-dark-2: #1c1208;
  --c-dark-3: #2a1c0d;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;

  --sh-sm: 0 2px 8px rgba(63, 42, 19, 0.04);
  --sh-md: 0 14px 36px rgba(63, 42, 19, 0.08);
  --sh-lg: 0 28px 60px rgba(63, 42, 19, 0.12);
  --sh-glow: 0 18px 60px rgba(54, 125, 249, 0.30);
  --sh-warm: 0 14px 40px rgba(138, 108, 47, 0.12);

  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  margin: 0; line-height: 1.2; font-weight: 700;
  letter-spacing: -0.02em; color: var(--c-ink);
}
p { margin: 0; }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; border-radius: 4px; }
input { font-family: inherit; }

/* -------- Layout primitives -------- */
.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: 20px;
  margin-inline: auto;
}
.section { padding: 72px 0; position: relative; }
.section--light { background: var(--c-bg-alt); }
.section--soft { background: var(--c-cream); }
.section--dark {
  background: linear-gradient(180deg, #100c08 0%, #1c1208 100%);
  color: #e7e0d0;
}
.section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head--left { text-align: left; margin: 0; max-width: none; }
.section__head--light h2, .section__head--light .section__sub { color: #fafaf5; }
.section__head--light .section__sub { color: #b9a988; }
.section__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.section__title--left { text-align: left; }
.section__sub {
  color: var(--c-ink-2); font-size: 16px; line-height: 1.65;
  max-width: 640px; margin: 0 auto;
}
.section__sub--left { margin: 0; }

/* -------- Utilities -------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 7px 12px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--c-champagne); background: rgba(245, 221, 149, 0.12); }
.eyebrow__dot { width: 6px; height: 6px; background: var(--c-primary); border-radius: 50%; box-shadow: 0 0 0 3px rgba(54,125,249,0.18); }
.eyebrow--light .eyebrow__dot { background: var(--c-champagne); box-shadow: 0 0 0 3px rgba(245, 221, 149, 0.18); }

.text-grad {
  background: linear-gradient(120deg, #367df9 0%, #9f3df7 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.text-grad-light {
  background: linear-gradient(120deg, #93c5fd 0%, #f5dd95 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap; min-height: 44px;
}
.btn--lg { padding: 15px 24px; font-size: 15px; border-radius: 14px; min-height: 52px; }
.btn--sm { padding: 9px 14px; font-size: 13px; border-radius: 10px; min-height: 0; }
.btn--full { width: 100%; }
.btn--primary { background: var(--c-primary); color: #fff; box-shadow: 0 8px 22px rgba(54,125,249,0.28); }
.btn--primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 32px rgba(54,125,249,0.40); background: var(--c-primary-strong); }
.btn--ghost { background: #fff; color: var(--c-ink); border-color: var(--c-gold-line); }
.btn--ghost:hover { transform: translateY(-2px) scale(1.02); border-color: var(--c-primary); color: var(--c-primary); box-shadow: var(--sh-md); }
.btn--white { background: #fff; color: var(--c-ink); }
.btn--white:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }
.btn--outline-light { background: transparent; color: #fafaf5; border-color: rgba(245, 221, 149, 0.35); }
.btn--outline-light:hover { transform: translateY(-2px) scale(1.02); border-color: var(--c-champagne); background: rgba(245, 221, 149, 0.08); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   STICKY TOP BAR
   ========================================================= */
.topbar {
  background: linear-gradient(90deg, #1c1208 0%, #2a1c0d 100%);
  color: #fafaf5;
  font-size: 13px;
  border-bottom: 1px solid rgba(245, 221, 149, 0.08);
  position: sticky; top: 0; z-index: 60;
}
.topbar.is-hidden { display: none; }
.topbar__inner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-champagne);
  box-shadow: 0 0 0 4px rgba(245, 221, 149, 0.22);
  animation: tbPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tbPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(245, 221, 149, 0.22); } 50% { box-shadow: 0 0 0 9px rgba(245, 221, 149, 0); } }
.topbar strong { font-weight: 600; letter-spacing: 0.01em; }
.topbar__sep { color: rgba(245, 221, 149, 0.35); }
.topbar__sub { color: rgba(250, 250, 245, 0.78); }
.topbar__cta {
  margin-left: auto;
  font-weight: 600;
  color: var(--c-champagne);
  padding: 4px 11px; border-radius: 999px;
  background: rgba(245, 221, 149, 0.08);
  border: 1px solid rgba(245, 221, 149, 0.18);
  transition: background .25s, color .25s, border-color .25s;
  letter-spacing: 0.04em;
}
.topbar__cta:hover { background: var(--c-champagne); color: #1c1208; border-color: var(--c-champagne); }
.topbar__close {
  background: transparent; border: 0; color: rgba(250, 250, 245, 0.5);
  padding: 4px 6px; border-radius: 6px;
  transition: color .25s, background .25s;
}
.topbar__close:hover { color: #fafaf5; background: rgba(245, 221, 149, 0.08); }

@media (max-width: 640px) {
  .topbar__sub, .topbar__sep { display: none; }
  .topbar__inner { font-size: 12px; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 250, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(236, 223, 199, 0.6);
  transition: box-shadow .3s var(--ease);
}
.topbar:not(.is-hidden) ~ .nav { top: 40px; }
.nav__inner {
  display: flex; align-items: center; gap: 12px;
  padding-block: 14px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__links { display: none; margin-left: 28px; gap: 24px; font-weight: 600; font-size: 14px; color: var(--c-ink); }
.nav__links a { padding: 6px 0; transition: color .25s; }
.nav__links a:hover { color: var(--c-primary); }
.nav__cta { display: none; gap: 10px; margin-left: auto; }
.nav__toggle {
  margin-left: auto;
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 1px solid var(--c-gold-line);
  border-radius: 10px; padding: 10px;
}
.nav__toggle span { display: block; width: 20px; height: 1.6px; background: var(--c-ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px 20px 22px;
  border-top: 1px solid var(--c-gold-line);
  background: var(--c-cream);
}
.nav__mobile a {
  padding: 12px; border-radius: 10px; font-weight: 600;
}
.nav__mobile a:hover { background: var(--c-cream-2); color: var(--c-gold-ink); }
.nav__mobile .btn { margin-top: 6px; }

@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__mobile { display: none !important; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #fdfaf5 0%, #ffffff 60%);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero__bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(245, 221, 149, 0.25), transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 100%, rgba(245, 221, 149, 0.15), transparent 60%);
}
.hero__bg-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.55; }
.hero__bg-blob--a { width: 520px; height: 520px; top: -200px; right: -140px; background: radial-gradient(circle, rgba(245, 221, 149, 0.55), transparent 70%); }
.hero__bg-blob--b { width: 420px; height: 420px; bottom: -160px; left: -120px; background: radial-gradient(circle, rgba(54, 125, 249, 0.18), transparent 70%); }

.hero__inner {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
.hero__headline {
  font-size: clamp(32px, 6.4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero__sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--c-ink-2);
  margin-bottom: 14px;
  max-width: 560px;
  line-height: 1.7;
}
.hero__sub--alt { color: var(--c-ink); font-weight: 600; margin-bottom: 28px; }

.cta-row { margin-bottom: 28px; }

.trust-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 26px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 18px;
  box-shadow: var(--sh-sm);
}
.trust-strip li { display: flex; flex-direction: column; gap: 2px; }
.trust-strip b { font-weight: 700; font-size: 15px; color: var(--c-ink); letter-spacing: -0.01em; }
.trust-strip span { font-size: 11px; color: var(--c-ink-2); font-weight: 500; letter-spacing: 0.02em; }

.shopify-block {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--c-ink-2);
}
.shopify-block p { max-width: 280px; line-height: 1.5; }

/* Hero visual */
.hero__visual { display: flex; flex-direction: column; gap: 36px; align-items: center; }
.hero__phone-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.hero__phone {
  width: 100%; height: auto;
  filter: drop-shadow(0 30px 64px rgba(63, 42, 19, 0.22));
}
.hero__chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: #fff; box-shadow: var(--sh-md);
  font-weight: 600; font-size: 12px; color: var(--c-ink);
  border: 1px solid var(--c-gold-line);
  white-space: nowrap;
}
.hero__chip--a { top: 7%; left: -8%; }
.hero__chip--b { top: 36%; right: -10%; }
.hero__chip--c { bottom: 11%; left: -8%; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--gold { background: var(--c-champagne); box-shadow: 0 0 0 3px rgba(245, 221, 149, 0.28); }
.dot--blue { background: var(--c-primary); box-shadow: 0 0 0 3px rgba(54, 125, 249, 0.18); }

@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-float { animation: phoneFloat 7.5s ease-in-out infinite; }

/* Hero form */
.lead-form {
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--sh-warm);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.lead-form__head { margin-bottom: 20px; }
.lead-form__pill {
  display: inline-block;
  background: linear-gradient(90deg, #367df9, #9f3df7);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.20em;
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.lead-form h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.2; }
.lead-form__head p { font-size: 13px; color: var(--c-ink-2); line-height: 1.6; }
.lead-form__field { margin-bottom: 14px; }
.lead-form__field label {
  display: block;
  font-size: 12px; font-weight: 600; color: var(--c-ink-2);
  margin-bottom: 6px; letter-spacing: 0.04em;
}
.lead-form__field input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 12px;
  color: var(--c-ink);
  transition: border-color .25s, box-shadow .25s;
  min-height: 50px;
}
.lead-form__field input::placeholder { color: var(--c-ink-3); }
.lead-form__field input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(54,125,249,0.12); }
.lead-form__field input.is-invalid { border-color: var(--c-warn); box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10); }
.lead-form button[type="submit"] { margin-top: 8px; }
.lead-form__trust {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--c-ink-2);
  margin-top: 16px;
  line-height: 1.5;
}
.lead-form__success {
  position: absolute; inset: 0;
  background: #fff;
  border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px;
  animation: ldfFade .4s var(--ease);
}
@keyframes ldfFade { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
.lead-form__success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lead-form__success h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.02em; }
.lead-form__success p { font-size: 14px; color: var(--c-ink-2); max-width: 320px; line-height: 1.6; }

@media (min-width: 980px) {
  .hero { padding: 72px 0 110px; }
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
  .hero__visual { align-items: stretch; }
}

/* =========================================================
   WHY US
   ========================================================= */
.why__grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
.why-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 20px;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(54,125,249,0.35); }
.why-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-cream-2);
  margin-bottom: 16px;
}
.why-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; letter-spacing: -0.01em; }
.why-card p { color: var(--c-ink-2); font-size: 14px; line-height: 1.6; }

.why__highlight {
  margin-top: 40px;
  padding: 30px 32px;
  background: linear-gradient(180deg, #1c1208 0%, #2a1c0d 100%);
  color: #fafaf5;
  border-radius: 24px;
  display: flex; align-items: center; gap: 26px;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.why__highlight::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(245, 221, 149, 0.18), transparent 70%);
  pointer-events: none;
}
.why__highlight-line {
  width: 4px; height: 60px; border-radius: 2px;
  background: linear-gradient(180deg, #f5dd95, #c89f44);
  flex-shrink: 0; position: relative;
}
.why__highlight p { font-size: clamp(16px, 2.2vw, 19px); font-weight: 500; line-height: 1.5; position: relative; }
.why__highlight b { color: var(--c-champagne); font-weight: 700; }

@media (min-width: 720px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.ba__grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: center;
}
.ba-side { margin: 0; width: 100%; max-width: 380px; }
.ba-side__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.ba-side__label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-ink);
}
.ba-side__tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.ba-side__tag--warn { background: #fee2e2; color: #b91c1c; }
.ba-side__tag--ok { background: var(--c-cream-3); color: var(--c-gold-ink); }

.ba-side__phone {
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 28px;
  box-shadow: var(--sh-md);
}
.ba-side--before .ba-side__phone {
  background: repeating-linear-gradient(45deg, #fef2f2, #fef2f2 10px, #ffffff 10px, #ffffff 20px);
}
.ba-side--after .ba-side__phone {
  background: radial-gradient(ellipse at top right, rgba(245, 221, 149, 0.20), transparent 60%), #fff;
}
.ba-side__phone img { width: 100%; height: auto; margin: 0 auto; }

.ba-side figcaption ul { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.ba-side figcaption li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.x, .check {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.x { background: #fee2e2; }
.x::before, .x::after { content: ""; position: absolute; width: 10px; height: 2px; background: #b91c1c; }
.x::before { transform: rotate(45deg); }
.x::after { transform: rotate(-45deg); }
.check { background: var(--c-cream-3); }
.check::after {
  content: "";
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%238a6c2f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/></svg>") center/contain no-repeat;
}

.ba__arrow {
  display: flex; align-items: center; justify-content: center;
  transform: rotate(90deg);
}
.ba__cta {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

@media (min-width: 980px) {
  .ba__grid { grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: start; }
  .ba__arrow { transform: rotate(0); margin-top: 220px; }
}

/* =========================================================
   PAIN POINTS
   ========================================================= */
.pain__grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
.pain-chip {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 20px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pain-chip:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(239, 68, 68, 0.3); }
.pain-chip__num {
  font-weight: 700; font-size: 11px; letter-spacing: 0.22em;
  color: #c0805f;
}
.pain-chip h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }

@media (min-width: 720px) { .pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pain__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   WHAT YOU'LL GET — FREE
   ========================================================= */
.freeget__layout {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
.freeget__head .btn { margin-top: 20px; }
.freeget__list {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  background: #fff;
  padding: 28px 26px;
  border-radius: 28px;
  border: 1px solid var(--c-gold-line);
  box-shadow: var(--sh-warm);
}
.freeget__list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-gold-line);
}
.freeget__list li:last-child { border-bottom: 0; }
.freeget__list li span {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-cream-2);
  position: relative; flex-shrink: 0;
}
.freeget__list li span::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%238a6c2f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

@media (min-width: 720px) { .freeget__list { grid-template-columns: 1fr 1fr; gap: 12px 36px; } }
@media (min-width: 980px) { .freeget__layout { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 64px; } }

/* =========================================================
   PRICING
   ========================================================= */
.pricing__grid { display: grid; gap: 22px; grid-template-columns: 1fr; align-items: stretch; }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 28px;
  padding: 32px 26px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(54,125,249,0.4); }
.plan__head { display: flex; flex-direction: column; gap: 10px; padding-top:25px }
.plan__name { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ink-2); }
.plan__price { font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; color: var(--c-ink); }
.plan__currency { font-size: 24px; font-weight: 600; vertical-align: super; color: var(--c-ink-2); margin-right: 3px; }
.plan__pitch { color: var(--c-ink-2); font-size: 14px; line-height: 1.6; }
.plan__list { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.plan__list li { display: flex; align-items: center; gap: 12px; }
.tick { width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: var(--c-cream-2); position: relative; }
.tick::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%238a6c2f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.tick--light { background: rgba(245, 221, 149, 0.18); }
.tick--light::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23f5dd95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/></svg>");
}
.plan__save {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-radius: 12px;
  background: rgba(245, 221, 149, 0.16);
  color: var(--c-champagne);
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
}

.plan--featured {
  background: linear-gradient(180deg, #1c1208 0%, #2a1c0d 100%);
  color: #fafaf5;
  border-color: rgba(245, 221, 149, 0.30);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.plan--featured::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(245, 221, 149, 0.16), transparent 70%);
  pointer-events: none;
}
.plan--featured > * { position: relative; }
.plan--featured .plan__name { color: var(--c-champagne); }
.plan--featured .plan__price { color: #fafaf5; }
.plan--featured .plan__currency { color: #b9a988; }
.plan--featured .plan__pitch { color: rgba(250, 250, 245, 0.78); }
.plan--featured .plan__list li { color: #fafaf5; }
.plan__badge {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #f5dd95, #c89f44);
  color: #1c1208; font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  padding: 7px 16px; border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(200, 159, 68, 0.4);
}
.pricing__note { text-align: center; color: var(--c-ink-2); font-size: 13px; margin-top: 32px; }

@media (min-width: 980px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .plan--featured { transform: translateY(-12px) scale(1.03); }
  .plan--featured:hover { transform: translateY(-16px) scale(1.04); }
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio .section__title { color: #fafaf5; }
.portfolio .section__sub { color: #b9a988; }
.portfolio__grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  justify-items: center;
}
.folio-card {
  margin: 0;
  text-align: center;
  transition: transform .4s var(--ease);
  width: 100%;
  max-width: 300px;
}
.folio-card:hover { transform: translateY(-8px); }
.folio-card img { width: 100%; max-width: 280px; height: auto; margin: 0 auto; filter: drop-shadow(0 32px 50px rgba(0,0,0,0.5)); }
.folio-card figcaption { margin-top: 20px; }
.folio-card h4 { font-size: 16px; color: #fafaf5; font-weight: 700; letter-spacing: -0.01em; }
.folio-card span { font-size: 12px; color: var(--c-champagne); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

@media (min-width: 720px) { .portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   REASONS
   ========================================================= */
.reasons__list {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
.reason-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 18px;
  box-shadow: var(--sh-sm);
  font-weight: 500; font-size: 15px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(54,125,249,0.4); }
.reason-card__icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--c-cream-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 720px) { .reasons__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .reasons__list { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quotes__grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
.quote {
  margin: 0;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 22px;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.quote__stars { color: var(--c-champagne-deep); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 16px; }
.quote blockquote {
  margin: 0;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--c-ink);
  line-height: 1.55;
  margin-bottom: 20px;
  font-style: italic;
}
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption img { width: 44px; height: 44px; border-radius: 50%; }
.quote figcaption b { display: block; font-size: 14px; font-weight: 700; }
.quote figcaption span { font-size: 12px; color: var(--c-ink-2); font-weight: 500; }

@media (min-width: 880px) { .quotes__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   FAQ
   ========================================================= */
.faq__layout { display: grid; gap: 36px; grid-template-columns: 1fr; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-gold-line);
  border-radius: 18px;
  transition: border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.faq-item[open] {
  border-color: rgba(54,125,249,0.5);
  box-shadow: 0 14px 28px rgba(54,125,249,0.08);
}
.faq-item:hover { border-color: rgba(54,125,249,0.35); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chev {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--c-cream-2);
  position: relative; flex-shrink: 0;
  transition: background .3s;
}
.faq-item__chev::before, .faq-item__chev::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 2px; background: var(--c-ink);
  transform-origin: center;
}
.faq-item__chev::before { transform: translate(-50%, -50%); }
.faq-item__chev::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq-item[open] .faq-item__chev { background: var(--c-primary); }
.faq-item[open] .faq-item__chev::before { background: #fff; }
.faq-item[open] .faq-item__chev::after { background: #fff; transform: translate(-50%, -50%) rotate(0deg); }
.faq-item__body {
  padding: 0 22px 22px;
  color: var(--c-ink-2); font-size: 14px; line-height: 1.7;
  animation: faqOpen .35s var(--ease);
}
@keyframes faqOpen { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 1024px) {
  .faq__layout { grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final { padding: 28px 0 100px; }
.final__card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(120% 80% at 100% 0%, #2a1c0d 0%, #1c1208 50%, #100c08 100%);
  color: #fafaf5;
  padding: 52px 30px;
  box-shadow: var(--sh-lg);
  isolation: isolate;
}
.final__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.final__blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.final__blob.a { width: 400px; height: 400px; top: -140px; left: -120px; background: rgba(245, 221, 149, 0.30); }
.final__blob.b { width: 340px; height: 340px; bottom: -140px; right: -100px; background: rgba(54, 125, 249, 0.30); }
.final__content { max-width: 760px; }
.final h2 {
  font-size: clamp(28px, 4.6vw, 40px);
  letter-spacing: -0.025em; color: #fafaf5; margin-bottom: 16px;
  font-weight: 700; line-height: 1.18;
}
.final__content > p { color: rgba(250, 250, 245, 0.78); font-size: clamp(15px, 2vw, 17px); margin-bottom: 26px; max-width: 640px; line-height: 1.65; }
.final .cta-row { margin-bottom: 26px; }
.final__trust {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  font-size: 13px; font-weight: 500; color: rgba(250, 250, 245, 0.85);
}
.final__trust li { display: inline-flex; align-items: center; gap: 8px; }
.final__trust svg { color: var(--c-champagne); }

@media (min-width: 720px) { .final__card { padding: 72px 56px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--c-cream); border-top: 1px solid var(--c-gold-line); padding: 60px 0 26px; }
.footer__inner { display: grid; gap: 36px; grid-template-columns: 1fr; margin-bottom: 36px; }
.footer__brand p { font-size: 14px; color: var(--c-ink-2); margin: 14px 0 16px; max-width: 320px; line-height: 1.6; }
.footer__col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ink); margin-bottom: 14px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--c-ink-2); transition: color .25s; }
.footer__col a:hover { color: var(--c-primary); }
.footer__col--cta p { color: var(--c-ink-2); font-size: 14px; margin-bottom: 14px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--c-gold-line);
  font-size: 13px; color: var(--c-ink-2);
}
.footer__legal { display: inline-flex; gap: 18px; }

@media (min-width: 720px) { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .phone-float { animation: none; }
}

/* =========================================================
   SMALL-SCREEN FINE TUNING
   ========================================================= */
@media (max-width: 520px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 32px; padding-bottom: 60px; }
  .hero__chip { font-size: 11px; padding: 8px 12px; }
  .hero__chip--a { left: -4%; }
  .hero__chip--b { right: -4%; }
  .hero__chip--c { left: -4%; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
  .shopify-block { flex-direction: column; align-items: flex-start; gap: 10px; }
  .why__highlight { flex-direction: column; align-items: flex-start; padding: 24px; }
  .why__highlight-line { width: 56px; height: 4px; }
  .lead-form { padding: 24px 20px; }
  .final__card { padding: 40px 24px; }
}
