/* ============================================================
   SNAPBOOST — DESIGN SYSTEM
   ============================================================ */
:root {
  --yellow: #FFFC00;
  --yellow-dark: #E8E500;
  --yellow-glow: rgba(255, 252, 0, 0.25);
  --yellow-subtle: rgba(255, 252, 0, 0.05);
  --black: #0a0a0a;
  --card-bg: #111111;
  --card-border: #1c1c1c;
  --white: #f5f5f5;
  --muted: #888;
  --muted-light: #aaa;
  --green: #00e676;
  --red: #ff4757;
  --blue: #448aff;
  --max-w: 1100px;
  --radius: 14px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img, svg, video { max-width: 100%; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 100;
}
a { color: inherit; text-decoration: none; }

/* ============================================================ HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(10,10,10,0.9); backdrop-filter: blur(24px);
  border-bottom: 1px solid #1a1a1a;
}
.logo {
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.logo .hl { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--muted); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: #161616; }
.nav-cta { background: var(--yellow) !important; color: var(--black) !important; font-weight: 700 !important; margin-left: 8px; }
.nav-cta:hover { background: var(--yellow-dark) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 1001; background: none; border: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
    background: #0d0d0d; flex-direction: column; align-items: flex-start;
    padding: 80px 24px 24px; gap: 4px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid #1a1a1a;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 15px; }
  .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .site-header { padding: 14px 20px; }
}

/* ============================================================ LAYOUT */
main { padding-top: 64px; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 20px 0; }
.section-sm { padding: 20px 0; }
.section-header { text-align: center; margin-bottom: 10px; }
.section-header h2 { font-family: 'Space Mono', monospace; font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 12px; }
.section-header h2 .hl { color: var(--yellow); }
.section-header p { color: var(--muted-light); font-size: 15px; max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* ============================================================ HERO */
.hero { text-align: center; padding: 30px 24px 30px; position: relative; }
.hero::before {
  content: ''; position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%); width: min(600px, 100vw); height: min(600px, 100vw);
  background: radial-gradient(circle, var(--yellow-subtle) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #161600; border: 1px solid #2a2a00; color: var(--yellow);
  font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 30px;
  margin-bottom: 24px; animation: fadeIn 0.5s ease-out;
}
.hero-pill .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-family: 'Space Mono', monospace; font-size: clamp(34px, 7vw, 60px);
  font-weight: 700; line-height: 1.05; margin-bottom: 8px;
  animation: fadeIn 0.5s ease-out 0.1s both;
}
.hero h1 .hl { color: var(--yellow); }
.hero .sub { font-size: 15px; color: #b8b8b8; font-weight: 400; max-width: 560px; margin: 0 auto 15px; line-height: 1.8; animation: fadeIn 0.5s ease-out 0.2s both; }.hero-cta {
  display: inline-block; background: var(--yellow); color: var(--black);
  font-weight: 800; font-size: 16px; padding: 16px 40px; border-radius: 12px;
  border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px;
  transition: all 0.3s; box-shadow: 0 4px 24px rgba(255,252,0,0.2);
  animation: fadeIn 0.5s ease-out 0.3s both;
}
.hero-cta:hover { background: var(--yellow-dark); box-shadow: 0 6px 36px rgba(255,252,0,0.35); transform: translateY(-2px); }

/* ============================================================ PRICING CARDS v2 */
.pricing-section { padding: 20px 0 20px; }

.pricing-grid {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 10px;
  padding: 20px 24px 32px;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: #222 transparent;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.pricing-grid:active { cursor: grabbing; }
.pricing-grid::-webkit-scrollbar { height: 4px; }
.pricing-grid::-webkit-scrollbar-track { background: transparent; }
.pricing-grid::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }
.pricing-grid::before,
.pricing-grid::after { content: ''; flex: 0 0 8px; min-width: 8px; }

.card {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  flex: 0 0 145px;
  min-width: 145px;
  scroll-snap-align: center;
}

.card.small-card {
  opacity: 0.72;
  flex: 0 0 140px;
  min-width: 140px;
}
.card.small-card:hover { opacity: 1; transform: translateY(-3px); }

.card.mid-card {
  flex: 0 0 160px;
  min-width: 160px;
}
.card.mid-card:hover { transform: translateY(-4px); border-color: #333; }

/* Popular — yellow glow (100K) */
.card.popular {
  flex: 0 0 140px;
  min-width: 140px;
  transform: none;
  z-index: 2;
  opacity: 1;
  padding: 28px 20px;
  border: 2px solid var(--yellow);
}
.card.popular:not(.bestval) {
  background: linear-gradient(170deg, #1a1a00 0%, #0f0f0f 50%);
  box-shadow: 0 0 40px rgba(255,252,0,0.2), 0 0 80px rgba(255,252,0,0.08);
}
.card.popular:hover { transform: translateY(-6px); }
.card.popular:not(.bestval) .card-score { color: var(--yellow); font-size: 38px; }
.card.popular .card-price { font-size: 52px; }
.card.popular:not(.bestval) .card-cta {
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(255,252,0,0.3);
}
.card.popular:not(.bestval) .card-cta:hover {
  background: var(--yellow-dark);
  box-shadow: 0 6px 28px rgba(255,252,0,0.5);
  transform: translateY(-1px);
}

/* Best Value — green glow (1M) */
.card.popular.bestval {
  background: linear-gradient(170deg, #001a05 0%, #0f0f0f 50%);
  border: 2px solid var(--green);
  box-shadow: 0 0 40px rgba(0,230,118,0.2), 0 0 80px rgba(0,230,118,0.08);
}
.card.popular.bestval .card-score { color: var(--green); font-size: 38px; }
.card.popular.bestval .card-badge {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 2px 12px rgba(0,230,118,0.5);
}
.card.popular.bestval .card-cta {
  background: var(--green);
  color: var(--black);
  font-size: 14px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0,230,118,0.3);
}
.card.popular.bestval .card-cta:hover {
  background: #00c864;
  box-shadow: 0 6px 28px rgba(0,230,118,0.5);
  transform: translateY(-1px);
}

.card-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.card-badge.best { background: var(--yellow); color: var(--black); box-shadow: 0 2px 12px rgba(255,252,0,0.5); }
.card-badge.value { background: var(--green); color: var(--black); box-shadow: 0 2px 12px rgba(0,230,118,0.4); }

.card-score { font-family: 'Space Mono', monospace; font-size: 26px; font-weight: 700; margin-top: 12px; margin-bottom: 2px; }
.card-label { font-size: 12px; color: #444; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 18px; }
.card-price { font-size: 40px; font-weight: 900; margin-bottom: 4px; }
.card-price .dollar { font-size: 0.5em; vertical-align: baseline; position: static; top: auto; margin-right: 2px; }
.card-per-k { font-size: 11px; color: #555; margin-bottom: 14px; line-height: 1.4; }
.card-per-k .good { color: var(--green); font-weight: 700; }
.card-per-k .bad { color: var(--red); font-weight: 700; }
.card-save { font-size: 11px; font-weight: 800; color: #000; background: var(--green); border-radius: 20px; padding: 4px 12px; margin-bottom: 14px; letter-spacing: 0.5px; }
.card-nosave { height: 27px; margin-bottom: 16px; }
.card-features { list-style: none; width: 100%; margin-bottom: 18px; text-align: left; }
.card-features li { font-size: 12px; color: #777; padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.card-features li .check { color: var(--green); font-size: 14px; flex-shrink: 0; }
.card.popular .card-features li { color: #aaa; font-size: 13px; }

.card-cta {
  width: 100%; padding: 12px; border: none; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800;
  cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.25s; margin-top: auto; background: #1a1a1a; color: #888;
}
.card-cta:hover { background: #252525; color: #fff; }

.nudge { max-width: 520px; margin: 28px auto 0; text-align: center; padding: 14px 20px; background: rgba(68,138,255,0.04); border: 1px solid rgba(68,138,255,0.1); border-radius: var(--radius-sm); font-size: 13px; color: #777; line-height: 1.5; }
.nudge strong { color: var(--blue); }

.scroll-hint { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: #444; margin-bottom: 4px; }
@media (min-width: 769px) { .scroll-hint { display: none; } }

@media (max-width: 768px) {
  .pricing-grid { padding: 20px 16px 24px; gap: 10px; }
  .card.popular  { flex: 0 0 200px; min-width: 200px; }
  .card.mid-card { flex: 0 0 165px; min-width: 165px; }
  .card.small-card { flex: 0 0 150px; min-width: 150px; }
}

/* ============================================================ TRUST BAR */
.trust-bar { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 8px 24px; border-top: 1px solid #1a1a1a; max-width: 800px; margin: 0 auto; }
.trust-item { text-align: center; }
.trust-item .n { font-family: 'Space Mono', monospace; font-size: 26px; font-weight: 700; color: var(--yellow); }
.trust-item .l { font-size: 12px; color: #444; margin-top: 4px; }
@media (max-width: 768px) { .trust-bar { gap: 28px; } .trust-item .n { font-size: 20px; } }

/* ============================================================ STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: border-color 0.2s; }
.step-card:hover { border-color: #2a2a2a; }
.step-num { font-family: 'Space Mono', monospace; font-size: 40px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ============================================================ FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #1a1a1a; padding: 16px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; color: #ccc; }
.faq-q .arrow { transition: transform 0.3s; font-size: 16px; color: #444; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 13px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* ============================================================ PRODUCT PAGE */
.product-page { max-width: 860px; margin: 0 auto; padding: 16px 24px 10px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer; padding: 1px 0; margin-bottom: 10px; transition: color 0.2s; }
.back-link:hover { color: var(--white); }
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; margin-bottom: 52px; }
.product-visual { background: linear-gradient(145deg, #141410 0%, #0c0c0c 100%); border: 1px solid var(--card-border); border-radius: 20px; padding: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 280px; position: relative; overflow: hidden; }
.product-visual .ghost { font-size: 68px; margin-bottom: 12px; position: relative; z-index: 1; }
.product-visual .pv-amount { font-family: 'Space Mono', monospace; font-size: 42px; font-weight: 700; color: var(--yellow); position: relative; z-index: 1; }
.product-visual .pv-label { font-size: 12px; color: #444; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; margin-top: 4px; position: relative; z-index: 1; }
.product-info { padding-top: 4px; }
.pi-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 6px; margin-bottom: 14px; }
.pi-badge.pop-badge { background: rgba(255,252,0,0.12); color: var(--yellow); border: 1px solid rgba(255,252,0,0.2); }
.pi-badge.val-badge { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.15); }
.pi-badge.entry-badge { background: rgba(255,255,255,0.05); color: #888; border: 1px solid rgba(255,255,255,0.08); }
.product-info h2 { font-family: 'Space Mono', monospace; font-size: 24px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.product-info h2 .hl { color: var(--yellow); }
.product-info .pi-sub { font-size: 15px; color: var(--muted-light); line-height: 1.6; margin-bottom: 22px; }
.price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.price-block .big { font-size: 48px; font-weight: 900; }
.price-block .big sup { font-size: 0.5em; position: static; top: auto; vertical-align: baseline; }
.price-block .per { font-size: 14px; color: var(--muted); }
.price-block .per .g { color: var(--green); font-weight: 700; }
.price-block .per .r { color: var(--red); font-weight: 700; }
.pi-saving { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 24px; }
.buy-btn { display: block; width: 100%; padding: 17px; border: none; border-radius: 12px; background: var(--yellow); color: var(--black); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 24px rgba(255,252,0,0.2); margin-bottom: 12px; }
.buy-btn:hover { background: var(--yellow-dark); box-shadow: 0 6px 36px rgba(255,252,0,0.35); transform: translateY(-2px); }
.guarantee { font-size: 12px; color: #444; text-align: center; }
.upsell-box { background: rgba(255,252,0,0.04); border: 1px solid rgba(255,252,0,0.12); border-radius: 12px; padding: 16px 18px; margin-top: 16px; cursor: pointer; transition: border-color 0.2s; }
.upsell-box:hover { border-color: rgba(255,252,0,0.3); }
.upsell-box .ub-title { font-size: 14px; font-weight: 700; color: var(--yellow); margin-bottom: 4px; }
.upsell-box .ub-desc { font-size: 13px; color: #777; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.feat-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 20px; transition: border-color 0.2s; }
.feat-card:hover { border-color: #2a2a2a; }
.feat-card .fc-icon { font-size: 20px; margin-bottom: 8px; }
.feat-card .fc-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feat-card .fc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.how-section { margin-top: 60px; }
.how-section h3, .faq-section h3, .features-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.features-section { margin-top: 60px; }
.faq-section { margin-top: 60px; padding-bottom: 10px; }
.steps-row { display: flex; gap: 14px; }
.step { flex: 1; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 22px 16px; text-align: center; }
.step .step-num { font-family: 'Space Mono', monospace; font-size: 30px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.step .step-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.step .step-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
.faq-section { margin-top: 44px; padding-bottom: 40px; }
@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; gap: 8px; }
  .product-visual { min-height: 200px; padding: 36px; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .price-block .big { font-size: 40px; }
}

/* ============================================================ CHECKOUT */
.checkout-page { max-width: 600px; margin: 0 auto; padding: 40px 24px 80px; }
.checkout-page h1 { font-family: 'Space Mono', monospace; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.checkout-page .checkout-sub { font-size: 15px; color: var(--muted-light); margin-bottom: 32px; }
.checkout-summary { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px; margin-bottom: 28px; }
.checkout-summary .cs-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.checkout-summary .cs-row:not(:last-child) { border-bottom: 1px solid #1a1a1a; }
.cs-label { font-size: 14px; color: var(--muted-light); }
.cs-value { font-size: 14px; font-weight: 700; }
.cs-value.total { color: var(--yellow); font-size: 22px; }
.checkout-form label { display: block; font-size: 13px; color: var(--muted-light); font-weight: 600; margin-bottom: 6px; margin-top: 18px; }
.checkout-form input, .checkout-form select { width: 100%; padding: 14px 16px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s; }
.checkout-form input:focus, .checkout-form select:focus { border-color: var(--yellow); }
.checkout-form input::placeholder { color: #444; }
.checkout-btn { display: block; width: 100%; padding: 17px; border: none; border-radius: 12px; background: var(--yellow); color: var(--black); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 24px rgba(255,252,0,0.2); margin-top: 24px; }
.checkout-btn:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.checkout-secure { text-align: center; font-size: 12px; color: #444; margin-top: 12px; }
.checkout-form select option { background: #111; }
.error-msg { color: var(--red); font-size: 13px; margin-top: 6px; }

/* ============================================================ INFO PAGES */
.info-page { max-width: 740px; margin: 0 auto; padding: 48px 24px 80px; }
.info-page h1 { font-family: 'Space Mono', monospace; font-size: clamp(28px, 5vw, 40px); font-weight: 700; margin-bottom: 20px; line-height: 1.1; }
.info-page h1 .hl { color: var(--yellow); }
.info-page h3 { font-size: 18px; font-weight: 700; margin: 32px 0 10px; color: var(--white); }
.info-page p { font-size: 15px; color: var(--muted-light); line-height: 1.8; margin-bottom: 14px; }
.info-page a { color: var(--yellow); text-decoration: underline; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.contact-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 24px; transition: border-color 0.2s; }
.contact-card:hover { border-color: #2a2a2a; }
.cc-icon { font-size: 24px; margin-bottom: 10px; }
.cc-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================ BLOG */
.blog-page { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.blog-page h1 { font-family: 'Space Mono', monospace; font-size: clamp(26px, 5vw, 38px); font-weight: 700; margin-bottom: 8px; }
.blog-page .blog-sub { font-size: 15px; color: var(--muted-light); margin-bottom: 36px; }
.blog-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 24px; margin-bottom: 14px; cursor: pointer; transition: border-color 0.2s; display: block; }
.blog-card:hover { border-color: #2a2a2a; }
.blog-card-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--yellow); background: rgba(255,252,0,0.1); padding: 2px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; }
.blog-date { font-size: 12px; color: #444; }
.blog-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.blog-card-excerpt { font-size: 13px; color: #777; line-height: 1.6; }
.blog-post-page { max-width: 740px; margin: 0 auto; padding: 36px 24px 80px; }
.blog-post-page h1 { font-family: 'Space Mono', monospace; font-size: clamp(22px, 4vw, 34px); font-weight: 700; line-height: 1.2; margin: 16px 0 24px; }
.blog-post-page .post-body p { font-size: 15px; color: var(--muted-light); line-height: 1.8; margin-bottom: 18px; }
.blog-post-page .post-body h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; color: var(--white); }
.blog-cta-box { margin-top: 40px; padding-top: 24px; border-top: 1px solid #1a1a1a; text-align: center; }
.blog-cta-box p { font-size: 14px; color: #777; margin-bottom: 16px; }

/* ============================================================ SUCCESS / CANCEL */
.result-page { max-width: 560px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.result-icon { font-size: 64px; margin-bottom: 20px; }
.result-page h1 { font-family: 'Space Mono', monospace; font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.result-page p { font-size: 15px; color: var(--muted-light); line-height: 1.7; margin-bottom: 8px; }
.result-page .ref { font-family: 'Space Mono', monospace; font-size: 13px; color: #555; margin-top: 8px; }

/* ============================================================ FOOTER */
.site-footer { border-top: 1px solid #141414; padding: 18px 24px 24px; margin-top: 40px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .logo { margin-bottom: 12px; font-size: 16px; }
.footer-brand p { font-size: 13px; color: #444; line-height: 1.6; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #333; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: #555; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 20px; border-top: 1px solid #141414; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #333; flex-wrap: wrap; gap: 8px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================ REVIEWS */
.reviews-strip { 
  display: flex; 
  gap: 16px; 
  overflow-x: auto; 
  scrollbar-width: none; 
  padding-bottom: 4px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}
.reviews-strip::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 260px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 20px; }
.review-stars { color: var(--yellow); font-size: 12px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 10px; }
.review-author { font-size: 12px; font-weight: 700; color: #555; }

/* ============================================================ ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bounceX { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

/* ============================================================ ADMIN */
.admin-wrap { max-width: 960px; margin: 0 auto; padding: 36px 24px 80px; }
.admin-wrap h1 { font-family: 'Space Mono', monospace; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.admin-wrap h1 .hl { color: var(--yellow); }
.admin-tabs { display: flex; gap: 4px; margin: 24px 0 0; border-bottom: 1px solid #1a1a1a; padding-bottom: 0; overflow-x: auto; }
.admin-tab { background: none; border: none; color: #555; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; padding: 10px 18px; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap; }
.admin-tab:hover { color: var(--white); }
.admin-tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.admin-panel { display: none; padding-top: 24px; }
.admin-panel.active { display: block; }
.admin-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.admin-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.admin-field { margin-bottom: 14px; }
.admin-field label { display: block; font-size: 12px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.admin-field input, .admin-field select, .admin-field textarea { width: 100%; padding: 10px 14px; background: #0d0d0d; border: 1px solid #222; border-radius: 8px; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
.admin-field input:focus, .admin-field select:focus, .admin-field textarea:focus { border-color: var(--yellow); }
.admin-field textarea { resize: vertical; min-height: 80px; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.admin-btn { padding: 9px 18px; border: none; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.admin-btn-primary { background: var(--yellow); color: var(--black); }
.admin-btn-primary:hover { background: var(--yellow-dark); }
.admin-btn-secondary { background: #1a1a1a; color: #999; }
.admin-btn-secondary:hover { background: #252525; color: var(--white); }
.admin-btn-danger { background: rgba(255,71,87,0.1); color: var(--red); border: 1px solid rgba(255,71,87,0.2); }
.admin-btn-danger:hover { background: rgba(255,71,87,0.2); }
.admin-blog-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #1a1a1a; gap: 16px; }
.admin-blog-item:last-child { border-bottom: none; }
.admin-blog-info .title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.admin-blog-info .meta { font-size: 12px; color: #555; }
.admin-toast { position: fixed; bottom: 24px; right: 24px; background: #1a1a1a; border: 1px solid #2a2a2a; color: var(--white); padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; opacity: 0; transform: translateY(10px); transition: all 0.3s; pointer-events: none; z-index: 9999; }
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.stat-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 20px; text-align: center; }
.stat-card .stat-n { font-family: 'Space Mono', monospace; font-size: 28px; font-weight: 700; color: var(--yellow); }
.stat-card .stat-l { font-size: 12px; color: #555; margin-top: 4px; }
@media (max-width: 600px) { .admin-stats { grid-template-columns: 1fr 1fr; } }

/* ============================================================ LANGUAGE SWITCHER */
.lang-switcher { position: relative; margin-left: 4px; }
.lang-btn { background: none; border: 1px solid #1f1f1f; color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; padding: 6px 10px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.lang-btn:hover { color: var(--white); border-color: #2a2a2a; background: #161616; }
.lang-flag { font-size: 14px; }
.lang-code { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.5px; }
.lang-arrow { font-size: 10px; color: #555; }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; background: #0d0d0d; border: 1px solid #1f1f1f; border-radius: 10px; padding: 6px; min-width: 160px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.2s; z-index: 1000; box-shadow: 0 12px 32px rgba(0,0,0,0.6); }
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 6px; font-size: 13px; color: #999; transition: all 0.15s; cursor: pointer; }
.lang-option:hover { background: #161616; color: var(--white); }
.lang-option.active { background: rgba(255,252,0,0.08); color: var(--yellow); }
@media (max-width: 768px) {
  .lang-switcher { width: 100%; margin-left: 0; margin-top: 8px; }
  .lang-btn { width: 100%; justify-content: space-between; padding: 12px 16px; }
  .lang-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 6px; max-height: 200px; overflow-y: auto; display: none; }
  .lang-menu.open { display: block; }
}

/* ============================================================ TRANSLATIONS ADMIN */
.trans-row { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid #141414; }
.trans-key { font-family: 'Space Mono', monospace; font-size: 12px; color: #555; padding-top: 10px; word-break: break-all; }
.trans-key .en-preview { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; color: #333; margin-top: 4px; font-weight: 400; }
.trans-value textarea, .trans-value input { width: 100%; padding: 8px 12px; background: #0d0d0d; border: 1px solid #1f1f1f; border-radius: 6px; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; }
.trans-value textarea:focus, .trans-value input:focus { border-color: var(--yellow); outline: none; }
.trans-search { width: 100%; padding: 12px 16px; background: #0d0d0d; border: 1px solid #1f1f1f; border-radius: 8px; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; margin-bottom: 16px; }

/* ============================================================ RTL */
body.rtl { font-family: 'Tajawal', 'Plus Jakarta Sans', sans-serif; }
body.rtl .logo, body.rtl .card-score, body.rtl .step-num,
body.rtl .pv-amount, body.rtl .trust-item .n,
body.rtl h1, body.rtl h2, body.rtl h3 { font-family: 'Tajawal', 'Space Mono', monospace; }
/* ============================================================ OVERFLOW FIX */
.section, .section-sm, .pricing-section, .trust-bar,
.hero, .site-footer, .footer-inner, .footer-bottom {
  max-width: 100%;
  box-sizing: border-box;
}
/* ============================================================ MOBILE OVERFLOW FIXES */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

.site-header {
  width: 100%;
  max-width: 100vw;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .nav-links {
    max-width: 100vw;
  }

.reviews-strip {
    width: 100vw;
    max-width: 100vw;
    overflow-x: auto;
    padding: 0 16px 4px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .review-card {
    flex: 0 0 240px;
    min-width: 240px;
    max-width: 240px;
  }

  .section .container {
    overflow: hidden;
  }
}
/* Force all cards same size */
.card.popular,
.card.popular.bestval {
  flex: 0 0 140px !important;
  min-width: 140px !important;
  max-width: 140px !important;
  padding: 24px 18px !important;
}
/* Give badges room to show above cards */
.pricing-grid {
  padding-top: 18px !important;
}
/* All cards exactly same size */
.card,
.card.small-card,
.card.mid-card,
.card.popular,
.card.popular.bestval {
  flex: 0 0 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  width: 160px !important;
  padding: 24px 14px !important;
  font-size: inherit !important;
}

.card.popular .card-score,
.card.popular.bestval .card-score {
  font-size: 26px !important;
}

.card.popular .card-price,
.card.popular.bestval .card-price {
  font-size: 40px !important;
}

/* Services grid mobile */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr !important; }
}
/* Product image — fills the card frame */
.product-visual {
  padding: 0 !important;          /* remove the 48px padding so image goes edge-to-edge */
  overflow: hidden;
  min-height: 320px;
  align-items: stretch;
  justify-content: stretch;
}
.product-visual-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;              /* fills the frame, crops if needed */
  border-radius: 20px;            /* match parent border-radius */
  position: relative;
  z-index: 1;
  display: block;
}
@media (max-width: 768px) {
  .product-visual { min-height: 260px; }
  .product-visual-img { min-height: 260px; }
}
/* ============================================================ HOW IT WORKS — redesigned */
.how-it-works .how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Connecting line on desktop — subtle yellow gradient between the 3 badges */
.how-it-works .how-line {
  position: absolute;
  top: 52px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 252, 0, 0.25) 15%,
    rgba(255, 252, 0, 0.5) 50%,
    rgba(255, 252, 0, 0.25) 85%,
    transparent 100%);
  z-index: 0;
}

/* Each step block */
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Badge — number + icon stacked */
.how-badge {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.how-step:hover .how-badge {
  transform: translateY(-4px);
}

/* Icon circle — yellow-bordered circle that sits over the number */
.how-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, #141410 0%, #0a0a0a 100%);
  border: 2px solid rgba(255, 252, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 30px rgba(255, 252, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.how-step:hover .how-icon-wrap {
  border-color: var(--yellow);
  box-shadow: 0 0 40px rgba(255, 252, 0, 0.25);
}

.how-icon {
  font-size: 32px;
  line-height: 1;
}

/* Step text */
.how-content h3 {
  font-family: 'Space Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 10px;
  line-height: 1.3;
}
.how-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== MOBILE — vertical layout with left-aligned icons ===== */
@media (max-width: 768px) {
  .how-it-works .how-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  /* Vertical line on the left side */
  .how-it-works .how-line {
    top: 60px;
    bottom: 60px;
    left: 47px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(255, 252, 0, 0.25) 10%,
      rgba(255, 252, 0, 0.5) 50%,
      rgba(255, 252, 0, 0.25) 90%,
      transparent 100%);
  }

  .how-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .how-badge {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .how-content {
    padding-top: 14px;
    flex: 1;
  }

  .how-content p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .how-it-works .how-timeline { gap: 24px; }
  .how-it-works .how-line { left: 39px; }

  .how-badge {
    width: 80px;
    height: 80px;
  }
  .how-icon-wrap {
    width: 60px;
    height: 60px;
  }
  .how-icon {
    font-size: 26px;
  }
  
  .how-content { padding-top: 8px; }
  .how-content h3 { font-size: 15px; }
  .how-content p { font-size: 12.5px; }
}
/* ============================================================ TEXT READABILITY BUMP */
/* Lighten the dim greys used throughout the site (header, footer, hints, etc.) */
.site-footer,
.site-footer a,
.footer-bottom,
.footer-col a,
.nav-links a {
  color: #999;
}

.footer-col h4 {
  color: #888 !important;
}

.footer-brand p {
  color: #888;
}

/* Hover states stay bright */
.nav-links a:hover,
.footer-col a:hover {
  color: var(--white);
}
/* ============================================================ FORCE INLINE COLOR LIFT */
/* Many PHP files have hardcoded `style="color:#333"` etc.
   These overrides force them to be brighter without editing every file. */

[style*="color:#333"],
[style*="color: #333"],
[style*="color:#222"],
[style*="color: #222"] {
  color: #888 !important;
}

[style*="color:#444"],
[style*="color: #444"] {
  color: #999 !important;
}

[style*="color:#555"],
[style*="color: #555"] {
  color: #aaa !important;
}

[style*="color:#666"],
[style*="color: #666"] {
  color: #aaa !important;
}

[style*="color:#777"],
[style*="color: #777"] {
  color: #b0b0b0 !important;
}