/* ============= PRICING ============= */
.pricing .section-head { align-items: flex-start; }
.bill-toggle {
  position: relative; display: inline-flex; gap: 0; padding: 3px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; margin-top: 12px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
}
.bill-toggle button {
  position: relative; z-index: 2;
  padding: 8px 22px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.4);
  background: transparent; border: 0; border-radius: 11px; cursor: pointer;
  transition: color .2s; font-family: var(--font-body);
  white-space: nowrap; flex: 1; text-align: center; min-width: 100px;
}
.bill-toggle button.is-on { color: #fff; font-weight: 700; }
.bill-pill {
  position: absolute; top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  background: linear-gradient(135deg, #FF7A2F 0%, #FF3C00 100%);
  border-radius: 11px; z-index: 1;
  transition: transform .3s cubic-bezier(.34,1.4,.64,1);
  box-shadow: 0 2px 10px rgba(255,90,0,.45);
}

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; } }

.price {
  padding: 30px; display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
}
.price:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.price.is-hl {
  background: linear-gradient(180deg, rgba(255,138,60,.10), rgba(255,138,60,.02));
  border-color: rgba(255,138,60,.35);
}
.price.is-hl::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(180deg, rgba(255,138,60,.6), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.price-badge {
  position: absolute; top: -14px; right: 24px;
  background: linear-gradient(180deg, #ff9a4d, #ff5a00); color: #fff;
  font-size: 11px; padding: 6px 12px; border-radius: 999px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 10px 20px -6px rgba(255,90,0,.5);
}
.price-head h3 { font-size: 22px; }
.price-head p { font-size: 13px; margin: 6px 0 0; }
.price-amount { display: flex; align-items: baseline; gap: 4px; line-height: 1; }
.price-cur { font-family: var(--font-display); font-size: 24px; color: var(--text-3); }
.price-num { font-family: var(--font-display); font-size: 56px; font-weight: 600; letter-spacing: -0.03em; }
.price.is-hl .price-num { color: var(--orange-400); }
.price-per { font-size: 14px; }
.price-year { font-size: 11px; margin-top: -10px; }
.price-cta { width: 100%; }
.price-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-2); line-height: 1.4; }
.price-check {
  flex-shrink: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,138,60,.14); color: var(--orange-300); border-radius: 999px;
}

/* ============= PLATFORM (stats + integrations) ============= */
.platform { padding: 40px 0 80px; }

.plat-stats {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
}
@media (max-width: 1100px) { .plat-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .plat-stats { grid-template-columns: repeat(2, 1fr); } }

.plat-stat {
  padding: 32px 16px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; position: relative;
  background: rgba(255,255,255,.02);
  transition: background .2s;
}
.plat-stat:hover { background: rgba(255,255,255,.04); }

.plat-stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,138,60,.1);
  border: 1px solid rgba(255,138,60,.22);
  color: #ff8a3c;
  flex-shrink: 0;
}

.plat-stat-v {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
}
.plat-stat-l { font-size: 12px; color: var(--text-3); line-height: 1.35; letter-spacing: 0.01em; }

.integ-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 900px) { .integ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .integ-grid { grid-template-columns: 1fr; } }

.integ-card { padding: 24px 22px; display: flex; flex-direction: column; gap: 14px; }
.integ-head {
  display: flex; align-items: center; gap: 12px;
}
.integ-icon {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; flex-shrink: 0;
  background: rgba(255,138,60,.14); border: 1px solid rgba(255,138,60,.25);
  color: var(--orange-300);
}
.integ-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.integ-dot {
  width: 8px; height: 8px; border-radius: 999px; margin-left: auto; flex-shrink: 0;
  background: var(--orange-400); box-shadow: 0 0 8px var(--orange-400);
  animation: pulse 1.8s infinite;
}
.integ-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; margin: 0; }

/* ============= TESTIMONIALS (9 cards + fade) ============= */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.t-grid::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 280px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 2;
}
@media (max-width: 980px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .t-grid { grid-template-columns: 1fr; } }
.t-card { padding: 24px; display: flex; flex-direction: column; gap: 20px; min-height: 220px; }
.t-text { font-size: 15px; line-height: 1.55; color: var(--text); margin: 0; flex: 1; }
.t-meta { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 999px; color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 500; }
.t-role { font-size: 12px; }
.t-stars { margin-left: auto; color: var(--orange-400); font-size: 13px; letter-spacing: 1px; }

/* ============= WHY US ============= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 200px; }
.why-icon {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,138,60,.20), rgba(255,138,60,.04));
  border: 1px solid rgba(255,138,60,.30); border-radius: 12px;
  color: var(--orange-300);
}
.why-t { font-size: 20px; }
.why-d { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.5; }

/* ============= STORIES ============= */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .story-grid { grid-template-columns: 1fr; } }

.story { padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.story-h { display: flex; align-items: center; gap: 12px; }
.story-avatar {
  width: 44px; height: 44px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(135deg, #ff8c3a, #ff4500); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 17px;
}
.story-name { font-size: 14px; font-weight: 500; }
.story-days { font-size: 11px; margin-top: 2px; }
.story-graph {
  display: grid; grid-template-columns: 1fr 32px 1fr; gap: 12px; align-items: end;
  padding: 18px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 14px;
}
.story-col { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.story-label { font-size: 10px; letter-spacing: .14em; }
.story-bar { width: 100%; height: 70px; background: rgba(255,255,255,.04); border-radius: 8px; overflow: hidden; display: flex; align-items: flex-end; }
.story-bar-fill {
  width: 100%; height: 0; border-radius: inherit;
  animation: barRise 1.4s var(--ease) forwards;
}
.story-bar-fill.before { background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05)); --h: 24%; }
.story-bar-fill.after { background: linear-gradient(180deg, #ff8c3a, #ff4500); --h: 92%; box-shadow: 0 0 20px -2px rgba(255,138,60,.5); }
@keyframes barRise { to { height: var(--h, 50%); } }
.story-val { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.story-arrow { color: var(--orange-300); padding-bottom: 32px; }
.story-text { font-size: 14px; line-height: 1.55; color: var(--text-2); margin: 0; }

/* ============= FAQ ============= */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 920px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq-item.is-open { border-color: rgba(255,138,60,.30); background: linear-gradient(180deg, rgba(255,138,60,.05), transparent); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%;
  padding: 22px 26px; font-size: 17px; font-weight: 500; text-align: left;
  background: transparent; border: 0; color: var(--text); font-family: var(--font-display); letter-spacing: -0.01em;
}
.faq-plus {
  width: 28px; height: 28px; position: relative; flex-shrink: 0;
  border: 1px solid var(--border-strong); border-radius: 999px;
}
.faq-plus span {
  position: absolute; background: var(--text-2); transition: transform .3s var(--ease);
  left: 50%; top: 50%;
}
.faq-plus span:first-child { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-plus span:last-child { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-plus span:last-child { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-plus { border-color: var(--orange-300); background: rgba(255,138,60,.10); }
.faq-item.is-open .faq-plus span { background: var(--orange-300); }
.faq-a-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq-item.is-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; padding: 0 26px; }
.faq-item.is-open .faq-a { padding: 0 26px 22px; color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* ============= FINAL CTA ============= */
.fcta-section {
  position: relative; padding: 100px 0 120px; overflow: hidden;
}
.fcta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,69,0,.22), transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 50%, rgba(255,138,60,.12), transparent 65%);
}
.fcta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 48px; position: relative; z-index: 2; }
.fcta-eyebrow { align-self: center; }
.fcta-head { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fcta-title {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; margin: 0; color: var(--text);
}
.fcta-sub { font-size: 17px; color: var(--text-2); max-width: 560px; margin: 0; line-height: 1.6; }

.fcta-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%;
}
@media (max-width: 900px) { .fcta-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fcta-cards { grid-template-columns: 1fr; } }

.fcta-card {
  padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--border); border-radius: 18px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.fcta-card:hover { border-color: rgba(255,138,60,.35); transform: translateY(-3px); }
.fcta-card-icon {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,138,60,.20), rgba(255,138,60,.04));
  border: 1px solid rgba(255,138,60,.30); border-radius: 12px;
  color: var(--orange-300);
}
.fcta-card-t { font-family: var(--font-display); font-size: 16px; font-weight: 600; line-height: 1.2; }
.fcta-card-d { font-size: 13px; color: var(--text-2); margin: 0; line-height: 1.5; }

.fcta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }

.fcta-checks {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.fcta-check {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-3);
}
.fcta-check svg { color: var(--orange-300); flex-shrink: 0; }

/* ============= FOOTER ============= */
.footer { padding: 60px 0 32px; position: relative; }
.footer-cta {
  position: relative; padding: 56px 48px; margin-bottom: 80px; overflow: hidden;
  border-color: rgba(255,138,60,.30);
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.footer-cta-animated:hover {
  border-color: rgba(255,138,60,.55);
  box-shadow: 0 0 60px -20px rgba(255,90,0,.45), 0 0 0 1px rgba(255,138,60,.12) inset;
}
.footer-cta-animated:hover .footer-cta-shimmer { opacity: 1; animation: ctaShimmer 1.2s var(--ease-spring) forwards; }
.footer-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 90% 50%, rgba(255,69,0,.30), transparent 60%),
    radial-gradient(50% 80% at 10% 50%, rgba(255,138,60,.18), transparent 60%);
  transition: opacity .4s var(--ease);
}
.footer-cta-animated:hover .footer-cta-bg { opacity: 1.4; }
.footer-cta-shimmer {
  position: absolute; inset: 0; pointer-events: none; opacity: 0; z-index: 2;
  background: linear-gradient(105deg, transparent 20%, rgba(255,200,100,.14) 50%, transparent 80%);
  transform: translateX(-100%);
}
@keyframes ctaShimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(160%); }
}
.footer-cta-t {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 600;
  letter-spacing: -0.02em; max-width: 600px; line-height: 1.1;
  color: var(--text); position: relative; z-index: 3;
}
.footer-cta-row {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 24px; position: relative; z-index: 3;
}

.footer-slim {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-slim-brand {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  padding-top: 2px;
}
.brand-mark-sm { display: flex; align-items: center; }
.footer-brand-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.footer-links {
  display: flex; gap: 48px; flex-wrap: wrap; justify-content: flex-end;
}
.footer-links-group {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-links-label {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 2px;
}
.footer-link {
  color: var(--text-3); font-size: 13px; text-decoration: none;
  transition: color .2s; line-height: 1;
}
.footer-link:hover { color: var(--orange-300); }
.footer-link-icon {
  display: flex; align-items: center; gap: 6px;
}
.footer-link-icon svg { flex-shrink: 0; opacity: .7; }
.footer-link-icon:hover svg { opacity: 1; }
.footer-link-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; text-align: left;
}

.footer-bottom { display: flex; justify-content: flex-start; align-items: center; margin-top: 4px; padding-bottom: 32px; }
.footer-copy-text { font-size: 11px; color: var(--text-4); font-family: var(--font-mono); letter-spacing: .04em; }

@media (max-width: 680px) {
  .footer-slim { flex-direction: column; gap: 28px; }
  .footer-links { justify-content: flex-start; gap: 28px; }
}

/* ============= TP PANEL (shared overlay panel shell) ============= */
.tp-panel {
  max-width: 680px; margin: 0 auto; width: 100%;
  padding: 0 24px 60px; position: relative; z-index: 1;
}
.tp-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 32px 0 24px;
  border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.tp-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -.02em; color: var(--text); line-height: 1.2;
}
.tp-sub { font-size: 13px; color: var(--text-2); margin-top: 5px; }
.tp-body { /* content wrapper */ }

/* ============= REFERRAL PAGE ============= */
.ref-hero {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px;
  padding: 24px; border-radius: 16px; background: var(--surface-2);
}
.ref-hero-t { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.ref-hero-d { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.ref-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px;
}
@media (max-width: 540px) { .ref-tiers { grid-template-columns: 1fr; } }
.ref-tier {
  padding: 18px 16px; border-radius: 12px; background: var(--surface-2);
  border: 1px solid var(--border);
}
.ref-tier-badge {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .06em;
  padding: 3px 9px; border-radius: 20px; text-transform: uppercase; margin-bottom: 10px;
}
.ref-tier-pct { font-size: 32px; font-weight: 700; line-height: 1; margin-bottom: 8px; font-family: var(--font-display); }
.ref-tier-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; }
.ref-how { margin-bottom: 28px; }
.ref-how-t { font-size: 13px; font-weight: 600; color: var(--text-2); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.ref-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.ref-step-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,122,24,.15); color: var(--orange-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.ref-step-text { font-size: 14px; color: var(--text-2); line-height: 1.55; padding-top: 3px; }
.ref-cta { text-align: center; padding-top: 4px; }
.ref-cta-note { font-size: 12px; color: var(--text-3); margin-top: 12px; }

/* ============= CTA BURST ============= */
.cta-burst {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 0; height: 0;
}
.cta-burst span {
  position: absolute; left: 0; top: 0; width: 6px; height: 6px;
  border-radius: 999px;
  animation: shoot 1s var(--ease-spring) forwards;
  animation-delay: var(--d, 0s);
  opacity: 0;
}
@keyframes shoot {
  0% { transform: translate(-50%, -50%) scale(.5); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translate(calc(var(--dx) - 50%), calc(var(--dy) - 50%)) scale(.2); opacity: 0; }
}

/* ============= LOGO STRIP ============= */
.logo-strip {
  padding: 56px 0 72px; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,138,60,.04) 0%, transparent 100%);
}
.logo-strip-inner {
  max-width: 960px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.logo-strip-head {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.logo-strip-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 10px; border-radius: 999px;
  border: 1px solid rgba(255,138,60,.35);
  background: rgba(255,138,60,.08);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #ff8a3c;
}
.logo-strip-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #ff8a3c;
  box-shadow: 0 0 0 0 rgba(255,138,60,.6);
  animation: strip-pulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes strip-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,138,60,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(255,138,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,60,0); }
}
.logo-strip-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--text-1); margin: 0;
}
.logo-strip-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.logo-chip {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: 13px; font-weight: 500; color: var(--text-2);
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
}
.logo-chip:hover {
  border-color: rgba(255,138,60,.45);
  color: var(--text-1);
  background: rgba(255,138,60,.07);
}

/* ============= PRICE GUARANTEE + SAVE HINT ============= */
.price-guarantee {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text-3); font-family: var(--font-mono);
  margin-top: -8px;
}
.price-guarantee svg { color: var(--orange-300); }
.price-save-hint {
  font-size: 11px; color: var(--orange-300);
  font-family: var(--font-mono); letter-spacing: 0.04em;
  margin-top: -8px;
}

/* ============= FOOTER SOCIAL LINK ============= */
.footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--text-3);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social:hover {
  border-color: rgba(41,182,246,.5); color: #29b6f6;
  background: rgba(41,182,246,.08);
}

/* ============= MISC RESPONSIVE ============= */
@media (max-width: 540px) {
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .hero-stat-sep { display: none; }
  .footer-cta { padding: 32px 24px; }
  .price { padding: 24px; }
  .price-num { font-size: 44px; }
  .logo-strip { padding: 32px 0 44px; }
}

/* ============= BLOG PAGE ============= */
.tp-page-scroll { overflow-y: auto; }

.blog-3col {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: start;
}
@media (max-width: 1100px) { .blog-3col { grid-template-columns: 200px 1fr; } .blog-right { display: none; } }
@media (max-width: 780px) { .blog-3col { grid-template-columns: 1fr; } .blog-cats, .blog-toc-col { display: none; } }

/* ── Categories sidebar ── */
.blog-cats { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 24px; }
.blog-cats-label {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-4); margin-bottom: 8px; padding: 0 8px;
}
.blog-cat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 10px; border: 1px solid transparent;
  background: rgba(255,255,255,.03); color: var(--text-2);
  font-size: 14px; cursor: pointer; text-align: left;
  transition: background .18s, border-color .18s, color .18s;
}
.blog-cat-item:hover { background: rgba(255,255,255,.06); color: var(--text-1); border-color: var(--border); }
.blog-cat-item.is-active { background: rgba(255,138,60,.08); border-color: rgba(255,138,60,.3); color: #fff; }

/* ── Center area ── */
.blog-center { min-width: 0; }
.blog-listing-title {
  font-size: 40px; font-weight: 700; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 32px; text-align: center;
}
.blog-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .blog-cards-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; cursor: pointer; text-align: left;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
  padding: 0; appearance: none;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: 0 12px 40px -12px rgba(0,0,0,.4); }

.blog-card-cover {
  height: 140px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-cover-deco {
  position: absolute; inset: 0; pointer-events: none;
}
.blog-card-cover-icon {
  position: relative; z-index: 1;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.blog-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.blog-card-top { display: flex; align-items: center; justify-content: space-between; }
.blog-card-tag {
  font-size: 10px; font-family: var(--font-mono); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 999px;
}
.blog-card-date { font-size: 11px; color: var(--text-4); font-family: var(--font-mono); }
.blog-card-title {
  font-size: 16px; font-weight: 700; color: #fff; line-height: 1.35;
  margin: 0;
}
.blog-card-excerpt {
  font-size: 13px; color: var(--text-3); line-height: 1.6;
  margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 4px;
}
.blog-card-time { font-size: 11px; color: var(--text-4); font-family: var(--font-mono); }
.blog-card-read { font-size: 12px; color: var(--orange-300); font-weight: 500; }

/* ── Right widget ── */
.blog-right { position: sticky; top: 24px; }
.blog-widget {
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
}
.blog-widget-head { display: flex; align-items: center; gap: 10px; }
.blog-widget-logo { flex-shrink: 0; }
.blog-widget-name { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.08em; }
.blog-widget-sub { font-size: 11px; color: var(--text-4); font-family: var(--font-mono); }
.blog-widget-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin: 0; }
.blog-widget-steps { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.blog-widget-steps li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-2); line-height: 1.45;
}
.blog-widget-steps li span {
  flex-shrink: 0; width: 20px; height: 20px;
  background: rgba(255,138,60,.15); border: 1px solid rgba(255,138,60,.3);
  border-radius: 50%; font-size: 11px; font-weight: 700; color: var(--orange-300);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono);
}
.blog-widget-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 11px; color: var(--text-4); font-family: var(--font-mono);
}

/* ── TOC sidebar ── */
.blog-toc-col { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 12px; }
.blog-toc-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-3); cursor: pointer;
  background: transparent; border: 0; padding: 0;
  transition: color .18s;
}
.blog-toc-back:hover { color: var(--text-1); }
.blog-toc-label {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-4); margin-top: 8px;
}
.blog-toc-list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 2px;
}
.blog-toc-list li {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 13px; color: var(--text-3); line-height: 1.5; padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.blog-toc-n { flex-shrink: 0; color: var(--text-4); font-family: var(--font-mono); font-size: 11px; padding-top: 2px; }

/* ── Article view ── */
.blog-article-main { min-width: 0; }
.blog-article-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.blog-article-tag {
  font-size: 11px; font-family: var(--font-mono); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 999px;
}
.blog-article-meta { font-size: 12px; color: var(--text-4); font-family: var(--font-mono); }
.blog-article-title {
  font-size: 36px; font-weight: 700; line-height: 1.22;
  letter-spacing: -0.02em; margin: 0 0 16px; color: #fff;
}
@media (max-width: 680px) { .blog-article-title { font-size: 26px; } }
.blog-article-excerpt { font-size: 17px; color: var(--text-2); line-height: 1.65; margin: 0; }

.blog-article-body { display: flex; flex-direction: column; gap: 0; }
.blog-lead {
  font-size: 18px; font-weight: 500; color: var(--text-1); line-height: 1.7;
  margin: 0 0 28px; padding-left: 18px; border-left: 3px solid var(--orange-400);
}
.blog-h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 36px 0 12px; letter-spacing: -0.01em; }
.blog-p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin: 0 0 18px; }
.blog-callout {
  background: rgba(255,138,60,.08); border: 1px solid rgba(255,138,60,.22);
  border-radius: 12px; padding: 16px 20px;
  font-size: 15px; color: var(--text-1); line-height: 1.6; margin: 20px 0 24px;
}
.blog-list { margin: 0 0 24px; padding: 0 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.blog-list li { font-size: 15px; color: var(--text-2); line-height: 1.6; padding-left: 4px; }
.blog-list li::marker { color: var(--orange-400); }
