/* ═══════════════════════════════════════════════════════════════
   HOME-ADDITIONS.CSS  —  Ankit Jangid Portfolio
   Fixes + New Sections for index.php
   ═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────────
   FIX 1: hcard-top — flame gradient background
   ─────────────────────────────────────────────────────────────── */
.hcard-top {
  background: linear-gradient(135deg, rgba(230,61,10,.10) 0%, rgba(230,61,10,.03) 100%) !important;
  border-radius: var(--r, 8px) var(--r, 8px) 0 0;
  border-bottom: 1px solid rgba(230,61,10,.18) !important;
  position: relative;
  overflow: hidden;
}
.hcard-top::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(230,61,10,.15), transparent 70%);
  pointer-events: none;
}
.hct-lbl {
  color: var(--flame) !important;
  font-weight: 700 !important;
}

/* ────────────────────────────────────────────────────────────────
   FIX 2: Services grid — 3-col, 6th card no awkward orphan
   ─────────────────────────────────────────────────────────────── */
.srv-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
}
@media (max-width: 1100px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .srv-grid { grid-template-columns: 1fr !important; }
}

/* ────────────────────────────────────────────────────────────────
   FIX 3: Why Me section — proper card layout (icon + text row)
   ─────────────────────────────────────────────────────────────── */
.why-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.75rem !important;
  margin-top: 2.5rem !important;
}
.why {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 1.25rem !important;
  padding: 2rem !important;
  text-align: left !important;
  border-radius: 1rem !important;
}
.why-ico {
  flex-shrink: 0 !important;
  width: 52px !important;
  height: 52px !important;
  font-size: 1.3rem !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.why-name { font-size: 1rem !important; margin-bottom: 0.4rem !important; }
.why-desc { font-size: 0.875rem !important; }
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr !important; }
}

/* ────────────────────────────────────────────────────────────────
   FIX 4: win-badge — visible badge below win label
   ─────────────────────────────────────────────────────────────── */
.win-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 3px 10px !important;
  background: var(--flame-soft) !important;
  border: 1px solid var(--flame-border) !important;
  border-radius: 100px !important;
  font-family: var(--fm) !important;
  font-size: 0.56rem !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: var(--flame) !important;
  font-weight: 700 !important;
  margin-top: 4px !important;
}

/* ────────────────────────────────────────────────────────────────
   FIX 5: CTA Band — proper dark bg, white text guaranteed
   ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a1a1f 0%, #0d0d0f 60%, #1a0800 100%) !important;
  border: 1px solid rgba(230,61,10,.25) !important;
  box-shadow: 0 24px 80px rgba(230,61,10,.15), inset 0 1px 0 rgba(255,255,255,.06) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 3rem !important;
  justify-content: space-between !important;
}
.cta-band > div:first-child {
  flex: 1 !important;
  max-width: 600px !important;
}
.cta-band > div:last-child {
  flex-shrink: 0 !important;
}
.ctab-label  { color: var(--flame) !important; }
.ctab-title  { color: #f0ede8 !important; }
.ctab-title em { color: var(--flame) !important; }
.ctab-sub    { color: rgba(240,237,232,.75) !important; }
.ctab-btns {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.2rem !important;
  align-items: center !important;
  width: auto !important;
  flex-wrap: nowrap !important;
  margin-top: 1.5rem !important;
}
.ctab-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  padding: 0.9rem 2rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  border: 2px solid transparent !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}
.ctab-btn-fill {
  background: var(--flame) !important;
  color: #fff !important;
  border-color: var(--flame) !important;
}
.ctab-btn-fill:hover {
  background: #e63d0a !important;
  transform: translateY(-2px) !important;
}
.ctab-btn-out {
  background: rgba(255,255,255,.08) !important;
  color: #f0ede8 !important;
  border-color: rgba(255,255,255,.2) !important;
}
.ctab-btn-out:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.4) !important;
  transform: translateY(-2px) !important;
}

/* Mobile Responsive: Stack buttons vertically on small screens */
@media (max-width: 640px) {
  .ctab-btns {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.8rem !important;
  }
  .ctab-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ─────────────────────────────────────────────────────────────────
   SECTION: Tools I Use (tool-strip-section)
   ──────────────────────────────────────────────────────────────── */
.tools-section {
  padding: clamp(3rem,7vw,5rem) var(--public-pad);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.tools-section .eyebrow { margin-bottom: 0.75rem; }
.tools-section .d-title { margin-bottom: 0.5rem; }
.tools-section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.tools-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.tools-cat {
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.tools-cat:hover {
  border-color: var(--flame-border);
  transform: translateY(-3px);
  box-shadow: var(--sh2);
}
[data-theme="dark"] .tools-cat { background: var(--ink3); border-color: #1e2027; }
.tools-cat-hd {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.tools-cat-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--flame-soft);
  color: var(--flame);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.tools-cat-name {
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--fm);
  font-size: 0.62rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
  font-weight: 600;
  white-space: nowrap;
}
.tool-chip:hover {
  border-color: var(--flame);
  color: var(--flame);
  background: var(--flame-soft);
}
[data-theme="dark"] .tool-chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }

/* ─────────────────────────────────────────────────────────────────
   SECTION: Process / How I Work
   ──────────────────────────────────────────────────────────────── */
.process-section {
  padding: clamp(3rem,7vw,5rem) var(--public-pad) !important;
  background: linear-gradient(135deg, var(--smoke) 0%, rgba(230,61,10,.02) 100%) !important;
  border-top: 2px solid rgba(230,61,10,.1) !important;
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .process-section { 
  background: linear-gradient(135deg, var(--ink2) 0%, rgba(230,61,10,.05) 100%) !important;
  border-top-color: rgba(230,61,10,.2) !important;
}
.process-section .eyebrow {
  color: var(--flame) !important;
  font-size: 0.75rem !important;
  letter-spacing: 2.5px !important;
  margin-bottom: 0.75rem !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}
.process-section .d-title { 
  margin-bottom: 1.25rem !important;
  font-size: clamp(2.2rem, 5vw, 3.2rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.6px !important;
  color: var(--ink) !important;
}
.process-section .d-title em,
.process-section .d-title .txt-flame {
  color: var(--flame) !important;
  font-style: italic !important;
  font-weight: 900 !important;
}
.process-sub {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 4rem !important;
  max-width: 700px;
  line-height: 1.75;
  font-weight: 500;
}
.process-section {
  position: relative;
}
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem !important;
  position: relative;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-top: 20px !important;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem !important;
  background: linear-gradient(135deg, var(--paper) 0%, rgba(240, 237, 232, .4) 100%) !important;
  border-radius: 16px !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(230,61,10,.04) 0%, transparent 70%);
  pointer-events: none;
}
.process-step:hover {
  border-color: var(--flame) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 56px rgba(230,61,10,.18) !important;
  background: linear-gradient(135deg, var(--paper) 0%, rgba(240, 237, 232, .95) 100%) !important;
}
[data-theme="dark"] .process-step {
  background: linear-gradient(135deg, var(--ink3) 0%, rgba(30, 30, 40, .8) 100%) !important;
  border-color: rgba(230,61,10,.2) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3) !important;
}
[data-theme="dark"] .process-step:hover {
  border-color: var(--flame) !important;
  background: linear-gradient(135deg, var(--ink3) 0%, rgba(30, 30, 40, .95) 100%) !important;
  box-shadow: 0 20px 48px rgba(230,61,10,.25) !important;
}
.process-step-num {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame) 0%, rgba(230,61,10,.9) 100%) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 2rem !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 40px rgba(230,61,10,.4) !important;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative;
  z-index: 2;
  letter-spacing: -1px !important;
}
.process-step:nth-child(2) .process-step-num,
.process-step:nth-child(3) .process-step-num,
.process-step:nth-child(4) .process-step-num {
  background: rgba(240, 237, 232, 1) !important;
  color: #ff6b35 !important;
  border: 3px solid #ff6b35 !important;
  box-shadow: 0 8px 24px rgba(255, 107, 53, .25) !important;
}
[data-theme="dark"] .process-step:nth-child(2) .process-step-num,
[data-theme="dark"] .process-step:nth-child(3) .process-step-num,
[data-theme="dark"] .process-step:nth-child(4) .process-step-num {
  background: var(--ink3) !important;
  border-color: #ff6b35 !important;
  box-shadow: 0 8px 28px rgba(255, 107, 53, .35) !important;
}
.process-step:hover .process-step-num {
  transform: scale(1.18) !important;
  box-shadow: 0 16px 48px rgba(230,61,10,.5) !important;
}
.process-step-title {
  font-family: var(--fd);
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  color: var(--ink) !important;
  line-height: 1.35;
  letter-spacing: -0.5px !important;
  margin: 0.75rem 0 0 !important;
}
[data-theme="dark"] .process-step-title { 
  color: #fff !important;
}
.process-step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 !important;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .process-steps-row { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 2rem !important;
  }
  .process-steps-row::before { display: none; }
}
@media (max-width: 768px) {
  .process-steps-row { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 1.75rem !important;
  }
  .process-step { 
    padding: 1.5rem 1.25rem !important;
    text-align: center !important;
  }
}
@media (max-width: 540px) {
  .process-steps-row { 
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .process-section .d-title {
    font-size: 1.8rem !important;
  }
  .process-sub {
    font-size: 0.9rem !important;
    margin-bottom: 2.5rem !important;
  }
  .process-step-num {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.3rem !important;
  }
  .process-step-title {
    font-size: 1rem !important;
  }
  .process-step-desc {
    font-size: 0.8rem !important;
  }
}

/* ─────────────────────────────────────────────────────────────────
   SECTION: Featured Case Study Preview
   ──────────────────────────────────────────────────────────────── */
.featured-cs-section {
  padding: clamp(3rem,7vw,5rem) var(--public-pad);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.featured-cs-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--smoke);
  box-shadow: var(--sh2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.featured-cs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh3);
}
[data-theme="dark"] .featured-cs-card { background: var(--ink3); border-color: #1e2027; }
.featured-cs-left {
  background: linear-gradient(135deg, #0d0d0f 0%, #1a0800 60%, #200a00 100%);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.featured-cs-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230,61,10,.2), transparent 70%);
  pointer-events: none;
}
.featured-cs-eyebrow {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--flame);
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-cs-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--flame); }
.featured-cs-title {
  font-family: var(--fd);
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 700;
  color: #f0ede8;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.featured-cs-title em { color: var(--flame); font-style: italic; }
.featured-cs-desc {
  font-size: 0.88rem;
  color: rgba(240,237,232,.65);
  line-height: 1.8;
}
.featured-cs-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: 0.75rem;
  overflow: hidden;
}
.featured-cs-metric {
  background: rgba(0,0,0,.3);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.featured-cs-metric-val {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--flame);
  line-height: 1;
  letter-spacing: -0.5px;
}
.featured-cs-metric-lbl {
  font-family: var(--fm);
  font-size: 0.56rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.featured-cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--flame);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  width: fit-content;
  box-shadow: 0 4px 16px rgba(230,61,10,.35);
}
.featured-cs-cta:hover {
  background: var(--flame2, #d13600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,61,10,.4);
}
.featured-cs-right {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}
.featured-cs-right-title {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 0.25rem;
}
[data-theme="dark"] .featured-cs-right-title { color: #f0ede8; }
.featured-cs-points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.featured-cs-point {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.featured-cs-point-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--flame-soft);
  color: var(--flame);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.featured-cs-point strong { color: var(--ink); font-weight: 600; }
[data-theme="dark"] .featured-cs-point strong { color: #f0ede8; }
.featured-cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .featured-cs-card { grid-template-columns: 1fr; }
  .featured-cs-left { padding: 2rem; }
  .featured-cs-right { padding: 2rem; }
}
@media (max-width: 540px) {
  .featured-cs-metrics { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────────────────
   SECTION: Testimonial / Quote Block
   ──────────────────────────────────────────────────────────────── */
.testimonial-section {
  padding: clamp(3rem,7vw,5rem) var(--public-pad);
  background: var(--smoke);
  border-top: 1px solid var(--line);
  text-align: center;
}
[data-theme="dark"] .testimonial-section { background: var(--ink2); }
.testimonial-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--sh2);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.25rem;
  left: 1.5rem;
  font-family: var(--fd);
  font-size: 8rem;
  color: rgba(230,61,10,.08);
  line-height: 1;
  font-style: italic;
  pointer-events: none;
}
[data-theme="dark"] .testimonial-card { background: var(--ink3); border-color: #1e2027; }
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 1.25rem;
  color: #f59e0b;
  font-size: 0.95rem;
}
.testimonial-quote {
  font-family: var(--fd);
  font-size: clamp(1.1rem,2.5vw,1.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
[data-theme="dark"] .testimonial-quote { color: #f0ede8; }
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), #ff8c5a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
[data-theme="dark"] .testimonial-author-name { color: #f0ede8; }
.testimonial-author-role {
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.testimonial-separator {
  width: 1px;
  height: 32px;
  background: var(--line);
}
.testimonial-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.testimonial-metric-val {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--flame);
  line-height: 1;
}
.testimonial-metric-lbl {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-author { flex-wrap: wrap; }
  .testimonial-separator { display: none; }
}

/* ─────────────────────────────────────────────────────────────────
   SECTION: Trust / Client Strip
   ──────────────────────────────────────────────────────────────── */
.trust-strip {
  padding: 2rem var(--public-pad);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-strip-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.trust-item:hover { color: var(--ink); }
.trust-item-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--smoke);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-strip-inner { gap: 1.25rem; }
  .trust-item-text { display: none; }
}

/* ─────────────────────────────────────────────────────────────────
   GENERAL: section spacing + Performance Snapshot wrapper
   ──────────────────────────────────────────────────────────────── */
.perf-snapshot-wrap {
  background: linear-gradient(135deg, var(--smoke) 0%, rgba(230,61,10,.02) 100%);
  padding: 4rem var(--public-pad) 3.5rem !important;
  border-top: 2px solid rgba(230,61,10,.1);
  border-bottom: 1px solid var(--line);
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
}
[data-theme="dark"] .perf-snapshot-wrap { 
  background: linear-gradient(135deg, var(--ink2) 0%, rgba(230,61,10,.05) 100%);
  border-top-color: rgba(230,61,10,.2);
}

.perf-snapshot-wrap .eyebrow {
  color: var(--flame) !important;
  font-size: 0.75rem !important;
  letter-spacing: 2.5px !important;
  margin-bottom: 0.75rem !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.perf-snapshot-wrap .d-title {
  margin: 0 auto 2.5rem !important;
  max-width: 1400px !important;
  padding: 0 !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.5px !important;
}

.perf-snapshot-wrap .d-title em,
.perf-snapshot-wrap .d-title .txt-flame {
  color: var(--flame) !important;
  font-style: italic !important;
}

.perf-snapshot-wrap .wins {
  max-width: 1400px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.perf-snapshot-wrap .win {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  padding: 0;
  background: transparent;  align-items: center !important;}

.perf-snapshot-wrap .win-val {
  font-size: clamp(2.2rem, 5vw, 3rem) !important;
  font-weight: 900 !important;
  color: var(--flame) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.6px !important;
}

.perf-snapshot-wrap .win-lbl {
  font-size: 0.7rem !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
  margin-top: 0.25rem !important;
}

.perf-snapshot-wrap .win-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0.5rem auto 0 !important;
  padding: 4px 12px !important;
  background: var(--flame-soft) !important;
  border: 1.5px solid rgba(230,61,10,.25) !important;
  border-radius: 100px !important;
  font-family: var(--fm) !important;
  font-size: 0.6rem !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: var(--flame) !important;
  font-weight: 700 !important;
}

@media (max-width: 1100px) {
  .perf-snapshot-wrap .wins {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.75rem !important;
  }
}

@media (max-width: 640px) {
  .perf-snapshot-wrap {
    padding: 2.5rem var(--public-pad) 2rem !important;
  }
  
  .perf-snapshot-wrap .d-title {
    font-size: 1.8rem !important;
    margin-bottom: 2rem !important;
  }
  
  .perf-snapshot-wrap .wins {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .perf-snapshot-wrap .win-val {
    font-size: 2rem !important;
  }
}

/* ─────────────────────────────────────────────────────────────────
   UTILITY: Consistent max-width wrapper
   ──────────────────────────────────────────────────────────────── */
.home-inner { max-width: 1200px; margin: 0 auto; }

/* ─────────────────────────────────────────────────────────────────
   ENHANCED: Hero card glow
   ──────────────────────────────────────────────────────────────── */
.hero-card {
  box-shadow: var(--sh2), 0 0 0 1px rgba(230,61,10,.06) !important;
}
[data-theme="dark"] .hero-card {
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(230,61,10,.10) !important;
}

/* ─────────────────────────────────────────────────────────────────
   ENHANCED: Q-band — proper styled quote block
   ──────────────────────────────────────────────────────────────── */
.qband {
  margin: 4rem auto !important;
  max-width: 1200px !important;
  border-radius: 1.25rem !important;
}
