/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Quicksand', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f7f6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header .logo img { height: 36px; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #f8ad82;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover { background: #e8975e; transform: translateY(-1px); }

/* ===== HERO SECTION ===== */
.hero {
  background: #daefec;
  color: #4f4f4f;
  padding: 80px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: auto; }

.hero .retailer-logo {
  display: block;
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero .badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: #000000;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero .snapshot-info {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 12px;
}

/* ===== KPI CARDS ===== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: -40px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.kpi-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.kpi-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.kpi-value {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #222222;
  line-height: 1.2;
}

.kpi-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.kpi-product-link {
  display: block;
  font-size: 0.7rem;
  color: #29c4a9;
  margin-top: 6px;
  text-decoration: none;
  word-break: break-word;
  line-height: 1.3;
}
.kpi-product-link:hover {
  text-decoration: underline;
}

.kpi-product-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-top: 8px;
  border-radius: 8px;
  background: #f8fafc;
}

/* ===== SECTIONS ===== */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px;
}

.section-alt {
  background: #daefec;
}

.section-title {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 32px;
}

/* ===== DESCRIPTION ===== */
.description-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.description-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  max-width: 760px;
}

/* ===== BRAND GRID ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.brand-card-link {
  text-decoration: none;
  color: inherit;
}

.brand-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.brand-card:hover {
  border-color: #29c4a9;
  box-shadow: 0 4px 16px rgba(41,196,169,0.15);
}

.brand-card img {
  display: block;
  margin: 0 auto;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  flex: 1;
}

.brand-card p {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  margin: 8px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
  width: 100%;
}

/* ===== PRICE INDEX GAUGE ===== */
.price-index-section { 
  text-align: center; 
  padding-bottom: 10px;
}

.gauge-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 32px 48px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.gauge-value {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.gauge-value.low { color: #16a34a; }
.gauge-value.mid { color: #f59e0b; }
.gauge-value.high { color: #ef4444; }

.gauge-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 8px;
}

.gauge-bar {
  width: 200px;
  height: 6px;
  background: linear-gradient(90deg, #16a34a 0%, #f59e0b 50%, #ef4444 100%);
  border-radius: 3px;
  margin-top: 16px;
  position: relative;
}

.gauge-marker {
  position: absolute;
  top: -5px;
  width: 16px;
  height: 16px;
  background: #222222;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===== LOCKED / GATED SECTIONS ===== */
.locked-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.locked-content {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  pointer-events: none;
  user-select: none;
  padding: 32px 24px;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.locked-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #222;
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

.locked-icon { font-size: 1.1rem; }

.locked-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #f8ad82;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(248,173,130,0.3);
}

.locked-cta:hover {
  background: #e8975e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,173,130,0.4);
}

.locked-container-alt {
  background: transparent;
  border: none;
}
.locked-container-alt .locked-content {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

/* ===== CATEGORY BREAKDOWN ===== */
.cat-breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0;
}

.cat-breakdown-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-name {
  min-width: 160px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  text-align: right;
  flex-shrink: 0;
}

.cat-bar-track {
  flex: 1;
  height: 24px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
}

.cat-bar {
  height: 100%;
  border-radius: 6px;
  transition: width 0.4s ease;
}

.cat-bar-low { background: linear-gradient(90deg, #bbf7d0, #16a34a); }
.cat-bar-mid { background: linear-gradient(90deg, #fef08a, #f59e0b); }
.cat-bar-high { background: linear-gradient(90deg, #fecaca, #ef4444); }

.cat-index {
  min-width: 48px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: right;
  flex-shrink: 0;
}

.cat-index-low { color: #16a34a; }
.cat-index-mid { color: #f59e0b; }
.cat-index-high { color: #ef4444; }

/* ===== PRICE MOVEMENTS ===== */
.price-moves-kpis {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.moves-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  min-width: 140px;
}

.moves-kpi-icon { font-size: 1.5rem; }

.moves-kpi-value {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  line-height: 1;
}

.moves-kpi-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.moves-table { width: 100%; }
.moves-table td { font-size: 0.85rem; }
.move-down { color: #16a34a; font-weight: 700; }
.move-up { color: #ef4444; font-weight: 700; }

/* ===== 4P BENCHMARK SECTION ===== */
.fourp-section { text-align: center; }

.fourp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.fourp-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: left;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fourp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.fourp-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fourp-product { background: #dbeafe; }
.fourp-price { background: #dcfce7; }
.fourp-promo { background: #fef3c7; }
.fourp-place { background: #f3e8ff; }

.fourp-icon { font-size: 1.4rem; }

.fourp-label {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.fourp-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.fourp-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fourp-features li {
  font-size: 0.78rem;
  color: #334155;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.fourp-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #29c4a9;
  font-weight: 800;
}

/* ===== DAAS SECTION ===== */
.daas-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px;
}

.daas-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.daas-text { flex: 1; }
.daas-visual { flex: 1; min-width: 0; }

.daas-badge {
  display: inline-block;
  background: #222;
  color: #fff;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.daas-title {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.daas-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
}

.daas-usecases {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.daas-usecase {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.daas-usecase-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.daas-usecase strong {
  display: block;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.daas-usecase p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* DaaS code block */
.daas-code-block {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.daas-code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #0f172a;
}

.daas-code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.daas-code-dot.red { background: #ef4444; }
.daas-code-dot.yellow { background: #f59e0b; }
.daas-code-dot.green { background: #22c55e; }

.daas-code-filename {
  margin-left: 8px;
  font-size: 0.72rem;
  color: #64748b;
  font-family: monospace;
}

.daas-code {
  padding: 20px;
  margin: 0;
  overflow-x: auto;
}

.daas-code code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #e2e8f0;
}

.code-method { color: #22d3ee; font-weight: 700; }
.code-comment { color: #64748b; }
.code-key { color: #a78bfa; }
.code-val { color: #34d399; }
.code-num { color: #fbbf24; }

/* ===== FAKE CHART ===== */
.fake-chart {
  display: flex;
  gap: 12px;
  height: 220px;
}

.fake-chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
  padding: 4px 0;
  text-align: right;
  min-width: 32px;
}

.fake-chart-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.fake-chart-line {
  flex: 1;
  padding: 8px 8px 0;
}

.fake-chart-line svg {
  width: 100%;
  height: 100%;
}

.fake-chart-x-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
  padding: 8px 8px 0;
}

/* ===== INDEX COMPARISON (GAUGE + COMPETITORS) ===== */
.index-comparison {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.gauge-container {
  flex: 1 1 0;
}

.competitors-table {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  flex: 2 1 0;
  min-width: 280px;
}

.competitors-title {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
}

.competitors-table table { width: 100%; border-collapse: collapse; }
.competitors-table th {
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #e2e8f0;
  text-align: left;
  background: transparent;
}
.competitors-table td {
  padding: 8px 12px;
  font-size: 0.85rem;
  color: #333;
  border-bottom: 1px solid #f1f5f9;
}
.competitors-table tr:last-child td { border-bottom: none; }
.competitor-current td { font-weight: 700; color: #222; background: #daefec; }
.competitor-current td:first-child { border-radius: 6px 0 0 6px; }
.competitor-current td:last-child { border-radius: 0 6px 6px 0; }

.competitor-link {
  color: #29c4a9;
  text-decoration: none;
  font-weight: 500;
}
.competitor-link:hover {
  text-decoration: underline;
}

.competitor-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

.computed-by-section {
  padding-top: 40px;
}

.computed-by {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ===== COMPARISON TABLE ===== */
.table-container {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #f8fafc;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #e2e8f0;
}

td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

td:first-child { font-weight: 600; color: #222222; }

tr:last-child td { border-bottom: none; }

tr:hover td { background: #f8fafc; }

.price-highlight {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

.price-high {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #222222;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #f8ad82;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(248,173,130,0.3);
}

.cta-button:hover {
  background: #e8975e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,173,130,0.4);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.trust-icon {
  font-size: 1.1rem;
}

/* ===== INDEX PAGE GRID ===== */
.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.index-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.index-card:hover {
  border-color: #29c4a9;
  box-shadow: 0 4px 16px rgba(41,196,169,0.15);
}

.index-card-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.index-card-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #222;
}

.index-card-meta {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 700;
  color: #29c4a9;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

/* ===== SECTION CENTERED HELPERS ===== */
.section-title-centered { text-align: center; }
.section-subtitle-centered { text-align: center; }

.kpi-section {
  padding-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 32px 40px;
  font-size: 0.8rem;
  color: #b2b2b3;
  background: #222222;
}

.site-footer a {
  color: #b3dfd8;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .hero { padding: 60px 20px 50px; }
  .kpi-grid { padding: 0 20px; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .kpi-card { padding: 20px 16px; }
  .kpi-value { font-size: 1.4rem; }
  .section, .description-section, .faq-section { padding: 40px 20px; }
  .cta-section { padding: 60px 20px; }
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
  .table-container { border-radius: 12px; }
  th, td { padding: 12px 14px; font-size: 0.82rem; }
  .cta-trust { gap: 16px; }
  .gauge-container { padding: 24px 32px; }
  .cat-name { min-width: 100px; font-size: 0.75rem; }
  .cat-index { min-width: 40px; font-size: 0.75rem; }
  .locked-badge { font-size: 0.72rem; padding: 8px 16px; }
  .fourp-grid { grid-template-columns: repeat(2, 1fr); }
  .daas-inner { flex-direction: column; }
  .daas-section { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; margin-top: -30px; }
  .hero h1 { font-size: 1.5rem; }
  .header-cta { display: none; }
  table { font-size: 0.8rem; }
  th, td { padding: 10px; }
  .fourp-grid { grid-template-columns: 1fr; }
}
