/* ============================================================
   INZRA — Premium backlinks marketplace
   ------------------------------------------------------------
   00. Design tokens
   01. Reset & base
   02. Layout helpers
   03. Buttons & controls
   04. Loader, progress, ambient shapes
   05. Navigation
   06. Hero + link map + stats
   07. Ticker
   08. Categories
   09. Marketplace packages
   10. Why choose us
   11. Pricing
   12. Reviews
   13. Process timeline
   14. Blog
   15. FAQ
   16. Newsletter
   17. Footer & scroll-to-top
   18. Reveal animations
   19. Responsive
   ============================================================ */


/* ============================================================
   00. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand palette */
  --blue:   #2563EB;
  --violet: #7C3AED;
  --cyan:   #06B6D4;
  --green:  #22C55E;
  --ink:    #0F172A;
  --page:   #F8FAFC;

  /* Light theme surfaces */
  --bg:          #F8FAFC;
  --bg-tint:     #F1F5FC;
  --surface:     #FFFFFF;
  --glass:       rgba(255, 255, 255, 0.66);
  --glass-strong:rgba(255, 255, 255, 0.86);
  --line:        rgba(15, 23, 42, 0.09);
  --line-soft:   rgba(15, 23, 42, 0.055);

  /* Text */
  --text:    #0F172A;
  --text-2:  #334155;
  --muted:   #64748B;
  --on-dark: #F8FAFC;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 100%);
  --grad-soft:  rgba(37,99,235,.07);
  --grad-text:  var(--blue);

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15,23,42,.05);
  --sh-sm: 0 2px 8px rgba(15,23,42,.06);
  --sh-md: 0 12px 30px -12px rgba(15,23,42,.16);
  --sh-lg: 0 30px 60px -24px rgba(15,23,42,.24);
  --sh-glow: 0 10px 24px -12px rgba(37,99,235,.35);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing */
  --shell: 1220px;
  --gutter: 24px;
  --section-y: 116px;

  /* Motion */
  --ease: cubic-bezier(.22, .68, .36, 1);
  --t-fast: .18s var(--ease);
  --t: .32s var(--ease);
  --t-slow: .6s var(--ease);
}

/* ============================================================
   01. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
  font-weight: 600;
}

p { margin: 0 0 1em; }
img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(124,58,237,.22); color: var(--text); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -60px; left: 20px; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: var(--r-sm);
  transition: top var(--t);
}
.skip-link:focus { top: 16px; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-tint); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue), var(--violet));
  border-radius: 99px;
  border: 3px solid var(--bg-tint);
}


/* ============================================================
   02. LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding-block: var(--section-y); position: relative; }

.section--tint {
  background: var(--bg-tint);
  border-block: 1px solid var(--line-soft);
}

.section__head { max-width: 680px; margin-bottom: 56px; }

.section__more { text-align: center; margin-top: 44px; }

.section__head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section__head--split > div { max-width: 620px; }

.section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 600;
  margin-bottom: .45em;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

/* Eyebrow label with live dot */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--grad-soft);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: blip 2.4s var(--ease) infinite;
}
@keyframes blip {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* Glass surface */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}


/* ============================================================
   03. BUTTONS & CONTROLS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-brand);
  background-size: 180% 180%;
  color: #fff;
  box-shadow: var(--sh-glow);
  animation: gradShift 9s ease infinite;
}
.btn--primary:hover { box-shadow: 0 22px 46px -16px rgba(124,58,237,.65); }

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.btn--glass {
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn--glass:hover { border-color: rgba(37,99,235,.45); color: var(--blue); }

.btn--ghost { color: var(--text-2); padding-inline: 14px; }
.btn--ghost:hover { color: var(--blue); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1E293B; }

.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Ripple */
.ripple .ripple__wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,.45);
  animation: ripple .62s linear;
  pointer-events: none;
}
.btn--glass .ripple__wave,
.btn--ghost .ripple__wave { background: rgba(37,99,235,.25); }

@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* Icon button */
.icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--text-2);
  transition: color var(--t), border-color var(--t), transform var(--t);
}
.icon-btn:hover { color: var(--violet); border-color: rgba(124,58,237,.45); transform: translateY(-2px); }

/* Star ratings */
.stars { color: #F59E0B; font-size: .82rem; letter-spacing: 1px; }
.stars--sm { font-size: .78rem; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-full);
}
.badge--live { background: rgba(34,197,94,.14); color: #15803D; }

.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  animation: blip 1.8s infinite;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem;
  color: var(--blue);
}
.link-arrow i { transition: transform var(--t); }
.link-arrow:hover i { transform: translateX(5px); }


/* ============================================================
   04. LOADER, PROGRESS, AMBIENT SHAPES
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-content: center; justify-items: center;
  gap: 22px;
  background: var(--bg);
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }

.loader__mark {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: 22px;
  background: var(--grad-brand);
  color: #fff; font-size: 1.5rem;
  box-shadow: var(--sh-glow);
  animation: markPulse 1.6s var(--ease) infinite;
}
@keyframes markPulse {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-10px) rotate(8deg); }
}

.loader__text {
  font-family: var(--font-mono);
  font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  margin: 0;
}
.loader__dots::after {
  content: '';
  animation: dots 1.4s steps(4, end) infinite;
}
@keyframes dots {
  0% { content: ''; } 25% { content: '.'; }
  50% { content: '..'; } 75% { content: '...'; }
}

.loader__bar {
  width: 190px; height: 3px;
  border-radius: 99px; overflow: hidden;
  background: var(--line);
}
.loader__bar span {
  display: block; height: 100%; width: 40%;
  background: var(--grad-brand);
  border-radius: 99px;
  animation: loadSlide 1.2s var(--ease) infinite;
}
@keyframes loadSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(340%); }
}

/* Scroll progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 200;
  background: transparent; pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 0%;
  background: var(--grad-brand);
  box-shadow: 0 0 14px rgba(124,58,237,.6);
}

/* Ambient background */
.ambient {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .14;
}
.orb--1 {
  width: 520px; height: 520px; top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(37,99,235,.55), transparent 70%);
  animation: drift 22s ease-in-out infinite;
}
.orb--2 {
  width: 460px; height: 460px; top: 22%; right: -140px;
  background: radial-gradient(circle, rgba(37,99,235,.4), transparent 70%);
  animation: drift 28s ease-in-out infinite reverse;
}
.orb--3 {
  width: 400px; height: 400px; bottom: 4%; left: 30%;
  background: radial-gradient(circle, rgba(37,99,235,.3), transparent 70%);
  animation: drift 34s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, 50px) scale(1.12); }
  66%      { transform: translate(-40px, 30px) scale(.94); }
}

.grid-fade {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 30%, transparent 75%);
}


/* ============================================================
   05. NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  padding-block: 16px;
  transition: padding var(--t), background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding-block: 9px;
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-brand);
  box-shadow: var(--sh-glow);
  transition: transform var(--t);
}
.brand:hover .brand__mark { transform: rotate(-10deg) scale(1.06); }
.brand__mark svg {
  width: 22px; height: 22px;
  fill: none; stroke: #fff;
  stroke-width: 2.1; stroke-linecap: round;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.16rem;
  letter-spacing: -.03em; color: var(--text);
}
.brand__name span {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
.nav__links { display: flex; align-items: center; gap: 4px; }

.nav__link {
  position: relative;
  font-size: .93rem; font-weight: 500;
  color: var(--text-2);
  padding: 9px 14px;
  border-radius: var(--r-full);
  transition: color var(--t), background var(--t);
}
.nav__link::after {
  content: '';
  position: absolute; left: 50%; bottom: 3px;
  width: 0; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--t);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 20px; }
.nav__link.is-active { color: var(--text); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__mobile-actions { display: none; }

/* Burger */
.nav__burger { display: none; flex-direction: column; gap: 4px; }
.nav__burger span {
  display: block; width: 17px; height: 2px;
  border-radius: 2px; background: currentColor;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* ============================================================
   06. HERO
   ============================================================ */
.hero {
  padding-top: 168px;
  padding-bottom: 90px;
  position: relative;
}

.hero__copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 16px 8px 14px;
  border-radius: var(--r-full);
  box-shadow: var(--sh-xs);
  margin: 0 auto 22px;
}
.hero__kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: blip 2.4s var(--ease) infinite;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.4rem, 5.1vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.hero__typed-wrap { display: block; font-size: 1.18em; min-height: 2.3em; }

.hero__typed {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.caret {
  display: inline-block;
  width: 3px; height: .92em;
  margin-left: 3px;
  vertical-align: -.08em;
  background: var(--blue);
  border-radius: 2px;
  animation: caret .9s steps(1) infinite;
}
@keyframes caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

.hero__sub {
  font-size: 1.09rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero__tactics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
}
.hero__tactics li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--glass);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 30px; }

.hero__assurances {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px;
  font-size: .87rem; color: var(--muted);
}
.hero__assurances li { display: inline-flex; align-items: center; gap: 8px; }
.hero__assurances i { color: var(--green); font-size: .9rem; }

/* Animated statistics */
.stats {
  margin-top: 76px;
  padding: 34px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--sh-md);
}
.stat { text-align: center; padding-inline: 12px; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute; left: 0; top: 12%;
  width: 1px; height: 76%;
  background: var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  font-weight: 700; letter-spacing: -.04em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  font-size: .84rem; color: var(--muted);
  letter-spacing: .01em;
}


/* ============================================================
   07. LIVE PLACEMENT TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-block: 13px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex; gap: 42px; width: max-content;
  animation: marquee 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  font-family: var(--font-mono);
  font-size: .76rem; color: var(--muted);
  white-space: nowrap;
}
.ticker__track b { color: var(--blue); }
@keyframes marquee { to { transform: translateX(-50%); } }


/* ============================================================
   08. CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat {
  position: relative;
  padding: 28px 24px 22px;
  border-radius: var(--r-lg);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.cat::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity var(--t);
}
.cat > * { position: relative; }
.cat:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: rgba(124,58,237,.35);
}
.cat:hover::before { opacity: 1; }

.cat__icon {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 15px;
  margin-bottom: 18px;
  font-size: 1.15rem; color: #fff;
  background: var(--grad-brand);
  background-size: 160% 160%;
  box-shadow: var(--sh-glow);
  transition: transform var(--t);
}
.cat:hover .cat__icon { transform: translateY(-3px) rotate(-8deg) scale(1.07); }

.cat h3 { font-size: 1.08rem; margin-bottom: .4em; }
.cat p { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }

.cat__meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue);
}
.cat__meta i { transition: transform var(--t); }
.cat:hover .cat__meta i { transform: translateX(5px); }


/* ============================================================
   09. MARKETPLACE PACKAGES
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pkg {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pkg:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: rgba(37,99,235,.35);
}
.pkg--hot { border-color: rgba(124,58,237,.4); }

/* Screenshot */
.pkg__shot { position: relative; overflow: hidden; }
.pkg__shot .shot {
  width: 100%; height: auto; display: block;
  transition: transform var(--t-slow);
}
.pkg:hover .pkg__shot .shot { transform: scale(1.05); }

.shot__bg   { fill: var(--bg-tint); }
.shot__chrome { fill: rgba(15,23,42,.06); }
.shot__dot  { fill: rgba(15,23,42,.16); }
.shot__url  { fill: rgba(15,23,42,.08); }
.shot__h    { fill: rgba(15,23,42,.3); }
.shot__t    { fill: rgba(15,23,42,.13); }
.shot__a    { fill: var(--blue); opacity: .82; }
.shot__img  { fill: rgba(37,99,235,.18); }
.shot__pin  { fill: var(--violet); }
.shot__spark { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.shot__bars rect { fill: var(--violet); opacity: .55; }

/* Per-card thumbnail tint */
.shot--tech  .shot__img { fill: rgba(37,99,235,.22); }
.shot--pbn   .shot__img { fill: rgba(124,58,237,.2); }
.shot--fin   .shot__img { fill: rgba(6,182,212,.2); }
.shot--local .shot__img { fill: rgba(34,197,94,.18); }
.shot--news  .shot__img { fill: rgba(37,99,235,.18); }

.pkg__discount {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, #EF4444, #F97316);
  padding: 5px 11px; border-radius: var(--r-full);
  box-shadow: 0 8px 18px -8px rgba(239,68,68,.8);
}

.pkg__ribbon {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--grad-brand);
  padding: 5px 13px; border-radius: var(--r-full);
  box-shadow: var(--sh-glow);
}

.pkg__wish {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #64748B;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), color var(--t), background var(--t);
}
.pkg__wish:hover { transform: scale(1.12); color: #EF4444; }
.pkg__wish.is-saved { color: #EF4444; background: #fff; }
.pkg__wish.is-saved i { animation: pop .4s var(--ease); }
@keyframes pop {
  0% { transform: scale(1); } 50% { transform: scale(1.45); } 100% { transform: scale(1); }
}

.pkg__flag {
  position: absolute; bottom: 12px; left: 12px;
  font-size: .72rem; font-weight: 600;
  color: var(--text);
  background: var(--glass-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 11px; border-radius: var(--r-full);
  border: 1px solid var(--line);
}

/* Body */
.pkg__body { display: flex; flex-direction: column; flex: 1; padding: 22px; }

.pkg__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 8px;
}
.pkg__name { font-size: 1.09rem; margin: 0; }
.pkg__niche {
  flex: none;
  font-size: .7rem; font-weight: 600;
  color: var(--violet);
  background: rgba(124,58,237,.1);
  padding: 4px 10px; border-radius: var(--r-full);
}

.pkg__rating { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.pkg__reviews { font-size: .78rem; color: var(--muted); }

/* Metrics block: gauge + mono readout */
.pkg__metrics {
  display: flex; align-items: center; gap: 16px;
  padding: 14px;
  border-radius: var(--r-md);
  background: var(--bg-tint);
  border: 1px solid var(--line-soft);
  margin-bottom: 20px;
}

.gauge { flex: none; text-align: center; }
.gauge__ring {
  --deg: calc(var(--val) * 3.6deg);
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0deg, var(--cyan) var(--deg), var(--line) var(--deg));
  position: relative;
}
.gauge__ring::before {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: var(--surface);
}
.gauge__ring b {
  position: relative;
  font-family: var(--font-mono);
  font-size: .95rem; font-weight: 700;
  color: var(--text);
}
.gauge__cap {
  display: block; margin-top: 5px;
  font-family: var(--font-mono);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; color: var(--muted);
}

.readout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}
.readout li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .74rem;
  border-bottom: 1px dotted var(--line);
  padding-bottom: 3px;
}
.readout span { color: var(--muted); }
.readout b { color: var(--text); font-weight: 700; }
.readout .ok { color: var(--green); }

/* Footer of card */
.pkg__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.price { display: flex; align-items: baseline; gap: 9px; }
.price__now {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--text); letter-spacing: -.03em;
}
.price__now em { font-size: .82rem; font-style: normal; color: var(--muted); font-weight: 500; }
.price__was {
  font-size: .87rem; color: var(--muted);
  text-decoration: line-through;
}


/* ============================================================
   09b. PRODUCT STORE (eBay listing import)
   ============================================================ */
.store-tools {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.store-search {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.store-search i {
  position: absolute; left: 18px;
  color: var(--muted);
  font-size: .9rem;
  pointer-events: none;
}
.store-search input {
  width: 100%;
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--text);
  padding: 13px 18px 13px 44px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color var(--t);
}
.store-search input::placeholder { color: var(--muted); }
.store-search input:focus { outline: none; border-color: var(--blue); }

.store-select {
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 600;
  color: var(--text);
  padding: 13px 40px 13px 20px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: var(--surface);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748B' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.store-select:focus { outline: none; border-color: var(--blue); }

.store-count { font-size: .88rem; color: var(--muted); margin-bottom: 24px; }

.store-empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.store-empty.is-visible { display: block; }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.listing {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.listing:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: rgba(37,99,235,.35);
}

.listing__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-tint);
}
.listing__img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--t-slow);
}
.listing:hover .listing__img { transform: scale(1.06); }

.listing__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}

.listing__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.listing__cat {
  font-family: var(--font-mono);
  font-size: .64rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
}
.listing__badge {
  flex-shrink: 0;
  font-size: .66rem; font-weight: 700;
  padding: 4px 9px; border-radius: var(--r-full);
}
.listing__badge--soldout { background: rgba(100,116,139,.16); color: var(--muted); }
.listing__badge--seller { background: rgba(34,197,94,.14); color: #15803D; }

.listing__name {
  font-size: .98rem;
  line-height: 1.35;
  margin-bottom: 14px;
  flex: 1;
}

.listing__meta {
  display: flex; gap: 14px;
  font-size: .78rem; color: var(--muted);
  margin-bottom: 16px;
}
.listing__meta i { margin-right: 4px; }

.listing__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.listing__price {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); letter-spacing: -.02em;
}

.btn--sm { padding: 8px 16px; font-size: .82rem; }


/* ============================================================
   09c. PRODUCT DETAIL PAGE
   ============================================================ */
.pdp__crumb {
  font-size: .85rem; color: var(--muted);
  margin-bottom: 22px;
}
.pdp__crumb a { color: var(--muted); }
.pdp__crumb a:hover { color: var(--blue); }
.pdp__crumb i { font-size: .65rem; margin: 0 6px; }

/* Hero: visual art panel + sticky buy box */
.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.pdp__art {
  aspect-ratio: 1 / 1;
  max-height: 440px;
  border-radius: var(--r-xl);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.pdp__art-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 0;
}
.pdp__art::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.35) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .4;
  z-index: 1;
}
.pdp__art-badge {
  position: absolute; bottom: 18px; left: 18px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  background: rgba(15,23,42,.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 13px;
  border-radius: var(--r-full);
}
.pdp__art--1, .pdp__art--2, .pdp__art--3, .pdp__art--4, .pdp__art--5 {
  background: var(--bg-tint);
  border: 1px solid var(--line);
}

.pdp__buy {
  padding: 32px;
  border-radius: var(--r-xl);
  position: sticky;
  top: 100px;
}

.pdp__buy-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 14px;
}

.pdp__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 10px;
}

.pdp__google-rating {
  display: flex; align-items: center; gap: 7px;
  font-size: .85rem;
  margin-bottom: 14px;
}
.pdp__google-rating .fa-google { color: #4285F4; font-size: .92rem; }
.pdp__google-stars { display: inline-flex; gap: 1px; color: #FBBF24; font-size: .78rem; }
.pdp__google-count { color: var(--muted); font-weight: 600; }

/* eBay-style urgency row: "N sold" + stock level */
.pdp__rating-row {
  display: flex; align-items: center; gap: 14px;
  font-size: .85rem;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.pdp__sold-badge { color: #B45309; font-weight: 700; }
.pdp__stock { color: var(--muted); }
.pdp__stock--low { color: #DC2626; font-weight: 700; }

.pdp__price {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 18px;
}

.pdp__cta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pdp__cta-row .btn--primary { flex: 1; }
.pdp__watch {
  position: static;
  width: auto; height: auto;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: .88rem; font-weight: 600;
  padding: 15px 20px;
  box-shadow: none;
}
.pdp__watch.is-saved { border-color: rgba(239,68,68,.4); }

.pdp__note {
  font-size: .82rem; color: var(--muted);
  margin: 12px 0 0;
}

/* eBay-style info rows: delivery / returns / buyer protection */
.pdp__infolist { margin: 22px 0 0; display: grid; gap: 15px; }
.pdp__infolist li { display: flex; align-items: flex-start; gap: 12px; font-size: .86rem; }
.pdp__infolist i { color: var(--blue); margin-top: 3px; width: 16px; text-align: center; flex-shrink: 0; }
.pdp__infolist b { display: block; color: var(--text); font-size: .87rem; font-weight: 600; }
.pdp__infolist span { color: var(--muted); }

/* eBay-style seller card */
.pdp__seller {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.pdp__seller-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-full);
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: #fff; font-size: .95rem;
}
.pdp__seller-info { display: flex; flex-direction: column; gap: 2px; font-size: .84rem; }
.pdp__seller-info b { color: var(--text); font-size: .9rem; }
.pdp__seller-info span { color: var(--muted); }
.pdp__seller-info a { color: var(--blue); font-weight: 600; }
.pdp__seller-info a:hover { text-decoration: underline; }

/* Body sections below the hero */
.pdp__body {
  max-width: 720px;
  margin: 0 0 56px;
}
.pdp__body h2, .pdp__specs h2, .pdp__features h2, .pdp__related h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

/* eBay-style "Item specifics" table */
.pdp__specs { max-width: 720px; margin: 0 0 56px; }
.pdp__specs-table {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pdp__spec {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 20px;
  font-size: .88rem;
  border-bottom: 1px solid var(--line-soft);
}
.pdp__spec:last-child { border-bottom: none; }
.pdp__spec:nth-child(odd) { background: var(--bg-tint); }
.pdp__spec span { color: var(--muted); flex-shrink: 0; }
.pdp__spec b { color: var(--text); font-weight: 600; text-align: right; }

.pdp__features { margin-bottom: 56px; }

.pdp__related {
  margin-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}

.pdp__back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: .9rem; font-weight: 600;
  color: var(--blue);
}

/* ============================================================
   10. WHY CHOOSE US
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feat {
  padding: 26px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(6,182,212,.4);
}

.feat__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--violet);
  background: var(--grad-soft);
  border: 1px solid var(--line);
  transition: transform var(--t), color var(--t);
}
.feat:hover .feat__icon {
  color: var(--cyan);
  transform: translateY(-3px) scale(1.08);
  animation: nudge .6s var(--ease);
}
@keyframes nudge {
  0%, 100% { rotate: 0deg; } 30% { rotate: -9deg; } 65% { rotate: 7deg; }
}

.feat h3 { font-size: 1rem; margin-bottom: .35em; }
.feat p { font-size: .87rem; color: var(--muted); margin: 0; }


/* ============================================================
   11. PRICING
   ============================================================ */
.toggle {
  display: inline-flex; gap: 4px;
  margin-top: 26px; padding: 5px;
  border-radius: var(--r-full);
  background: var(--glass-strong);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
}
.toggle__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .87rem; font-weight: 600;
  color: var(--muted);
  padding: 9px 19px;
  border-radius: var(--r-full);
  transition: background var(--t), color var(--t);
}
.toggle__btn.is-active {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.toggle__save {
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,.14);
  padding: 2px 7px; border-radius: var(--r-full);
}
.toggle__btn.is-active .toggle__save { color: #fff; background: rgba(255,255,255,.22); }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan {
  position: relative;
  padding: 34px 28px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.plan--featured {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-brand) border-box;
  border: 2px solid transparent;
  box-shadow: var(--sh-lg);
}
.plan__badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: .69rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--grad-brand);
  padding: 6px 15px; border-radius: var(--r-full);
  box-shadow: var(--sh-glow);
  white-space: nowrap;
}

.plan__name { font-size: 1.2rem; margin-bottom: .25em; }
.plan__for { font-size: .87rem; color: var(--muted); min-height: 42px; }

.plan__price {
  display: flex; align-items: flex-start; gap: 2px;
  margin: 14px 0 22px;
}
.plan__cur {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--muted); margin-top: 8px;
}
.plan__amt {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  letter-spacing: -.045em; color: var(--text);
  line-height: 1;
}
.plan__per {
  align-self: flex-end;
  font-size: .87rem; color: var(--muted);
  margin-bottom: 5px; margin-left: 4px;
}

.plan__list { margin-top: 24px; display: grid; gap: 12px; }
.plan__list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .89rem; color: var(--text-2);
}
.plan__list i {
  flex: none; margin-top: 4px;
  font-size: .7rem; color: var(--green);
  background: rgba(34,197,94,.14);
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
}


/* ============================================================
   12. REVIEWS
   ============================================================ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rev {
  margin: 0;
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t);
}
.rev:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

.rev__head { display: flex; align-items: center; gap: 13px; margin-bottom: 13px; }

.avatar {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: .82rem; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--a), var(--b));
  box-shadow: var(--sh-sm);
}

.rev figcaption {
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem;
  color: var(--text);
  display: flex; align-items: center; gap: 7px;
}
.verified { color: var(--blue); font-size: .8rem; }
.rev__meta { font-size: .78rem; color: var(--muted); }

.rev blockquote {
  margin: 12px 0 0;
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.7;
}


/* ============================================================
   13. PROCESS TIMELINE
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before {
  content: '';
  position: absolute; left: 23px; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--violet), var(--cyan));
  opacity: .28;
  border-radius: 2px;
}

.tl {
  position: relative;
  display: flex; gap: 26px;
  padding-bottom: 26px;
}
.tl:last-child { padding-bottom: 0; }

.tl__num {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: .95rem; font-weight: 700;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--sh-glow);
  border: 4px solid var(--bg-tint);
  z-index: 1;
  transition: transform var(--t);
}
.tl:hover .tl__num { transform: scale(1.1); }

.tl__card {
  flex: 1;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.tl:hover .tl__card {
  transform: translateX(6px);
  box-shadow: var(--sh-md);
  border-color: rgba(37,99,235,.32);
}
.tl__card h3 { font-size: 1.05rem; margin-bottom: .4em; }
.tl__card p { font-size: .89rem; color: var(--muted); margin-bottom: 12px; }

.tl__time {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,.1);
  padding: 5px 11px; border-radius: var(--r-full);
}


/* ============================================================
   14. BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.post {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.post:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: rgba(124,58,237,.32);
}

.post__img {
  position: relative;
  height: 178px;
  background: var(--bg-tint);
  transition: transform var(--t-slow);
}
.post:hover .post__img { transform: scale(1.04); }

.post__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  position: relative; z-index: 0;
}

.post__img--1 { background: linear-gradient(135deg, #2563EB, #7C3AED); }
.post__img--2 { background: linear-gradient(135deg, #7C3AED, #06B6D4); }
.post__img--3 { background: linear-gradient(135deg, #06B6D4, #22C55E); }

.post__img::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
}

.post__tag {
  position: absolute; bottom: 14px; left: 16px; z-index: 1;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
  background: rgba(15,23,42,.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.24);
}

.post__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post__body time {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted);
}
.post__body h3 { font-size: 1.06rem; margin: 10px 0 .5em; }
.post__body p { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.post__body .link-arrow { margin-top: auto; }

/* --- Blog article page --- */
.article__title {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 12px 0 14px;
  max-width: 760px;
}
.article__meta {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: 32px;
}
.article__meta time { font-family: var(--font-mono); }

.article__cover {
  aspect-ratio: 16 / 8;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.article__cover img { width: 100%; height: 100%; object-fit: contain; }

.article__body { max-width: 720px; }
.article__body p { color: var(--text-2); margin-bottom: 20px; line-height: 1.75; }
.article__body h2 { font-size: 1.3rem; margin: 40px 0 16px; letter-spacing: -.02em; }
.article__body a { color: var(--blue); font-weight: 600; }
.article__body a:hover { text-decoration: underline; }

.article__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-top: 48px;
  padding: 26px 28px;
  border-radius: var(--r-lg);
}
.article__cta h3 { font-size: 1.05rem; margin-bottom: 4px; }
.article__cta p { color: var(--muted); font-size: .9rem; }


/* ============================================================
   15. FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; }

.faq__item {
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq__item:hover { border-color: rgba(37,99,235,.3); }
.faq__item.is-open { border-color: rgba(124,58,237,.4); box-shadow: var(--sh-md); }

.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; text-align: left;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--text);
  transition: color var(--t);
}
.faq__q:hover { color: var(--blue); }
.faq__q i {
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: .72rem; color: var(--violet);
  background: var(--grad-soft);
  transition: transform var(--t), background var(--t), color var(--t);
}
.faq__item.is-open .faq__q i {
  transform: rotate(135deg);
  background: var(--grad-brand);
  color: #fff;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}
.faq__a p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: .92rem;
  color: var(--muted);
}


/* ============================================================
   16. NEWSLETTER
   ============================================================ */
.news {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 62px 32px;
  text-align: center;
  background: var(--grad-brand);
  background-size: 220% 220%;
  animation: gradShift 14s ease infinite;
  box-shadow: var(--sh-lg);
}
.news__inner { position: relative; z-index: 1; max-width: 620px; margin-inline: auto; }

.news__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.28), transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,.2), transparent 46%);
}

.news__title { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.news__sub { color: rgba(255,255,255,.86); font-size: 1rem; margin-bottom: 28px; }

.news__form {
  display: flex; gap: 10px;
  max-width: 500px; margin-inline: auto;
}

.field {
  position: relative; flex: 1;
  display: flex; align-items: center;
}
.field i {
  position: absolute; left: 17px;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  pointer-events: none;
}
.field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: .94rem;
  color: #fff;
  padding: 14px 18px 14px 44px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color var(--t), background var(--t);
}
.field input::placeholder { color: rgba(255,255,255,.66); }
.field input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255,255,255,.22);
}
.field.has-error input { border-color: #FCA5A5; background: rgba(239,68,68,.2); }

.news__note {
  margin: 16px 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
}
.news__note.is-ok { color: #DCFCE7; font-weight: 600; }
.news__note.is-error { color: #FEE2E2; font-weight: 600; }


/* ============================================================
   17. FOOTER & SCROLL-TO-TOP
   ============================================================ */
.footer {
  background: var(--ink);
  color: #94A3B8;
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 40px 28px;
  padding-bottom: 52px;
}

.footer__brand p {
  font-size: .88rem;
  color: #94A3B8;
  max-width: 320px;
  margin: 18px 0 20px;
}
.footer .brand__name { color: #fff; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #CBD5E1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform var(--t), background var(--t), color var(--t);
}
.socials a:hover {
  transform: translateY(-3px);
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
}

.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h3 {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: #fff; margin-bottom: 6px;
}
.footer__col a { font-size: .88rem; color: #94A3B8; width: fit-content; }
.footer__col a:hover { color: #fff; transform: translateX(3px); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .84rem;
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: #fff; }

/* Scroll to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 140;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--sh-glow);
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(.85);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { transform: translateY(-4px) scale(1.06); }


/* ============================================================
   18. REVEAL ANIMATIONS (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Stagger inside grids */
.cat-grid .reveal:nth-child(2),  .feat-grid .reveal:nth-child(2),
.pkg-grid .reveal:nth-child(2),  .rev-grid .reveal:nth-child(2),
.plan-grid .reveal:nth-child(2), .blog-grid .reveal:nth-child(2),
.listing-grid .reveal:nth-child(2) { transition-delay: .07s; }

.cat-grid .reveal:nth-child(3),  .feat-grid .reveal:nth-child(3),
.pkg-grid .reveal:nth-child(3),  .rev-grid .reveal:nth-child(3),
.plan-grid .reveal:nth-child(3), .blog-grid .reveal:nth-child(3),
.listing-grid .reveal:nth-child(3) { transition-delay: .14s; }

.cat-grid .reveal:nth-child(4), .feat-grid .reveal:nth-child(4),
.pkg-grid .reveal:nth-child(4), .rev-grid .reveal:nth-child(4),
.listing-grid .reveal:nth-child(4) { transition-delay: .21s; }

.cat-grid .reveal:nth-child(n+5),
.feat-grid .reveal:nth-child(n+5),
.listing-grid .reveal:nth-child(n+5) { transition-delay: .1s; }

.timeline .reveal:nth-child(2) { transition-delay: .08s; }
.timeline .reveal:nth-child(3) { transition-delay: .16s; }
.timeline .reveal:nth-child(4) { transition-delay: .24s; }
.timeline .reveal:nth-child(5) { transition-delay: .32s; }


/* ============================================================
   19. RESPONSIVE
   ============================================================ */

/* Laptop */
@media (max-width: 1140px) {
  :root { --section-y: 96px; }

  .cat-grid, .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid, .blog-grid, .rev-grid, .listing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 96px 24px 32px;
    background: var(--glass-strong);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    transform: translateY(-102%);
    transition: transform .42s var(--ease);
    max-height: 100dvh;
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }

  .nav__link { padding: 14px 16px; font-size: 1rem; border-radius: var(--r-md); }
  .nav__link:hover { background: var(--grad-soft); }
  .nav__link::after { display: none; }

  .nav__mobile-actions {
    display: grid; gap: 10px;
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .nav__burger { display: inline-flex; }
  .nav__login, .nav__actions > .btn--primary { display: none; }

  /* Logo and controls stay above the sliding panel */
  .nav .brand, .nav__actions { position: relative; z-index: 2; }

  .hero { padding-top: 132px; }
  .hero__sub { max-width: none; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }

  .plan-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .plan__for { min-height: 0; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }

  .pdp-grid { grid-template-columns: 1fr; }
  .pdp__buy { position: static; }
  .pdp__art { max-height: 280px; }
}

/* Small tablet / large phone */
@media (max-width: 780px) {
  :root { --section-y: 76px; --gutter: 20px; }

  .cat-grid, .feat-grid,
  .pkg-grid, .blog-grid, .rev-grid, .listing-grid { grid-template-columns: repeat(2, 1fr); }

  .section__head { margin-bottom: 38px; }
  .section__head--split { align-items: flex-start; }

  .store-tools { flex-wrap: wrap; }
}

/* Mobile */
@media (max-width: 620px) {
  body { font-size: 15.5px; }

  .cat-grid, .feat-grid,
  .pkg-grid, .blog-grid, .rev-grid, .listing-grid { grid-template-columns: 1fr; }

  .hero { padding-top: 118px; padding-bottom: 62px; }
  .hero__cta .btn { width: 100%; }
  .hero__assurances { gap: 8px 16px; font-size: .82rem; }

  .stats { margin-top: 48px; padding: 24px 12px; }
  .stat + .stat::before { display: none; }

  .pkg__metrics { gap: 14px; }
  .readout { grid-template-columns: 1fr 1fr; }

  .timeline::before { left: 18px; }
  .tl { gap: 16px; }
  .tl__num { width: 38px; height: 38px; font-size: .82rem; border-width: 3px; }

  .news { padding: 44px 20px; border-radius: var(--r-lg); }
  .news__form { flex-direction: column; }
  .news__form .btn { width: 100%; }

  .store-tools { flex-direction: column; }
  .store-select { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .nav, .to-top, .progress, .ambient, .loader, .ticker { display: none !important; }
  body { background: #fff; color: #000; }
}
