/* ════════════════════════════════════════════════════════
   aipolicy.css — AI Policy and AI Compliance Framework pages
   Shared by /ai-policy/ and /ai-compliance/
   All classes use .aip- prefix
════════════════════════════════════════════════════════ */

/* ── Label ── */
.aip-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 14px;
}
.aip-label-dark { color: #f59e0b; }

/* ── Hero ── */
.aip-hero {
  background: #0a1628;
  padding: 100px 24px 80px;
  text-align: center;
}
.aip-hero-inner {
  max-width: 740px;
  margin: 0 auto;
}
.aip-title {
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 20px;
}
.aip-title em {
  font-style: italic;
  color: #f59e0b;
}
.aip-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.aip-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.aip-btn {
  display: inline-block;
  background: #f59e0b;
  color: #0a1628;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.aip-btn:hover {
  background: #fbbf24;
  box-shadow: 0 6px 28px rgba(245,158,11,0.45);
}
.aip-btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.aip-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.aip-btn-lg {
  font-size: 17px;
  padding: 18px 36px;
}

/* ── Sections ── */
.aip-section { padding: 80px 24px; }
.aip-section-white { background: #ffffff; }
.aip-section-navy  { background: #0a1628; }
.aip-section-grey  { background: #f8fafc; border-top: 1px solid #e2e8f0; }
.aip-inner { max-width: 1100px; margin: 0 auto; }
.aip-narrow { max-width: 760px; }
.aip-section-title {
  font-family: Inter, sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 8px 0 16px;
}
.aip-dark { color: #0a1628 !important; }
.aip-section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 0;
}
.aip-section-sub.aip-dark { color: #475569 !important; }

/* ── Policy covers grid (3-column) ── */
.aip-covers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.aip-cover-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #f59e0b;
  padding: 24px;
}
.aip-cover-card h3 {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 8px;
}
.aip-cover-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ── Risk grid (3×2) ── */
.aip-risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.aip-risk-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid #f59e0b;
  padding: 28px 24px;
}
.aip-risk-num {
  font-size: 38px;
  font-weight: 900;
  color: #f59e0b;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.aip-risk-card h3 {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.aip-risk-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin: 0;
}

/* ── Checklist ── */
.aip-checklist {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aip-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 16px;
  color: #0a1628;
  font-weight: 500;
  line-height: 1.5;
}
.aip-checklist li:first-child {
  border-top: 1px solid #e2e8f0;
}
.aip-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #0a1628;
  color: #f59e0b;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Tier cards ── */
.aip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
  align-items: start;
}
.aip-tier {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #e2e8f0;
  padding: 32px 28px;
  position: relative;
}
.aip-tier-featured {
  border-top-color: #f59e0b;
  box-shadow: 0 4px 32px rgba(245,158,11,0.12);
}
.aip-tier-badge {
  display: inline-block;
  background: #f59e0b;
  color: #0a1628;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.aip-tier-name {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 8px;
}
.aip-tier-price {
  font-size: 36px;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1;
}
.aip-tier-price span {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 0;
  margin-left: 4px;
}
.aip-tier > p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 20px;
}
.aip-tier-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.aip-tier-includes li {
  font-size: 14px;
  color: #0a1628;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}
.aip-tier-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
}
.aip-tier-turnaround {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 20px;
  padding-top: 4px;
}
.aip-tier-best-for {
  font-size: 12px;
  color: #64748b;
  font-style: italic;
  margin-bottom: 20px;
  padding: 10px;
  background: #f8fafc;
  border-left: 3px solid #f59e0b;
}
.aip-tier-renewal {
  font-size: 12px;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 8px 10px;
  background: rgba(245,158,11,0.08);
  border-left: 3px solid #f59e0b;
}
.aip-tier-min-term {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 16px;
  padding-top: 2px;
}
.aip-tier-btn {
  display: block;
  background: #f59e0b;
  color: #0a1628;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}
.aip-tier-btn:hover { background: #fbbf24; }

/* ── Compare grid (policy vs framework) ── */
.aip-compare {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
  flex-wrap: wrap;
}
.aip-compare-col {
  flex: 1;
  min-width: 260px;
  padding: 28px;
  border: 1px solid #e2e8f0;
}
.aip-compare-old {
  background: #f8fafc;
  border-top: 3px solid #94a3b8;
}
.aip-compare-new {
  background: #fff8e6;
  border-top: 3px solid #f59e0b;
}
.aip-compare-arrow {
  font-size: 32px;
  color: #f59e0b;
  display: flex;
  align-items: center;
  font-weight: 300;
  opacity: 0.5;
  flex-shrink: 0;
}
.aip-compare-header {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
}
.aip-compare-header-amber { color: #f59e0b; }
.aip-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aip-compare-col ul li {
  font-size: 14px;
  color: #475569;
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}
.aip-compare-col ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: #94a3b8;
}
.aip-compare-new ul li::before { color: #f59e0b; }

/* ── Pillars (six components) ── */
.aip-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.aip-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #f59e0b;
  padding: 28px 24px;
}
.aip-pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  opacity: 0.7;
  margin-bottom: 10px;
}
.aip-pillar h3 {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.aip-pillar p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin: 0;
}

/* ── Industry cards ── */
.aip-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.aip-industry-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #0a1628;
  padding: 24px;
}
.aip-industry-card h3 {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 10px;
}
.aip-industry-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ── Process steps ── */
.aip-process {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
}
.aip-process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}
.aip-process-num {
  font-size: 44px;
  font-weight: 900;
  color: #f59e0b;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.aip-process-step h3 {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
.aip-process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}
.aip-process-arrow {
  font-size: 28px;
  color: #f59e0b;
  opacity: 0.4;
  margin-top: 38px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.aip-faq { margin-top: 44px; }
.aip-faq-item { border-bottom: 1px solid #e2e8f0; }
.aip-faq-item:first-child { border-top: 1px solid #e2e8f0; }
.aip-faq-item summary {
  padding: 20px 4px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a1628;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aip-faq-item summary::-webkit-details-marker { display: none; }
.aip-faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: #f59e0b;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
}
.aip-faq-item[open] summary::after { content: '−'; }
.aip-faq-item p {
  padding: 0 4px 20px;
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ── Final CTA ── */
.aip-final-cta {
  background: #0a1628;
  padding: 80px 24px;
  text-align: center;
}
.aip-final-cta .aip-inner { max-width: 680px; }
.aip-reassurance {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  line-height: 1.7;
}

/* ── EU AI Act Timeline ── */
.aip-eu-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto 3rem;
  border-left: 2px solid rgba(245,158,11,0.3);
  padding-left: 0;
}
.aip-eu-milestone {
  display: flex;
  gap: 0;
  position: relative;
  padding-bottom: 2rem;
}
.aip-eu-milestone::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #f59e0b;
  border: 2px solid #0a1628;
}
.aip-eu-imminent::before { background: #ef4444; }
.aip-eu-future::before   { background: rgba(245,158,11,0.3); }
.aip-eu-date {
  min-width: 90px;
  padding: 0 1.25rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f59e0b;
  text-transform: uppercase;
  padding-top: 2px;
}
.aip-eu-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
}
.aip-eu-imminent .aip-eu-content h3 { color: #fca5a5; }
.aip-eu-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

/* ── EU Risk Box ── */
.aip-eu-risk-box {
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.aip-eu-risk-box h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  margin: 0 0 1.25rem;
}
.aip-eu-risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.aip-eu-risk-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.aip-eu-risk-icon {
  color: #f59e0b;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.aip-eu-risk-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

/* ── Tier Group Label ── */
.aip-tier-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 1.5rem;
  text-align: center;
}

/* ── Managed EU Add-on Banner ── */
.aip-eu-managed-addon {
  margin-top: 2.5rem;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 2rem;
}
.aip-eu-addon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.aip-eu-addon-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem;
}
.aip-eu-addon-text p {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
  max-width: 560px;
  line-height: 1.6;
}
.aip-eu-addon-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}
.aip-eu-addon-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}
.aip-eu-addon-amount small {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
}
.aip-eu-addon-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .aip-hero { padding: 80px 20px 60px; }
  .aip-compare-arrow { display: none; }
  .aip-process-arrow { display: none; }
  .aip-process { gap: 32px; }
  .aip-tiers { gap: 28px; }
  .aip-eu-risk-grid { grid-template-columns: 1fr; }
  .aip-eu-addon-inner { flex-direction: column; }
  .aip-eu-date { min-width: 70px; font-size: 11px; }
}
