/* /css/pages.css
   Corporate page skin - Stripe-inspired clean aesthetic.
   Uses existing :root tokens from editor.css. */

.akp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--layout-gutter);
  padding-right: var(--layout-gutter);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--ak-dark);
  background: var(--ak-white);
  letter-spacing: var(--ak-letter-spacing);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { 
  color: var(--ak-dark); 
  text-decoration: none; 
  transition: color 0.15s ease;
}
a:hover { color: rgba(1, 23, 43, 0.72); }
/* ============================================
   HERO GRID BACKGROUND SYSTEM
   3×7 grid with subtle gradients & strokes
   ============================================ */

/* Grid container - positioned behind hero content */
.akp-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;

  /* wider than the content (extends under .akp-wrap padding) */
  width: min(1100px, 100%);

  height: clamp(420px, 55vh, 580px);

  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(3, 1fr);

  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Global strokes (NOT per-cell):
   - left + right edges (light gray)
   - horizontal at 33.333% (light gray)
   - horizontal at 66.666% (mid gray)
*/
.akp-hero-grid::after {
  content: none;
}

.akp-hero-grid__cell {
  --akp_grid_to: var(--akp_grid_gray1);
  --akp_grid_ang: 135deg;

  background: linear-gradient(
    var(--akp_grid_ang),
    #ffffff 0%,
    #ffffff 55%,
    var(--akp_grid_to) 100%
  );

  opacity: 1;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.akp-hero-grid .akp-hero-grid__cell::before,
.akp-hero-grid .akp-hero-grid__cell::after {
  content: none;
}

/* 3 very subtle target colors */
:root {
  --akp_grid_gray1: #f5f6f8; /* cool gray */
  --akp_grid_teal:  #f2f8f7; /* very light teal */
  --akp_grid_gray2: #f7f7f6; /* slightly warmer gray */
}

/* Deterministic “random” directions */
.akp-hero-grid__cell:nth-child(1)  { --akp_grid_ang: 18deg;  }
.akp-hero-grid__cell:nth-child(2)  { --akp_grid_ang: 142deg; }
.akp-hero-grid__cell:nth-child(3)  { --akp_grid_ang: 226deg; }
.akp-hero-grid__cell:nth-child(4)  { --akp_grid_ang: 96deg;  }
.akp-hero-grid__cell:nth-child(5)  { --akp_grid_ang: 312deg; }
.akp-hero-grid__cell:nth-child(6)  { --akp_grid_ang: 164deg; }
.akp-hero-grid__cell:nth-child(7)  { --akp_grid_ang: 38deg;  }
.akp-hero-grid__cell:nth-child(8)  { --akp_grid_ang: 248deg; }
.akp-hero-grid__cell:nth-child(9)  { --akp_grid_ang: 122deg; }
.akp-hero-grid__cell:nth-child(10) { --akp_grid_ang: 292deg; }
.akp-hero-grid__cell:nth-child(11) { --akp_grid_ang: 206deg; }
.akp-hero-grid__cell:nth-child(12) { --akp_grid_ang: 74deg;  }
.akp-hero-grid__cell:nth-child(13) { --akp_grid_ang: 336deg; }
.akp-hero-grid__cell:nth-child(14) { --akp_grid_ang: 156deg; }
.akp-hero-grid__cell:nth-child(15) { --akp_grid_ang: 26deg;  }
.akp-hero-grid__cell:nth-child(16) { --akp_grid_ang: 268deg; }
.akp-hero-grid__cell:nth-child(17) { --akp_grid_ang: 112deg; }
.akp-hero-grid__cell:nth-child(18) { --akp_grid_ang: 318deg; }
.akp-hero-grid__cell:nth-child(19) { --akp_grid_ang: 190deg; }
.akp-hero-grid__cell:nth-child(20) { --akp_grid_ang: 58deg;  }
.akp-hero-grid__cell:nth-child(21) { --akp_grid_ang: 238deg; }

/* ============================================
   GRID VARIANTS (3 curated layouts)
   Add class to .akp-hero: .akp-hero--grid-a | .akp-hero--grid-b | .akp-hero--grid-c
   Cells have NO strokes; only global strokes from .akp-hero-grid::after
   ============================================ */

/* Variant A: balanced */
.akp-hero--grid-a .akp-hero-grid__cell { --akp_grid_to: var(--akp_grid_gray1); }
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(2),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(5),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(10),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(13),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(15),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(18),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(21) { --akp_grid_to: var(--akp_grid_teal); }
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(3),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(6),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(8),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(11),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(14),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(16),
.akp-hero--grid-a .akp-hero-grid__cell:nth-child(19) { --akp_grid_to: var(--akp_grid_gray2); }

/* Variant B: teal diagonal bias */
.akp-hero--grid-b .akp-hero-grid__cell { --akp_grid_to: var(--akp_grid_gray1); }
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(3),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(4),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(8),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(9),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(14),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(19),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(20) { --akp_grid_to: var(--akp_grid_teal); }
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(5),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(6),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(10),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(11),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(15),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(16),
.akp-hero--grid-b .akp-hero-grid__cell:nth-child(21) { --akp_grid_to: var(--akp_grid_gray2); }

/* Variant C: scattered */
.akp-hero--grid-c .akp-hero-grid__cell { --akp_grid_to: var(--akp_grid_gray2); }
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(1),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(5),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(9),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(12),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(15),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(18),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(21) { --akp_grid_to: var(--akp_grid_teal); }
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(3),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(6),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(8),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(10),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(13),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(16),
.akp-hero--grid-c .akp-hero-grid__cell:nth-child(19) { --akp_grid_to: var(--akp_grid_gray1); }

/* ============================================
   HERO SECTION - Updated with grid support
   ============================================ */

.akp-hero {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.akp-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: start;
}

/* Surface panel behind hero content */
.akp-hero__surface {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 4px 24px rgba(0, 0, 0, 0.04);
}

.akp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(1, 23, 43, 0.65);
  font-size: var(--app_font_mid-size);
  font-weight: 500;
  width: fit-content;
  margin-bottom: 20px;
}

.akp-kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ak-shape-accent);
}

.akp-h1 {
  margin: 0 0 20px;
  font-size: var(--h1-size);
  line-height: var(--h1--line-height);
  letter-spacing: var(--h1-letter-spacing);
  font-weight: 600;
}

.akp-lead {
  margin: 0 0 16px;
  color: rgba(1, 23, 43, 0.65);
  font-size: var(--app_font_regular-size);
  line-height: 1.6;
  max-width: 58ch;
}
.akp-lead:last-of-type {
  margin-bottom: 28px;
}

.akp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Panel - Clean sidebar panel */
.akp-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 4px 24px rgba(0, 0, 0, 0.04);
}

.akp-panel__title {
  font-size: var(--app_font_step-size);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ak-dark);
}

/* List - Clean checklist */
.akp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.akp-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(1, 23, 43, 0.7);
  font-size: var(--app_font_mid-size);
  line-height: 1.5;
}

.akp-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(42, 198, 193, 0.12);
  border: 1px solid rgba(42, 198, 193, 0.25);
  flex: 0 0 auto;
  position: relative;
  margin-top: 2px;
}

.akp-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--ak-shape-accent);
  border-bottom: 2px solid var(--ak-shape-accent);
  transform: rotate(45deg);
}

/* ============================================
   TOPBAR - Clean corporate header
   ============================================ */

.akp-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.akp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: var(--topbar-gap);
}

.akp-brand {
  display: flex;
  align-items: center;
  gap: var(--s12-p-);
}

.akp-brand__logo {
  height: var(--s48-p-);
  width: auto;
  display: block;
}

.akp-nav {
  display: flex;
  align-items: center;
  gap: var(--s28-p-);
  font-size: var(--app_font_mid-size);
  font-weight: 500;
  color: rgba(1, 23, 43, 0.65);
  white-space: nowrap;
}

.akp-nav a { 
  color: rgba(1, 23, 43, 0.65); 
  position: relative;
  padding: 8px 0;
}
.akp-nav a:hover { 
  color: var(--ak-dark); 
}
.akp-nav a[aria-current="page"] {
  color: var(--ak-dark);
  font-weight: 600;
}
.akp-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ak-shape-accent);
  border-radius: 1px;
}

.akp-cta {
  display: flex;
  align-items: center;
  gap: var(--s10-p-);
  white-space: nowrap;
}

/* Buttons - Corporate pill style */
.akp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--ak-white);
  color: var(--ak-dark);
  font-weight: 500;
  font-size: var(--app_font_regular-size);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.akp-btn:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.akp-btn--primary {
  border-color: transparent;
  background: var(--ak-shape-accent);
  color: var(--ak-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.akp-btn--primary:hover {
  background: var(--ak-hover);
  color: var(--ak-dark);
  box-shadow: 0 4px 12px rgba(42, 198, 193, 0.25);
}

/* ============================================
   SECTIONS - Clean section styling
   ============================================ */

.akp-section {
  padding: 72px 0;
}

.akp-sectionHead {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.akp-h2 {
  margin: 0;
  font-size: var(--h2-size);
  line-height: var(--h2--line-height);
  letter-spacing: var(--h2--letter-spacing);
  font-weight: 600;
}

.akp-muted {
  color: rgba(1, 23, 43, 0.6);
  font-size: var(--app_font_regular-size);
  line-height: 1.6;
  margin: 0;
  max-width: 68ch;
}

.akp-grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card - Clean corporate card */
.akp-card {
  background: var(--ak-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.akp-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.akp-h3 {
  margin: 0 0 10px;
  font-size: var(--h3-size);
  line-height: var(--h3--line-height);
  letter-spacing: var(--h3--letter-spacing);
  font-weight: 600;
}

.akp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Steps - Clean step indicators */
.akp-steps {
  display: grid;
  gap: 16px;
}

.akp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--ak-white);
  transition: all 0.2s ease;
}

.akp-step:hover {
  border-color: rgba(0, 0, 0, 0.12);
}

.akp-step__num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(42, 198, 193, 0.12);
  border: 1px solid rgba(42, 198, 193, 0.25);
  color: var(--ak-dark);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--default-mono-font-family);
}

.akp-step__title {
  margin: 0 0 6px;
  font-size: var(--app_font_regular-size);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Media - Clean image styling */
.akp-media__img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* ============================================
   FAQ - Clean accordion style
   ============================================ */

.akp-faq {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(250, 250, 250, 0.5);
}

.akp-faqList {
  display: grid;
  gap: 10px;
}

.akp-faqItem {
  background: var(--ak-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.akp-faqItem:hover {
  border-color: rgba(0, 0, 0, 0.12);
}

.akp-faqQ {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 500;
  font-size: var(--app_font_regular-size);
  color: var(--ak-dark);
  transition: background 0.15s ease;
}

.akp-faqQ:hover {
  background: rgba(0, 0, 0, 0.01);
}

.akp-faqQ::-webkit-details-marker { display: none; }

.akp-faqIcon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  flex: 0 0 auto;
  position: relative;
  transition: all 0.2s ease;
}

.akp-faqItem:hover .akp-faqIcon {
  border-color: rgba(0, 0, 0, 0.2);
}

.akp-faqIcon::before,
.akp-faqIcon::after {
  content: "";
  position: absolute;
  background: rgba(1, 23, 43, 0.5);
  border-radius: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}

.akp-faqIcon::before { width: 8px; height: 2px; }
.akp-faqIcon::after { width: 2px; height: 8px; }

.akp-faqItem[open] .akp-faqIcon {
  background: rgba(42, 198, 193, 0.1);
  border-color: rgba(42, 198, 193, 0.3);
}
.akp-faqItem[open] .akp-faqIcon::before,
.akp-faqItem[open] .akp-faqIcon::after {
  background: var(--ak-shape-accent);
}
.akp-faqItem[open] .akp-faqIcon::after { display: none; }

.akp-faqA {
  padding: 0 20px 18px;
  max-width: 90ch;
}

/* CTA card - Clean call-to-action */
.akp-ctaCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ak-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.akp-ctaCard__title {
  font-weight: 600;
  font-size: var(--app_font_step-size);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.akp-fineprint {
  font-size: var(--app_font_mid-size);
  line-height: 1.5;
  color: rgba(1, 23, 43, 0.55);
}

/* Footer - Clean corporate footer */
.akp-footer {
  padding: 48px 0;
  background: rgba(250, 250, 250, 0.5);
}

.akp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--layout-gap);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 32px;
}

.akp-footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: flex-end;
  font-size: var(--app_font_mid-size);
  font-weight: 500;
  color: rgba(1, 23, 43, 0.6);
}

.akp-footerLinks a { 
  color: rgba(1, 23, 43, 0.6); 
  transition: color 0.15s ease;
}
.akp-footerLinks a:hover { 
  color: var(--ak-dark); 
}
.akp-footerLinks a[aria-current="page"] {
  color: var(--ak-dark);
  font-weight: 600;
}

/* CTA card actions */
.akp-ctaCard__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Legal pages */
.akp-legal-hero {
  padding: 80px 0 64px;
  max-width: 720px;
}

.akp-prose {
  max-width: 720px;
  margin: 0 auto;
}

.akp-prose-section {
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.akp-prose-section:first-child {
  padding-top: 0;
  border-top: none;
}

.akp-prose-section > h2 {
  margin: 0 0 14px;
  font-size: var(--h3-size);
  line-height: var(--h3--line-height);
  letter-spacing: var(--h3--letter-spacing);
  font-weight: 600;
  color: var(--ak-dark);
}

.akp-prose-section > h3 {
  margin: 20px 0 8px;
  font-size: var(--app_font_regular-size);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ak-dark);
}

.akp-prose-section p {
  margin: 0 0 12px;
  color: rgba(1, 23, 43, 0.65);
  font-size: var(--app_font_regular-size);
  line-height: 1.65;
}

.akp-prose-section ul,
.akp-prose-section ol {
  margin: 0 0 12px;
  padding-left: 22px;
  color: rgba(1, 23, 43, 0.65);
  font-size: var(--app_font_regular-size);
  line-height: 1.65;
}

.akp-prose-section li {
  margin-bottom: 6px;
}

.akp-prose-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(42, 198, 193, 0.1);
  border: 1px solid rgba(42, 198, 193, 0.25);
  color: rgba(1, 23, 43, 0.7);
  font-size: var(--app_font_mid-size);
  font-weight: 500;
  margin-bottom: 16px;
}

.akp-prose-back {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 16px;
}

/* Table */
.akp-prose-table-wrap {
  overflow-x: auto;
  margin: 16px 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.akp-prose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--app_font_mid-size);
}

.akp-prose-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(250, 250, 250, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: var(--ak-dark);
  white-space: nowrap;
}

.akp-prose-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(1, 23, 43, 0.65);
  vertical-align: top;
}

.akp-prose-table tr:last-child td {
  border-bottom: none;
}

/* Callout */
.akp-callout {
  background: rgba(255, 251, 235, 0.7);
  border: 1px solid rgba(245, 208, 118, 0.3);
  border-left: 3px solid rgba(245, 176, 65, 0.6);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 16px 0;
}

.akp-callout p {
  margin: 0;
  font-size: var(--app_font_mid-size);
  line-height: 1.65;
  color: rgba(100, 75, 25, 0.85);
}

.akp-callout strong {
  color: rgba(80, 60, 15, 0.95);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 980px) {
  .akp-hero__inner { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .akp-hero-grid {
    height: clamp(380px, 50vh, 480px);
  }
  .akp-grid3 { 
    grid-template-columns: 1fr; 
  }
  .akp-split { 
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  .akp-footer__inner { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 20px;
  }
  .akp-footerLinks { 
    justify-content: flex-start; 
  }
  .akp-ctaCard { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  .akp-hero__surface {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .akp-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .akp-nav { 
    display: none; 
  }
  .akp-h1 { 
    font-size: 28px; 
    line-height: 34px; 
  }
  .akp-h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .akp-btn { 
    width: 100%; 
  }
  .akp-hero__actions { 
    flex-direction: column; 
  }
  .akp-hero__inner {
    padding: 48px 0 40px;
  }
 .akp-hero-grid {
    height: clamp(350px, 55vh, 420px);
    width: 100%;
  }
  .akp-section {
    padding: 48px 0;
  }
  .akp-prose-back { 
    flex-direction: column; 
  }
  .akp-ctaCard {
    padding: 20px 24px;
  }
  .akp-hero__surface {
    padding: 24px;
    border-radius: 12px;
  }
  .akp-panel {
    border-radius: 12px;
    padding: 20px;
  }
}