/* ====================================================
   KSA PERFUME AUDIT SYSTEM — SHARED STYLESHEET
   Font: DM Serif Display + DM Sans
   Palette: Deep Navy · Off-White · Gold · Status Colors
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0b1529;
  --navy-mid: #142040;
  --navy-light: #1e3060;
  --off-white: #f4f5f7;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --alt-bg: #eef0f5;

  --green: #1a8c5b;
  --green-bg: #e8f7f0;
  --amber: #c47c00;
  --amber-bg: #fff4e0;
  --red: #c0392b;
  --red-bg: #fdecea;
  --blue: #1a6db5;
  --blue-bg: #e8f0fb;

  --text-primary: #0b1529;
  --text-secondary: #4a5568;
  --text-light: #8a95a3;
  --border: #dde2ea;
  --border-dark: #2a3a5c;

  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(11,21,41,0.10);
  --shadow-lg: 0 8px 48px rgba(11,21,41,0.18);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  scroll-behavior: smooth;
}

html { font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* NAV */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,21,41,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-dark); height: 64px; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 36px; height: 36px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--navy); }
.nav-title { color: var(--white); font-size: 14px; font-weight: 500; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; display: block; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: var(--navy); padding: 20px 32px; gap: 16px; border-bottom: 1px solid var(--border-dark); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 100px 0 80px; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; }
.hero-grid-overlay { position: absolute; inset: 0; opacity: 0.06; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 48px 48px; }
.hero-content { position: relative; z-index: 2; max-width: 960px; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px; }
.hero-title { font-family: var(--font-display); font-size: clamp(40px, 6.5vw, 80px); color: var(--white); line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
.hero-title em { font-style: normal; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 660px; line-height: 1.7; margin-bottom: 44px; }
.hero-sub strong { color: var(--white); }
.hero-meta { display: flex; flex-wrap: wrap; border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; max-width: 780px; }
.hero-meta-item { flex: 1 1 130px; padding: 16px 22px; border-right: 1px solid var(--border-dark); background: rgba(255,255,255,0.04); }
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .label { display: block; font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 5px; }
.hero-meta-item .value { display: block; font-size: 15px; color: var(--white); font-weight: 600; }
.hero-meta-item .score-value { font-size: 18px; }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; animation: bobHint 2s ease-in-out infinite; }
@keyframes bobHint { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* SECTIONS */
.section { padding: 96px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy); }
.section-alt { background: var(--alt-bg); }
.section-header { margin-bottom: 52px; }
.section-header.light h2, .section-header.light .section-tag { color: var(--white); }
.section-tag { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-header.light .section-tag { color: var(--gold-light); }
.section-header h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); color: var(--navy); line-height: 1.1; letter-spacing: -0.5px; }
.section-desc { margin-top: 14px; color: var(--text-secondary); font-size: 15px; max-width: 640px; }

/* EXECUTIVE */
.exec-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; margin-bottom: 60px; }
.exec-lead { font-size: 19px; font-weight: 500; line-height: 1.5; color: var(--navy); margin-bottom: 18px; }
.exec-copy p { color: var(--text-secondary); margin-bottom: 15px; line-height: 1.75; font-size: 14.5px; }
.exec-copy strong { color: var(--text-primary); }
.exec-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kpi-card { padding: 22px; border-radius: var(--radius); text-align: center; border: 1px solid transparent; }
.kpi-red { background: var(--red-bg); border-color: #f5c6c2; }
.kpi-amber { background: var(--amber-bg); border-color: #fad28a; }
.kpi-green { background: var(--green-bg); border-color: #a3d9be; }
.kpi-blue { background: var(--blue-bg); border-color: #a3c4e8; }
.kpi-icon { font-size: 22px; margin-bottom: 7px; }
.kpi-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 7px; }
.kpi-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.kpi-red .kpi-value { color: var(--red); }
.kpi-amber .kpi-value { color: var(--amber); }
.kpi-green .kpi-value { color: var(--green); }
.kpi-blue .kpi-value { color: var(--blue); }
.kpi-note { font-size: 11.5px; color: var(--text-secondary); line-height: 1.4; }

/* SWOT */
.swot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.swot-card { border-radius: var(--radius); padding: 28px; }
.swot-strength { background: #f0fdf4; border: 1px solid #bbf7d0; }
.swot-weakness { background: #fff7f5; border: 1px solid #fecaca; }
.swot-risk { background: #fffbeb; border: 1px solid #fde68a; }
.swot-opportunity { background: #f0f9ff; border: 1px solid #bae6fd; }
.swot-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.swot-strength .swot-label { color: var(--green); }
.swot-weakness .swot-label { color: var(--red); }
.swot-risk .swot-label { color: var(--amber); }
.swot-opportunity .swot-label { color: var(--blue); }
.swot-card ul { list-style: none; }
.swot-card li { font-size: 13px; color: var(--text-secondary); padding: 5px 0 5px 18px; border-bottom: 1px solid rgba(0,0,0,0.05); position: relative; line-height: 1.5; }
.swot-card li:last-child { border-bottom: none; }
.swot-strength li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.swot-weakness li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.swot-risk li::before { content: '!'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.swot-opportunity li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

@media (max-width: 900px) { .exec-grid { grid-template-columns: 1fr; } .swot-grid { grid-template-columns: 1fr; } }

/* SCORES */
.scores-layout { display: grid; grid-template-columns: 250px 1fr; gap: 60px; align-items: center; }
.overall-score-ring { position: relative; display: flex; align-items: center; justify-content: center; }
.ring-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.ring-number { font-family: var(--font-display); font-size: 40px; color: var(--white); line-height: 1; }
.ring-sub { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.ring-grade { margin-top: 7px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; display: inline-block; }
.grade-c { background: rgba(196,124,0,0.2); color: #fbbf24; }
.grade-b { background: rgba(26,140,91,0.2); color: #4ade80; }
.score-bar-item { margin-bottom: 20px; }
.score-bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.score-bar-label { font-size: 13.5px; color: rgba(255,255,255,0.85); font-weight: 500; }
.score-bar-value { font-size: 13.5px; font-weight: 700; }
.score-bar-value.green { color: #4ade80; }
.score-bar-value.amber { color: #fbbf24; }
.score-bar-value.red { color: #f87171; }
.score-bar-track { height: 7px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
.score-bar-fill.green { background: linear-gradient(90deg,#22c55e,#4ade80); }
.score-bar-fill.amber { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
.score-bar-fill.red { background: linear-gradient(90deg,#ef4444,#f87171); }
@media (max-width: 900px) { .scores-layout { grid-template-columns: 1fr; } }

/* TABLES */
.table-wrap { overflow-x: auto; }
.findings-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.findings-table thead tr { background: var(--navy); }
.findings-table th { padding: 13px 15px; text-align: left; color: rgba(255,255,255,0.75); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; white-space: nowrap; }
.findings-table td { padding: 14px 15px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-secondary); line-height: 1.5; }
.findings-table tr:hover td { background: #f8faff; }
.id-col { font-family: monospace; font-size: 11px; color: var(--text-light); }
.cat-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.cat-perf { background: #ede9fe; color: #6d28d9; }
.cat-seo { background: #dbeafe; color: #1e40af; }
.cat-ux { background: #e0f2fe; color: #0369a1; }
.cat-cro { background: #fef3c7; color: #92400e; }
.cat-acc { background: #dcfce7; color: #166534; }
.cat-msg { background: #fce7f3; color: #9d174d; }
.cat-trust { background: #f3e8ff; color: #7e22ce; }
.sev-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.sev-high { background: var(--red-bg); color: var(--red); }
.sev-med { background: var(--amber-bg); color: var(--amber); }
.sev-low { background: var(--blue-bg); color: var(--blue); }
.effort-badge { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.effort-high { background: #fee2e2; color: #b91c1c; }
.effort-med { background: #fef9c3; color: #854d0e; }
.effort-low { background: #dcfce7; color: #166534; }

/* FINDINGS */
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.findings-heading { font-size: 17px; font-weight: 700; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.wins-heading { color: var(--green); border-color: var(--green-bg); }
.issues-heading { color: var(--red); border-color: var(--red-bg); }
.finding-item { display: flex; gap: 14px; margin-bottom: 22px; }
.finding-dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.finding-dot.green { background: var(--green); }
.finding-dot.amber { background: var(--amber); }
.finding-dot.red { background: var(--red); }
.finding-item strong { display: block; font-size: 14px; margin-bottom: 5px; color: var(--navy); }
.finding-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 768px) { .two-col-equal { grid-template-columns: 1fr; } }

/* UX RADAR */
.radar-row { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.radar-chart-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.ux-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.ux-item:last-child { border-bottom: none; }
.ux-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.ux-item-header strong { font-size: 14px; color: var(--navy); }
.ux-score { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.ux-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) { .radar-row { grid-template-columns: 1fr; } }

/* SCREENSHOTS */
.screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.screenshot-block { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.screenshot-placeholder { background: linear-gradient(135deg,#f4f5f7,#e8eaf0); border: 2px dashed var(--border); padding: 40px 20px; text-align: center; min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.ss-icon { font-size: 32px; }
.ss-label { font-size: 12px; font-weight: 700; color: var(--navy); }
.ss-note { font-size: 11.5px; color: var(--text-secondary); line-height: 1.5; max-width: 210px; text-align: center; }
.ss-verdict { padding: 9px 14px; font-size: 12px; font-weight: 500; line-height: 1.45; }
.verdict-red { background: var(--red-bg); color: var(--red); }
.verdict-amber { background: var(--amber-bg); color: var(--amber); }
.verdict-green { background: var(--green-bg); color: var(--green); }
@media (max-width: 900px) { .screenshot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .screenshot-grid { grid-template-columns: 1fr; } }

/* CWV */
.cwv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }
.cwv-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 26px; position: relative; overflow: hidden; }
.cwv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.cwv-amber::before { background: var(--amber); }
.cwv-red::before { background: var(--red); }
.cwv-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 9px; border-radius: 100px; display: inline-block; margin-bottom: 14px; }
.badge-amber { background: rgba(196,124,0,0.2); color: #fbbf24; }
.badge-red { background: rgba(192,57,43,0.2); color: #f87171; }
.cwv-metric { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.cwv-full { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.cwv-value { font-family: var(--font-display); font-size: 44px; color: var(--white); line-height: 1; margin-bottom: 3px; }
.cwv-amber .cwv-value { color: #fbbf24; }
.cwv-red .cwv-value { color: #f87171; }
.cwv-target { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.cwv-bar-track { height: 5px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; margin-bottom: 14px; }
.cwv-bar-fill { height: 100%; border-radius: 100px; }
.cwv-bar-amber { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
.cwv-bar-red { background: linear-gradient(90deg,#ef4444,#f87171); }
.cwv-desc { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.6; }
@media (max-width: 900px) { .cwv-grid { grid-template-columns: 1fr; } }

/* PERF RECS */
.perf-rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.perf-rec-item { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 20px; }
.perf-rec-priority { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 9px; border-radius: 100px; display: inline-block; margin-bottom: 10px; }
.perf-rec-item strong { display: block; font-size: 13.5px; color: var(--white); margin-bottom: 7px; }
.perf-rec-item p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }
@media (max-width: 900px) { .perf-rec-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .perf-rec-grid { grid-template-columns: 1fr; } }

/* SEO */
.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.analysis-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .2s,box-shadow .2s; }
.analysis-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.analysis-icon { font-size: 26px; margin-bottom: 10px; }
.analysis-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 9px; color: var(--navy); }
.status-row { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; font-size: 11.5px; font-weight: 600; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.status-dot.green { background: var(--green); }
.status-dot.amber { background: var(--amber); }
.status-dot.red { background: var(--red); }
.analysis-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) { .analysis-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .analysis-grid { grid-template-columns: 1fr; } }

.opp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.opp-table th { background: var(--navy); color: rgba(255,255,255,0.8); padding: 11px 14px; text-align: left; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.opp-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: top; }
.opp-table tr:hover td { background: #f0f4ff; }

/* CRO */
.cro-funnel-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; margin-bottom: 44px; box-shadow: var(--shadow); }
.cro-funnel-block h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 28px; color: var(--navy); }
.funnel-stages { display: flex; flex-direction: column; gap: 18px; }
.funnel-stage-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 7px; }
.funnel-stage-bar { background: #f0f2f7; border-radius: 100px; height: 10px; overflow: hidden; margin-bottom: 5px; }
.funnel-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg,#22c55e,#4ade80); }
.funnel-amber { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
.funnel-red { background: linear-gradient(90deg,#ef4444,#f87171); }
.funnel-note { font-size: 12px; color: var(--text-secondary); }
.cro-recs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.cro-rec-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 28px; }
.cro-rec-num { font-family: var(--font-display); font-size: 44px; color: rgba(255,255,255,0.07); line-height: 1; margin-bottom: 10px; }
.cro-rec-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 9px; color: var(--white); }
.cro-rec-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 14px; }
.cro-impact { font-size: 12.5px; font-weight: 600; color: #4ade80; background: rgba(26,140,91,0.15); padding: 7px 12px; border-radius: var(--radius-sm); }
@media (max-width: 768px) { .cro-recs-grid { grid-template-columns: 1fr; } }

/* A11Y */
.a11y-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.a11y-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.a11y-status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 9px; border-radius: 100px; display: inline-block; margin-bottom: 10px; }
.a11y-warn { background: var(--amber-bg); color: var(--amber); }
.a11y-ok { background: var(--green-bg); color: var(--green); }
.a11y-fail { background: var(--red-bg); color: var(--red); }
.a11y-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 7px; color: var(--navy); }
.a11y-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 10px; }
.a11y-guideline { font-size: 10.5px; color: var(--text-light); font-style: italic; }
@media (max-width: 900px) { .a11y-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .a11y-grid { grid-template-columns: 1fr; } }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.trust-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.trust-status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 9px; border-radius: 100px; display: inline-block; margin-bottom: 10px; background: var(--green-bg); color: var(--green); }
.trust-missing { background: var(--red-bg); color: var(--red); }
.trust-gap { border-color: #fecaca; background: #fff7f5; }
.trust-item h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 9px; color: var(--navy); }
.trust-item p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .trust-grid { grid-template-columns: 1fr; } }

/* ROADMAP */
.roadmap-timeline { display: flex; flex-direction: column; gap: 32px; }
.roadmap-phase { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.phase-header { padding: 28px 32px; }
.phase-30 .phase-header { background: linear-gradient(135deg,#0b1529,#1a3a6e); }
.phase-60 .phase-header { background: linear-gradient(135deg,#1a2e4a,#0e4a7c); }
.phase-90 .phase-header { background: linear-gradient(135deg,#0e2e1a,#0a5c2e); }
.phase-badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 4px 12px; border-radius: 100px; margin-bottom: 10px; }
.badge-30 { background: rgba(201,168,76,0.25); color: var(--gold-light); }
.badge-60 { background: rgba(26,109,181,0.3); color: #93c5fd; }
.badge-90 { background: rgba(26,140,91,0.25); color: #86efac; }
.phase-header h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 7px; }
.phase-focus { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.phase-tasks { background: var(--white); padding: 24px 32px; }
.phase-task { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.phase-task:last-child { border-bottom: none; }
.task-check { width: 22px; height: 22px; background: var(--green-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.phase-task strong { display: block; font-size: 13.5px; color: var(--navy); margin-bottom: 3px; }
.task-meta { display: block; font-size: 12px; color: var(--text-secondary); line-height: 1.55; }
.phase-impact { background: var(--navy); padding: 14px 32px; font-size: 12.5px; color: var(--gold-light); font-weight: 500; }

/* MATRIX */
.matrix-wrap { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 28px; display: flex; justify-content: center; margin-bottom: 20px; }
.matrix-wrap canvas { max-width: 100%; }
.matrix-legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,0.7); }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }
.legend-dot.green { background: #22c55e; }
.legend-dot.amber { background: #f59e0b; }
.legend-dot.blue { background: #3b82f6; }
.legend-dot.red { background: #ef4444; }

/* IMPACT */
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.impact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.impact-metric { font-family: var(--font-display); font-size: 34px; color: var(--navy); margin-bottom: 7px; }
.impact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gold); margin-bottom: 10px; }
.impact-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; }
.impact-note { background: var(--amber-bg); border: 1px solid #fad28a; border-radius: var(--radius); padding: 16px 22px; font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; }
.impact-note strong { color: var(--amber); }
@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .impact-grid { grid-template-columns: 1fr; } }

/* CONCLUSION */
.conclusion-block { max-width: 780px; margin: 0 auto; }
.conclusion-lead { font-size: 19px; font-weight: 500; color: var(--white); line-height: 1.6; margin-bottom: 18px; }
.conclusion-block p { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 16px; }
.conclusion-block strong { color: var(--gold-light); }
.conclusion-scores { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 44px; flex-wrap: wrap; }
.conc-score-item { text-align: center; }
.conc-score-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.5); margin-bottom: 7px; }
.conc-score-val { font-family: var(--font-display); font-size: 34px; color: var(--white); }
.conc-score-val.target { color: #fbbf24; }
.conc-score-val.potential { color: #4ade80; }
.conc-arrow { font-size: 24px; color: rgba(255,255,255,0.3); }

/* COMPARATIVE SNAPSHOT */
.compare-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.compare-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 22px; text-align: center; }
.compare-dimension { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.compare-winner { font-family: var(--font-display); font-size: 16px; color: var(--white); margin-bottom: 5px; }
.compare-note { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.compare-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; margin-bottom: 8px; }
.badge-match { background: rgba(201,168,76,0.25); color: var(--gold-light); }
.badge-ibraq { background: rgba(74,222,128,0.2); color: #4ade80; }
.badge-tie { background: rgba(59,130,246,0.2); color: #93c5fd; }
@media (max-width: 900px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .compare-grid { grid-template-columns: 1fr; } }

/* CHART */
.sub-heading { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; color: var(--navy); }
.sub-heading.light { color: var(--white); }
.chart-wrap { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 28px; max-height: 350px; }
.chart-wrap canvas { max-height: 290px; }
.supp-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 22px; }
.supp-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.supp-value { font-family: var(--font-display); font-size: 34px; }
.amber-text { color: #fbbf24; }
.red-text { color: #f87171; }
.green-text { color: #4ade80; }
.supp-card p { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.supporting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
@media (max-width: 900px) { .supporting-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.site-footer { background: #060e1d; padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-weight: 600; font-size: 13px; }
.footer-note { font-size: 11.5px; color: rgba(255,255,255,0.35); max-width: 600px; line-height: 1.7; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeUp 0.55s ease forwards; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: #c0c8d8; border-radius: 3px; }

/* PRINT */
@media print {
  .site-nav,.hero-scroll-hint { display: none; }
  .hero { min-height: auto; padding: 50px 0; }
  .section { padding: 50px 0; }
  * { animation: none !important; }
}
