/* BagHelp - Friendly Authority Design System */
/* Fonts loaded via <link> in HTML head - @import removed to avoid duplicate requests and render-blocking */

:root {
  --primary: #1B4FE8;
  --primary-container: #2F63F5;
  --on-primary: #ffffff;
  --primary-fixed: #E8EEFF;
  --primary-dark: #0D2DB5;
  --secondary: #3851C6;
  --secondary-container: #C2CEFF;
  --on-secondary: #ffffff;
  --tertiary: #C2410C;
  --tertiary-container: #EA580C;
  --on-tertiary: #ffffff;
  --surface: #ffffff;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #F4F6FF;
  --surface-container: #EBF0FF;
  --surface-container-high: #E0E8FF;
  --surface-container-highest: #D4DFFF;
  --on-surface: #0E1340;
  --on-surface-variant: #47578A;
  --outline: #6472A8;
  --outline-variant: #C0CAEF;
  --error: #DC2626;
  --error-container: #FEE2E2;
  --inverse-surface: #10183A;
  --inverse-on-surface: #EEF1FA;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--on-surface);
  font-weight: 800;
}
.label, label, .meta { font-family: 'Public Sans', sans-serif; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(195,197,217,0.2);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 86px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 900; color: #1B4FE8; letter-spacing: -0.04em; text-decoration: none;
  display: inline-flex; align-items: center; line-height: 0;
}
.nav-logo img { height: 55px !important; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 600; color: var(--on-surface-variant); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-cta {
  background: linear-gradient(135deg, #1443D8, #1B4FE8);
  color: white;
  padding: 0.6rem 1.5rem; border-radius: 9999px;
  font-weight: 700; font-size: 0.875rem;
  text-decoration: none; transition: all 0.25s;
  border: none; cursor: pointer;
  box-shadow: 0 2px 10px rgba(27,79,232,0.25);
}
.nav-cta:hover { background: linear-gradient(135deg, #1B4FE8, #2F63F5); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,79,232,0.35); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; }
.dropdown-menu {
  visibility: hidden; opacity: 0;
  position: absolute; top: calc(100% + 0.5rem); left: -1rem;
  background: white; border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(27,79,232,0.12);
  padding: 0.5rem; min-width: 220px; z-index: 100;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
/* Invisible bridge fills the gap between link and menu */
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  visibility: visible; opacity: 1; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 0.65rem 1rem;
  border-radius: 0.5rem; color: var(--on-surface-variant);
  font-size: 0.875rem; white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--surface-container-low); color: var(--primary); }

/* Mobile nav toggle */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; border-radius: 0.5rem;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--surface-container-low); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--on-surface); margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease, background 0.2s;
}
/* Hamburger → X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(12px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-12px) rotate(-45deg); }

/* ── Mobile nav overlay ──────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 78px;
  left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--outline-variant);
  box-shadow: 0 16px 48px rgba(14,19,64,0.14);
  z-index: 110;
  max-height: calc(100svh - 78px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Hidden state */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.16,1,0.3,1);
  visibility: hidden;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav-inner {
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Intro card with tagline + CTA */
.mnav-intro {
  background: linear-gradient(135deg, #0B1766 0%, #1B4FE8 100%);
  border-radius: 1.1rem;
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.mnav-tagline {
  font-size: 1.05rem; font-weight: 800;
  color: white;
  line-height: 1.25; margin: 0;
  letter-spacing: -0.02em;
}
.mnav-sub {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.4; margin: 0;
  font-family: 'Public Sans', sans-serif;
}
.mnav-cta-btn {
  display: block !important;
  text-align: center;
  padding: 0.8rem 1.25rem !important;
  font-size: 0.95rem !important;
  background: white !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
  border-radius: 9999px !important;
}
.mnav-cta-btn:hover { transform: translateY(-1px) !important; }

/* Section groupings */
.mnav-section { display: flex; flex-direction: column; }
.mnav-label {
  font-size: 0.67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--on-surface-variant);
  font-family: 'Public Sans', sans-serif;
  padding: 0 0.5rem 0.35rem;
}
.mnav-section > a {
  display: block;
  padding: 0.62rem 0.5rem;
  font-weight: 600; font-size: 0.95rem;
  color: var(--on-surface);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.12s, color 0.12s;
  line-height: 1.3;
}
.mnav-section > a:hover { background: var(--surface-container-low); color: var(--primary); }
.mnav-section > a.active { color: var(--primary); background: rgba(27,79,232,0.06); }

/* Backdrop */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(9,26,110,0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity 0.2s ease;
}
.mobile-nav-backdrop.visible { display: block; }

/* Hero */
.hero-gradient { background: linear-gradient(135deg, #091A6E 0%, #1443D8 45%, #1B4FE8 75%, #2F63F5 100%); }
.hero { position: relative; overflow: hidden; padding: 4rem 1.5rem 6rem; }
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 7fr 5fr; } }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #1443D8, #1B4FE8, #2F63F5);
  color: white; padding: 1rem 2.5rem; border-radius: 9999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(27,79,232,0.3), 0 1px 3px rgba(27,79,232,0.15);
  letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 28px rgba(27,79,232,0.4), 0 2px 8px rgba(27,79,232,0.2); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface-container-high); color: var(--on-surface);
  padding: 1rem 2.5rem; border-radius: 9999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--surface-container-highest); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--primary);
  padding: 1rem 2.5rem; border-radius: 9999px;
  font-weight: 800; font-size: 1.1rem; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: scale(1.03); }

/* Cards */
.card {
  background: var(--surface-container-lowest);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  border: 1px solid var(--outline-variant);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 2px 12px rgba(27,79,232,0.04);
}
.card:hover { box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 8px 32px rgba(27,79,232,0.08); border-color: rgba(192,202,239,0.6); transform: translateY(-2px); }

/* Section utilities */
.section { padding: 4rem 1.5rem; }
.section-sm { padding: 2.5rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }
.bg-low { background: var(--surface-container-low); }
.bg-dark { background: var(--on-surface); color: var(--inverse-on-surface); }
.rounded-section { border-radius: 2rem; margin: 0 0.75rem; }

/* Grid utilities */
.grid-3 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Icon containers */
.icon-box {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box.primary { background: rgba(27,79,232,0.1); color: var(--primary); }
.icon-box.secondary { background: rgba(70,92,153,0.1); color: var(--secondary); }
.icon-box.tertiary { background: rgba(194,65,12,0.1); color: var(--tertiary); }

/* Chip / badge */
.chip {
  display: inline-block;
  padding: 0.35rem 1rem; border-radius: 9999px;
  font-size: 0.8rem; font-weight: 600; font-family: 'Public Sans', sans-serif;
}
.chip-blue { background: var(--secondary-container); color: #344a86; }
.chip-orange { background: rgba(194,65,12,0.1); color: var(--tertiary); }

/* Steps */
.step-number {
  font-size: 7rem; font-weight: 900;
  color: var(--surface-container-high);
  line-height: 1; margin-bottom: -1.5rem;
  user-select: none; font-family: 'Inter', sans-serif;
}

/* FAQ */
.faq-item { background: var(--surface-container-low); padding: 2rem; border-radius: 1.5rem; margin-bottom: 1rem; cursor: pointer; }
.faq-question { font-size: 1.1rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 400; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; margin-top: 1rem; color: var(--on-surface-variant); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* Article / rich text - Premium typography */
.prose { font-size: 1.1rem; }
.prose h2 {
  font-size: 1.5rem; font-weight: 800; margin: 2.75rem 0 0.85rem;
  letter-spacing: -0.02em; color: #1A1F36; line-height: 1.3;
}
.prose h3 {
  font-size: 1.15rem; font-weight: 700; margin: 2rem 0 0.6rem;
  color: #1A1F36; letter-spacing: -0.01em; line-height: 1.35;
}
.prose p {
  color: #3D4559; margin-bottom: 1.4rem; line-height: 1.85;
  font-family: 'Public Sans', sans-serif; font-size: 1.05rem;
  font-weight: 400; letter-spacing: 0.01em;
}
/* Allow p to inherit white/colored text inside callout cards */
.prose div[style*="color:white"] p,
.prose div[style*="color: white"] p { color: inherit; }
.prose ul, .prose ol {
  color: #3D4559; margin: 1rem 0 1.75rem 1.5rem; line-height: 1.85;
  font-family: 'Public Sans', sans-serif; font-size: 1.02rem;
}
.prose li { margin-bottom: 0.6rem; }
.prose strong { color: var(--on-surface); font-weight: 700; }
.prose a {
  color: var(--primary); text-decoration: none;
  border-bottom: 1.5px solid rgba(27,79,232,0.25);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.prose a:hover { border-bottom-color: var(--primary); }
.prose a.btn-primary, .prose a.btn-secondary, .prose a.btn-white, .prose a.btn-hero-ghost {
  color: white; border-bottom: none;
}
.prose a.calc-result-cta {
  color: white;
  border-bottom: none;
}
.prose a.btn-secondary { color: var(--primary); }
.prose .callout { background: var(--secondary-container); border-radius: 1rem; padding: 1.5rem; margin: 2rem 0; }
.prose .callout p { color: #344a86; margin: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 2rem 0; border-radius: 1rem; overflow: hidden; }
.prose table th { background: var(--surface-container-low); padding: 0.85rem 1.1rem; text-align: left; font-weight: 700; border-bottom: 2px solid var(--outline-variant); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; font-family: 'Public Sans', sans-serif; }
.prose table td { padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--surface-container); color: var(--on-surface-variant); font-size: 0.95rem; }
.prose table tr:last-child td { border-bottom: none; }
.prose table tr:hover td { background: rgba(27,79,232,0.02); }
.prose > p:first-of-type { font-size: 1rem; color: var(--on-surface-variant); line-height: 1.75; }

/* Key takeaways box - Premium */
.takeaways {
  background: var(--surface-container-low);
  border-radius: 1.25rem; padding: 0; margin: 2.5rem 0;
  border: 1.5px solid var(--surface-container-high);
  box-shadow: 0 1px 4px rgba(14,19,64,0.05), 0 8px 24px rgba(14,19,64,0.06);
  position: relative; overflow: hidden;
}
/* Top accent stripe */
.takeaways::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #1B4FE8 0%, #6B8CFF 60%, #C7D3FF 100%);
  border-radius: 1.25rem 1.25rem 0 0;
}
.takeaways::after { display: none; }
.takeaways-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.3rem 1.75rem 1.1rem 1.75rem;
  border-bottom: 1px solid var(--surface-container-high);
}
.takeaways-header-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, #4F72FF 100%);
  box-shadow: 0 2px 8px rgba(27,79,232,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.takeaways h4 {
  font-size: 0.72rem; font-weight: 700; color: var(--on-surface);
  text-transform: uppercase; letter-spacing: 0.15em; margin: 0;
  font-family: 'Public Sans', sans-serif;
}
.takeaways ul { margin: 0; list-style: none; padding: 0.4rem 0 0.6rem; }
.takeaways li {
  padding: 0.9rem 1.75rem 0.9rem 4.5rem; color: var(--on-surface); position: relative;
  font-family: 'Public Sans', sans-serif; font-size: 0.9rem; line-height: 1.65;
  border-bottom: 1px solid var(--surface-container-high);
  transition: background 0.15s ease;
}
.takeaways li:last-child { border-bottom: none; }
.takeaways li:hover { background: rgba(27,79,232,0.04); }
.takeaways li:hover .takeaway-num { background: var(--primary); color: white; box-shadow: 0 2px 8px rgba(27,79,232,0.35); }
.takeaways li::before { display: none; }
.takeaways li::after { display: none; }
.takeaway-num {
  position: absolute; left: 1.6rem; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 8px;
  background: white;
  border: 1.5px solid var(--surface-container-highest);
  box-shadow: 0 1px 3px rgba(14,19,64,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: var(--primary);
  font-family: 'Inter', sans-serif; letter-spacing: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}

/* Premium article notices */
.article-note {
  position: relative;
  margin: 1.75rem 0 2rem;
  padding: 1.2rem 1.35rem 1.2rem 4.25rem;
  border-radius: 1.15rem;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(14,19,64,0.06);
}
.article-note::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.8rem;
}
.article-note h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  font-family: 'Public Sans', sans-serif;
}
.article-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: inherit;
}
.article-note--tip {
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
  border-color: #cfdcff;
  color: #173068;
}
.article-note--tip::before {
  background: linear-gradient(135deg, #1b4fe8 0%, #5d81ff 100%);
  box-shadow: 0 8px 18px rgba(27,79,232,0.22);
}
.article-note--tip::after {
  content: 'i';
  position: absolute;
  left: 2.3rem;
  top: 2.3rem;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 900;
  font-size: 1rem;
}
.article-note--important {
  background: linear-gradient(135deg, #fff4e8 0%, #fff9f3 100%);
  border-color: #ffd4ad;
  color: #7c3d12;
}
.article-note--important::before {
  background: linear-gradient(135deg, #c2410c 0%, #f97316 100%);
  box-shadow: 0 8px 18px rgba(194,65,12,0.2);
}
.article-note--important::after {
  content: '!';
  position: absolute;
  left: 2.3rem;
  top: 2.3rem;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
}

.deadline-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin: 1.25rem 0 1.5rem;
}
.premium-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--outline-variant);
  background: linear-gradient(135deg, #fbfcff 0%, #f2f6ff 100%);
  box-shadow: 0 6px 18px rgba(14,19,64,0.04);
}
.premium-check-dot {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1b4fe8 0%, #5d81ff 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 6px 12px rgba(27,79,232,0.16);
}
.premium-check-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--on-surface);
}
.premium-check-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--on-surface-variant);
  font-size: 0.84rem;
  line-height: 1.55;
  font-family: 'Public Sans', sans-serif;
}

.lost-item-card {
  background: white !important;
  color: var(--on-surface) !important;
  border: 1.5px solid var(--outline-variant) !important;
  box-shadow: 0 8px 18px rgba(14,19,64,0.06);
}
.lost-item-card svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Compensation box */
.comp-box {
  background: linear-gradient(135deg, #0D1E8A, #1B4FE8, #2F63F5);
  color: white; border-radius: 2rem; padding: 2.5rem;
  text-align: center;
}
.comp-box .amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; }
.comp-box .label { opacity: 0.85; font-size: 0.9rem; }

/* ── Premium compensation strip ──────────────────────────────── */
.comp-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-bottom: 2.5rem;
}
.claim-summary-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.claim-summary-card {
  border-radius: 1.35rem;
  padding: 1.3rem 1.15rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11, 23, 76, 0.08);
}
.claim-summary-card-blue {
  color: white;
  background: linear-gradient(135deg, #1B4FE8, #2F63F5);
}
.claim-summary-card-green {
  color: white;
  background: linear-gradient(135deg, #134E4A, #0F766E);
}
.claim-summary-card-neutral {
  background: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
}
.claim-summary-value {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.claim-summary-label {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 700;
  opacity: 0.92;
  font-family: 'Public Sans', sans-serif;
}
.claim-summary-label-dark {
  color: var(--on-surface);
  opacity: 1;
}
.claim-summary-note {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.9;
  font-family: 'Public Sans', sans-serif;
}
.claim-summary-note-dark {
  color: var(--on-surface-variant);
  opacity: 1;
}
.claim-summary-alert {
  color: var(--tertiary);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}
.mobile-on-page {
  display: none;
  margin: 0 0 1.75rem;
  padding: 1rem 1.05rem;
  background: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  border-radius: 1.15rem;
}
.mobile-on-page-title {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: 'Public Sans', sans-serif;
}
.mobile-on-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.mobile-on-page-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}
.lost-timeline-kicker {
  margin-bottom: 0.875rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
}
.lost-timeline [style*='font-size:0.72rem'] {
  font-size: 0.84rem !important;
  opacity: 0.86 !important;
  line-height: 1.55 !important;
}
.takeaways-compact .takeaways-header {
  padding: 1.15rem 1.4rem 1rem;
}
.takeaways-compact h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}
.takeaways-compact li {
  padding: 0.9rem 1.35rem 0.9rem 4rem;
  font-size: 0.96rem;
  line-height: 1.6;
}
.takeaways-compact .takeaway-num {
  width: 30px;
  height: 30px;
  left: 1.2rem;
  font-size: 0.76rem;
}
.reader-steps,
.reader-checklist {
  margin: 1rem 0 1.5rem 1.15rem;
  padding: 0;
  color: var(--on-surface);
  font-family: 'Public Sans', sans-serif;
}
.reader-steps li,
.reader-checklist li {
  margin-bottom: 0.8rem;
  padding-left: 0.35rem;
  line-height: 1.7;
}
.comp-card {
  background: white; border-radius: 1.25rem; padding: 1.5rem 1.25rem;
  border: 1px solid var(--outline-variant);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(27,79,232,0.06);
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), #5B7FFF);
}
.comp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(27,79,232,0.1);
}
.comp-card-eyebrow {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary);
  font-family: 'Public Sans', sans-serif; margin-bottom: 0.5rem;
}
.comp-card-amount {
  font-size: 2rem; font-weight: 900; letter-spacing: -0.03em;
  color: var(--primary); line-height: 1.1; margin-bottom: 0.75rem;
}
.comp-card-bar {
  height: 4px; background: #EEF0F5; border-radius: 2px; overflow: hidden;
}
.comp-card-fill {
  height: 100%; border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.comp-card-deadline::before {
  background: linear-gradient(90deg, #dc2626, #f87171);
}
.comp-card-note {
  font-size: 0.72rem; color: var(--on-surface-variant);
  font-family: 'Public Sans', sans-serif; line-height: 1.5;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--on-surface-variant); padding: 1rem 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.5; }

/* Footer */
footer { background: #F0F4FF; border-top: 1px solid var(--surface-container); margin-top: 4rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem 2rem; display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo { font-size: 1.4rem; font-weight: 900; color: var(--primary); letter-spacing: -0.04em; margin-bottom: 1rem; display: block; text-decoration: none; }
.footer-desc { color: var(--on-surface-variant); font-size: 0.9rem; line-height: 1.7; }
.footer-col h6 { font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; font-size: 0.875rem; font-family: 'Public Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--on-surface-variant); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.5rem; border-top: 1px solid var(--surface-container); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--on-surface-variant); font-size: 0.8rem; }
.footer-bottom a { color: var(--on-surface-variant); font-size: 0.8rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #091A6E 0%, #1443D8 45%, #2F63F5 100%);
  border-radius: 3rem; margin: 0 1rem 2rem;
  padding: 4rem 2rem; text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.03em; color: white; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; color: white; }

/* Airline logo placeholder */
.airline-logo { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.03em; color: var(--on-surface-variant); }

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 1.5rem; }
.stat-value { font-size: 2.5rem; font-weight: 900; color: var(--primary); letter-spacing: -0.03em; }
.stat-label { font-size: 0.875rem; color: var(--on-surface-variant); font-family: 'Public Sans', sans-serif; }

/* Table of contents */
.toc { background: var(--surface-container-low); border-radius: 1.25rem; padding: 1.75rem; margin: 2rem 0; }
.toc h4 { font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); font-family: 'Public Sans', sans-serif; }
.toc ul { list-style: none; padding: 0; }
.toc li { padding: 0.3rem 0; }
.toc a { color: var(--primary); text-decoration: none; font-size: 0.9rem; }
.toc a:hover { text-decoration: underline; }

/* Mobile responsive */
@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 2.5rem 1rem 4rem; }
  .section { padding: 3rem 1rem; }
  .cta-banner { border-radius: 1.5rem; margin: 0 0.5rem 1.5rem; padding: 2.5rem 1.25rem; }
  .cta-banner h2 { font-size: 1.75rem; }
  .rounded-section { border-radius: 1.5rem; margin: 0 0.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Social proof bar ─────────────────────────────────────────── */
.social-proof-bar {
  background: var(--surface-container-lowest);
  border-bottom: 1px solid var(--surface-container);
}
.proof-stats {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr);
}
@media (min-width: 768px) { .proof-stats { grid-template-columns: repeat(4,1fr); } }
.proof-stat {
  text-align: center; padding: 1.75rem 1rem;
  border-right: 1px solid var(--surface-container);
  border-bottom: 1px solid var(--surface-container);
  position: relative;
}
@media (min-width: 768px) { .proof-stat:nth-child(n+3) { border-bottom: none; } }
@media (max-width: 767px) { .proof-stat:nth-child(even) { border-right: none; } .proof-stat:nth-last-child(-n+2) { border-bottom: none; } }
.proof-stat-value {
  font-size: 2rem; font-weight: 900;
  color: var(--primary); letter-spacing: -0.03em; line-height: 1;
}
.proof-stat-label {
  font-size: 0.8rem; color: var(--on-surface-variant);
  font-family: 'Public Sans', sans-serif; margin-top: 0.4rem;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial-card {
  background: white; border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 28px rgba(27,79,232,0.09);
  border: 1px solid var(--outline-variant);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-stars { color: #f59e0b; letter-spacing: 0.12em; line-height: 1; font-size: 1rem; }
.testimonial-text { color: var(--on-surface-variant); line-height: 1.8; font-size: 0.95rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.875rem; line-height: 1.2; }
.testimonial-meta { font-size: 0.75rem; color: var(--on-surface-variant); font-family: 'Public Sans', sans-serif; }
.testimonial-amount {
  display: inline-block; margin-top: 0.3rem;
  background: rgba(27,79,232,0.08); color: var(--primary);
  font-weight: 700; font-size: 0.75rem;
  padding: 0.15rem 0.65rem; border-radius: 9999px;
}

/* ── Claim form ───────────────────────────────────────────────── */
.claim-wrap {
  max-width: 660px; margin: 0 auto;
  background: white; border-radius: 2rem; padding: 3rem;
  box-shadow: 0 16px 64px rgba(27,79,232,0.1);
}
@media (max-width: 767px) { .claim-wrap { padding: 2rem 1.25rem; border-radius: 1.5rem; } }

html.claim-modal-open,
body.claim-modal-open {
  overflow: hidden;
}

.claim-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.claim-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.claim-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47,99,245,0.14) 0%, transparent 32%),
    rgba(8, 16, 54, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.claim-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: calc(100vh - 1.5rem);
  overflow: hidden;
  padding: 0.2rem;
  transform: translateY(32px) scale(0.965);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.claim-modal.open .claim-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.claim-modal-shell {
  position: relative;
  border-radius: 2.25rem;
  padding: 1.7rem 1.15rem 1.35rem;
  overflow-y: auto;
  max-height: calc(100vh - 1.5rem);
  -webkit-overflow-scrolling: touch;
  background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,250,255,0.98) 100%);
  border: 1px solid rgba(192,202,239,0.65);
  box-shadow:
    0 18px 40px rgba(6,12,53,0.10),
    0 42px 120px rgba(27,79,232,0.22);
}
.claim-modal-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 1.2rem;
  padding: 0.15rem 2.6rem 0;
}
.claim-modal-title {
  margin: 0.7rem 0 0.5rem;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.claim-modal-subtitle {
  margin: 0 auto;
  max-width: 420px;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
  line-height: 1.55;
}
.claim-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(192,202,239,0.8);
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: var(--on-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(14,19,64,0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.claim-modal-close:hover {
  transform: translateY(-1px);
  background: white;
  border-color: rgba(27,79,232,0.26);
}
.claim-wrap-modal {
  max-width: 620px;
  padding: 1.45rem 1.3rem 1.7rem;
  border-radius: 1.6rem;
  box-shadow: none;
  border: 1px solid rgba(192,202,239,0.55);
}
@media (max-width: 767px) {
  .claim-modal {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .claim-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 1rem);
  }
  .claim-modal-shell {
    border-radius: 1.75rem 1.75rem 0 0;
    padding: 1.5rem 0.9rem 1.1rem;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .claim-modal-header {
    padding: 0.35rem 2.75rem 0;
    margin-bottom: 1.15rem;
  }
  .claim-modal-close {
    top: 0.8rem;
    right: 0.8rem;
  }
  .claim-wrap-modal {
    max-width: none;
  }
}

.form-step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 1.35rem;
}
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-container-high);
  transition: all 0.3s; position: relative; flex-shrink: 0;
}
.step-dot.active { background: var(--primary); }
.step-dot.current { width: 14px; height: 14px; box-shadow: 0 0 0 4px rgba(27,79,232,0.15); }
.step-dot:not(:last-child)::after {
  content: ''; display: block;
  width: 56px; height: 2px;
  background: var(--surface-container-high);
  position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  transition: background 0.3s;
}
.step-dot.active:not(:last-child)::after { background: var(--primary); }

.form-step { animation: fadeSlideIn 0.25s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.form-success { text-align: center; padding: 1.5rem 0; display: none; animation: fadeSlideIn 0.3s ease; }
.form-success .s-icon {
  width: 72px; height: 72px; background: #e8f5e9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 2.5rem;
}

.form-group { margin-bottom: 1.1rem; }
.claim-wrap-modal .form-group {
  margin-bottom: 0.9rem;
}
.claim-step-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.form-group label {
  display: block; font-weight: 600; font-size: 0.875rem;
  color: var(--on-surface); margin-bottom: 0.4rem;
  font-family: 'Public Sans', sans-serif;
}
.form-group input,
.form-group select {
  width: 100%; padding: 0.825rem 1rem;
  border: 1.5px solid var(--outline-variant); border-radius: 0.75rem;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  background: white; color: var(--on-surface);
  transition: border-color 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,79,232,0.1);
}
.form-group input.error,
.form-group select.error { border-color: var(--error); }
.form-row-2 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .form-row-2 { grid-template-columns: 1fr; } }

.claim-type-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem;
  margin-bottom: 1.5rem; border-radius: 0.75rem;
  transition: box-shadow 0.2s;
}
@media (max-width: 380px) { .claim-type-grid { grid-template-columns: 1fr; } }
.claim-type-btn {
  padding: 1.25rem 0.5rem; border: 2px solid var(--outline-variant);
  border-radius: 1rem; cursor: pointer; text-align: center; background: white;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
  -webkit-appearance: none; appearance: none;
}
.claim-type-btn:hover { border-color: var(--primary); background: rgba(27,79,232,0.02); }
.claim-type-btn.selected { border-color: var(--primary); background: rgba(27,79,232,0.05); }
.claim-type-btn .t-icon { font-size: 1.75rem; display: block; margin-bottom: 0.4rem; }
.claim-type-btn .t-label { font-size: 0.875rem; font-weight: 700; color: var(--on-surface); }
.claim-type-btn .t-desc { font-size: 0.73rem; color: var(--on-surface-variant); margin-top: 0.2rem; }

.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; }
.form-actions.end { justify-content: flex-end; }

.form-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem;
  margin-top: 1.1rem; padding-top: 0.9rem;
  border-top: 1px solid var(--surface-container);
}
.form-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 600; color: var(--on-surface-variant);
}

/* ── Sticky mobile CTA ────────────────────────────────────────── */
#mobile-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 0.875rem 1.25rem calc(0.875rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--surface-container);
  z-index: 40;
  transform: translateY(100%); transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(27,79,232,0.1);
  display: none;
}
#mobile-sticky-cta.visible { transform: translateY(0); }
#mobile-sticky-cta a {
  display: block; text-align: center;
  background: linear-gradient(135deg, #1443D8, #1B4FE8);
  color: white; padding: 0.9rem 1.5rem; border-radius: 9999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 4px 16px rgba(27,79,232,0.3);
}
@media (max-width: 767px) { #mobile-sticky-cta { display: block; } }
@media (min-width: 768px) { #mobile-sticky-cta { display: none !important; } }

/* ── Flag SVG icons ───────────────────────────────────────────── */
.flag-svg {
  display: inline-flex; border-radius: 3px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2); flex-shrink: 0; line-height: 0;
  vertical-align: middle;
}
.flag-svg svg { display: block; }

/* Utility */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; } .mb-8 { margin-bottom: 4rem; }
.mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.font-bold { font-weight: 700; } .font-black { font-weight: 900; }
.opacity-60 { opacity: 0.6; }
.relative { position: relative; } .overflow-hidden { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   PREMIUM ARTICLE SYSTEM - PHASE 2
   ═══════════════════════════════════════════════════════════════ */

/* ── Article 2-column layout ──────────────────────────────────── */
.art-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .art-layout { grid-template-columns: 1fr 300px; }
}

.art-sidebar {
  display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 1024px) {
  .art-sidebar { position: sticky; top: 88px; }
}

.art-sidebar .sidebar-toc { order: 1; }
.art-sidebar .sidebar-claim { order: 2; }
.art-sidebar .sidebar-deadline { order: 3; }

/* ── Sidebar components ───────────────────────────────────────── */
.sidebar-claim {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
  border-radius: 1.45rem; padding: 1.4rem 1.25rem 1.2rem;
  color: var(--on-surface);
  position: relative; overflow: hidden;
  border: 1px solid rgba(27,79,232,0.18);
  box-shadow: 0 8px 24px rgba(11,23,76,0.06), 0 24px 54px rgba(27,79,232,0.08);
}
.sidebar-claim::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2850E6 0%, #5C7EFF 55%, #88A1FF 100%);
}
.sidebar-claim::after {
  content: '';
  position: absolute;
  top: -78px;
  right: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,126,255,0.14) 0%, rgba(92,126,255,0.04) 48%, rgba(92,126,255,0) 72%);
  pointer-events: none;
}
.sidebar-claim-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 0.7rem;
  font-family: 'Public Sans', sans-serif;
  background: rgba(39,80,230,0.07);
  border: 1px solid rgba(39,80,230,0.1);
  position: relative;
  z-index: 1;
}
.sidebar-claim-title {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: 0.5rem; line-height: 1.03;
  color: var(--on-surface);
  max-width: 9ch;
  position: relative;
  z-index: 1;
}
.sidebar-claim-body {
  font-size: 0.92rem; color: #536891; line-height: 1.58;
  margin-bottom: 0.95rem; font-family: 'Public Sans', sans-serif;
  max-width: 22ch;
  position: relative;
  z-index: 1;
}
.sidebar-claim h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 0.5rem; letter-spacing: -0.02em; color: var(--on-surface); }
.sidebar-claim p { font-size: 0.82rem; color: var(--on-surface-variant); margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-claim .btn-white,
.sidebar-claim .sidebar-claim-btn {
  font-size: 0.94rem; padding: 0.82rem 1.05rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: 0.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2D4FE8 0%, #3657E8 55%, #2A49D6 100%); color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 12px 24px rgba(27,79,232,0.24), inset 0 1px 0 rgba(255,255,255,0.16);
  position: relative; z-index: 1;
  width: 100%; justify-content: center;
  min-height: 2.95rem;
}
.sidebar-claim .btn-white:hover,
.sidebar-claim .sidebar-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(27,79,232,0.28), inset 0 1px 0 rgba(255,255,255,0.16);
  background: linear-gradient(135deg, #2B4AE0 0%, #3D5FFF 100%);
}
.sidebar-claim-social {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(27,79,232,0.12);
  font-size: 0.82rem;
  color: #5A6E95;
  display: flex; align-items: center; gap: 0.6rem;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.sidebar-claim-social span:first-child {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.52rem;
  border-radius: 999px;
  color: #B97400;
  background: rgba(232,167,41,0.12);
  border: 1px solid rgba(232,167,41,0.18);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sidebar-claim-social span:last-child {
  font-weight: 600;
}

.sidebar-toc {
  background: var(--surface-container-lowest);
  border-radius: 1rem; padding: 1.15rem 1.05rem;
  border: 1px solid var(--surface-container);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.sidebar-toc h5 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary); margin-bottom: 1rem;
  font-family: 'Public Sans', sans-serif;
}
.sidebar-toc ul { list-style: none; padding: 0; margin: 0; }
.sidebar-toc li { border-bottom: 1px solid var(--surface-container); }
.sidebar-toc li:last-child { border-bottom: none; }
.sidebar-toc a {
  display: block; padding: 0.46rem 0;
  color: var(--on-surface-variant); font-size: 0.84rem;
  text-decoration: none; transition: color 0.15s;
  line-height: 1.4;
}
.sidebar-toc a:hover { color: var(--primary); }

.sidebar-deadline {
  background: rgba(194,65,12,0.05);
  border-left: 3px solid var(--tertiary);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.1rem 1.25rem 1.1rem 1rem;
}
.sidebar-deadline .sd-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--tertiary); margin-bottom: 0.5rem;
  font-family: 'Public Sans', sans-serif;
}
.sidebar-deadline .sd-deadline {
  font-size: 1.5rem; font-weight: 900;
  color: var(--tertiary); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 0.35rem;
}
.sidebar-deadline .sd-desc {
  font-size: 0.8rem; color: var(--on-surface-variant); line-height: 1.5;
}
.sidebar-deadline-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.sidebar-deadline strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--tertiary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.sidebar-deadline p {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
  line-height: 1.5;
  margin: 0;
  font-family: 'Public Sans', sans-serif;
}

/* ── Inline article CTAs ──────────────────────────────────────── */
.inline-cta {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--surface);
  border: 1.5px solid var(--outline-variant);
  border-left: 4px solid var(--primary);
  border-radius: 1.25rem; padding: 1.5rem 1.75rem;
  margin: 2.5rem 0; flex-wrap: nowrap;
  box-shadow: 0 4px 20px rgba(27,79,232,0.07);
  position: relative; overflow: hidden;
}
.inline-cta::before { display: none; }
.inline-cta-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #1443D8, #2F63F5);
  border-radius: 1rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(27,79,232,0.3);
}
.inline-cta-body { flex: 1; min-width: 0; }
.inline-cta-body strong { display: block; font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; color: var(--on-surface); letter-spacing: -0.01em; }
.inline-cta-body p { font-size: 0.85rem; color: var(--on-surface-variant); line-height: 1.6; margin: 0; }
.inline-cta .btn-primary { font-size: 0.85rem; padding: 0.7rem 1.4rem; white-space: nowrap; flex-shrink: 0; border-radius: 0.65rem; box-shadow: 0 4px 14px rgba(27,79,232,0.28); }
@media (max-width: 768px) { .inline-cta { flex-wrap: wrap; } .inline-cta .btn-primary { width: 100%; text-align: center; justify-content: center; } }

/* ── Deadline callout ─────────────────────────────────────────── */
.deadline-callout {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: linear-gradient(135deg, rgba(194,65,12,0.08), rgba(234,88,12,0.04));
  border-radius: 1.25rem; padding: 1.5rem;
  margin: 2rem 0;
}
.deadline-callout-icon {
  font-size: 1.75rem; flex-shrink: 0; margin-top: 0.1rem;
}
.deadline-callout strong { color: var(--tertiary); font-size: 1rem; display: block; margin-bottom: 0.35rem; }
.deadline-callout p { color: var(--on-surface-variant); font-size: 0.875rem; line-height: 1.65; margin: 0; }

/* ── Premium article header ───────────────────────────────────── */
.article-hero {
  background: linear-gradient(135deg, #060C35 0%, #0B1766 25%, #1338B0 55%, #1B4FE8 80%, #3366FF 100%);
  border-radius: 2.5rem; margin-bottom: 1.5rem; padding: 3.5rem;
  color: white; overflow: hidden; position: relative;
  max-width: 1060px; margin-left: auto; margin-right: auto;
  margin-top: 1.5rem;
}
@media (max-width: 767px) { .article-hero { padding: 2rem 1.5rem; border-radius: 1.5rem; margin-bottom: 2rem; } }
.article-hero .hero-chip {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: white; padding: 0.35rem 1rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 600; font-family: 'Public Sans', sans-serif;
  margin-bottom: 1.25rem; letter-spacing: 0.02em;
}
.article-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 900;
  color: white; line-height: 1.12; margin-bottom: 1rem; max-width: 680px;
}
.article-hero .hero-sub {
  font-size: 1rem; opacity: 0.8; max-width: 560px;
  line-height: 1.7; margin-bottom: 2rem;
}
.article-hero-illus {
  position: absolute; right: 3rem; top: 50%; transform: translateY(-50%);
  opacity: 0.12; pointer-events: none;
}
@media (max-width: 900px) { .article-hero-illus { display: none; } }

/* ── Visual process steps (inside prose) ─────────────────────── */
.prose-steps {
  display: flex; flex-direction: column; gap: 0;
  margin: 2rem 0;
  position: relative;
}
.prose-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--surface-container);
}
.prose-step:last-child { border-bottom: none; }
.prose-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: white;
  font-weight: 900; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
}
.prose-step-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.prose-step-body p { font-size: 0.875rem; color: var(--on-surface-variant); margin: 0; line-height: 1.6; }

/* ── Compensation calculator widget ──────────────────────────── */
.calc-widget {
  background: var(--surface-container-lowest);
  border-radius: 1.75rem; padding: 2rem;
  border: 2px solid rgba(27,79,232,0.1);
  margin: 2.5rem 0;
  box-shadow: 0 4px 24px rgba(27,79,232,0.06);
}
.calc-widget h4 {
  font-size: 1.1rem; font-weight: 800; margin-bottom: 0.4rem;
}
.calc-widget p { font-size: 0.875rem; color: var(--on-surface-variant); margin-bottom: 1.5rem; }
.calc-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 540px) { .calc-grid { grid-template-columns: 1fr 1fr; } }
.calc-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--on-surface-variant); margin-bottom: 0.35rem;
  font-family: 'Public Sans', sans-serif;
}
.calc-field select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--outline-variant); border-radius: 0.75rem;
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  background: white; color: var(--on-surface);
  -webkit-appearance: none; appearance: none; outline: none;
  transition: border-color 0.2s; cursor: pointer;
}
.calc-field select:focus { border-color: var(--primary); }
.calc-result {
  margin-top: 1.5rem; padding: 1.5rem;
  background: linear-gradient(135deg, #0D1E8A, #1B4FE8);
  border-radius: 1.25rem; color: white; display: none;
  animation: fadeSlideIn 0.25s ease;
}
.calc-result.show { display: block; }
.calc-result-amount { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.03em; }
.calc-result-label { font-size: 0.82rem; opacity: 0.8; margin-top: 0.25rem; margin-bottom: 1.25rem; }

/* ── Illustration frames ──────────────────────────────────────── */
.illus-frame {
  background: var(--surface-container-low);
  border-radius: 2rem; padding: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 2rem 0; overflow: hidden; position: relative;
}

/* ── Enhanced prose H2 sections ──────────────────────────────── */
.prose h2 {
  display: flex; align-items: center; gap: 0.6rem;
  padding-top: 1.25rem;
}
.prose h2::before {
  content: '';
  display: inline-block;
  width: 3px; height: 1.2em;
  background: var(--primary);
  border-radius: 1.5px; flex-shrink: 0;
  opacity: 0.7;
}

/* ── Resource page index cards (premium) ─────────────────────── */
.resource-card-premium {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: white; border-radius: 1.5rem;
  padding: 1.75rem; text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid var(--surface-container);
}
.resource-card-premium:hover {
  border-color: rgba(27,79,232,0.2);
  box-shadow: 0 8px 32px rgba(27,79,232,0.08);
  transform: translateY(-2px);
}
.resource-card-premium .rcp-icon {
  width: 52px; height: 52px; border-radius: 1rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.resource-card-premium .rcp-title {
  font-size: 1rem; font-weight: 800; color: var(--on-surface); margin-bottom: 0.4rem;
}
.resource-card-premium .rcp-desc {
  font-size: 0.85rem; color: var(--on-surface-variant); line-height: 1.6;
}
.resource-card-premium .rcp-arrow {
  margin-left: auto; color: var(--primary); font-size: 1.2rem; flex-shrink: 0;
  align-self: center; opacity: 0; transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-6px);
}
.resource-card-premium:hover .rcp-arrow {
  opacity: 1; transform: translateX(0);
}

/* ── Enhanced section divider ─────────────────────────────────── */
.section-divider {
  height: 1px; background: var(--surface-container);
  margin: 0 2rem; border: none;
}

/* ── Service page extras ──────────────────────────────────────── */
.art-main { min-width: 0; max-width: 680px; }

.chip-white {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.2); color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 100px; padding: 0.3rem 1rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em;
  font-family: 'Public Sans', sans-serif;
}

.btn-hero-ghost {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: white; border-radius: 100px;
  padding: 0.7rem 1.6rem; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7);
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.article-hero .hero-cta-row .btn-white,
.article-hero .hero-cta-row .btn-hero-ghost {
  min-height: 3.7rem;
  min-width: 18.75rem;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-size: 1rem;
  font-weight: 700;
}
.article-hero .hero-cta-row .btn-hero-ghost {
  border-width: 1.5px;
}
@media (max-width: 767px) {
  .article-hero .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .article-hero .hero-cta-row .btn-white,
  .article-hero .hero-cta-row .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }
  .article-hero .hero-cta-row .btn-white {
    padding: 0.95rem 1.35rem;
    font-size: 1rem;
  }
  .article-hero .hero-cta-row .btn-hero-ghost {
    padding: 0.95rem 1.35rem;
    font-size: 1rem;
  }
  .mobile-on-page {
    display: block;
  }
  .takeaways-compact li {
    padding: 0.85rem 1.1rem 0.85rem 3.55rem;
    font-size: 0.95rem;
  }
  .takeaways-compact .takeaway-num {
    left: 1rem;
  }
  .lost-timeline {
    padding: 1.45rem 1.15rem !important;
  }
  .lost-timeline [style*='grid-template-columns:repeat(auto-fit,minmax(130px,1fr))'] {
    grid-template-columns: 1fr 1fr !important;
  }
  .claim-summary-value {
    font-size: 1.65rem;
  }
  .claim-summary-label,
  .claim-summary-note {
    font-size: 0.84rem;
  }
}

/* ── Calculator widget (service pages) ───────────────────────── */
.calc-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.05rem; font-weight: 800; margin-bottom: 1.5rem;
  color: var(--on-surface);
}
.calc-fields {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}
@media (min-width: 540px) { .calc-fields { grid-template-columns: 1fr 1fr; } }
@media (min-width: 540px) { .calc-fields > :last-child:nth-child(odd) { grid-column: 1 / -1; } }

.calc-field input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--outline-variant); border-radius: 0.75rem;
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  background: white; color: var(--on-surface);
  outline: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
.calc-field input:focus { border-color: var(--primary); }
.calc-field input::placeholder { color: var(--on-surface-variant); opacity: 0.6; }

.calc-btn {
  background: linear-gradient(135deg, #1443D8, #1B4FE8);
  color: white; border: none; border-radius: 100px;
  padding: 0.8rem 2rem; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.calc-btn:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(27,79,232,0.3); }

.calc-result-note {
  font-size: 0.82rem; opacity: 0.85; margin: 0.5rem 0 1.25rem;
  line-height: 1.5;
}
.calc-result-cta {
  display: inline-flex; align-items: center;
  background: white; color: var(--primary);
  border-radius: 100px; padding: 0.65rem 1.5rem;
  font-size: 0.88rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM VISUAL COMPONENTS - Phase 2 Upgrade
   ═══════════════════════════════════════════════════════════════ */

/* ── Scroll-entrance animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Premium bento service cards ─────────────────────────────── */
.service-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-bento { grid-template-columns: 1fr 1fr 1fr; }
}
.service-bento-card {
  position: relative; overflow: hidden;
  border-radius: 1.5rem; padding: 2rem 2rem 2.25rem;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.service-bento-card:hover { transform: translateY(-6px); }
.service-bento-card.card-primary {
  background: linear-gradient(160deg, #0D1B6F 0%, #1B4FE8 100%);
  color: white;
  box-shadow: 0 8px 40px rgba(27,79,232,0.25);
}
.service-bento-card.card-secondary {
  background: linear-gradient(160deg, #6B1A1A 0%, #C62828 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(185,28,28,0.2);
}
.service-bento-card.card-tertiary {
  background: linear-gradient(160deg, #0C3C38 0%, #0D9488 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(15,118,110,0.2);
}
.service-bento-chip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.95);
  font-family: 'Public Sans', sans-serif;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.service-bento-max {
  font-size: clamp(2.25rem, 4vw, 2.75rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.5rem;
}
.service-bento-title {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.92);
}
.service-bento-desc {
  font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.65;
  font-family: 'Public Sans', sans-serif;
  flex: 1;
}
.service-bento-cta {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.5rem; font-size: 0.88rem; font-weight: 700;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px; padding: 0.55rem 1.25rem; color: white;
  text-decoration: none; transition: all 0.25s;
  width: fit-content;
}
.service-bento-cta:hover { background: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.5); }
.service-bento-illus {
  position: absolute; bottom: -10px; right: -10px;
  opacity: 0.08; pointer-events: none;
}

/* ── Premium "How it works" steps ────────────────────────────── */
.steps-premium {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step-counter;
  position: relative;
}
@media (min-width: 640px) {
  .steps-premium { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps-premium { grid-template-columns: repeat(4, 1fr); }
}
.step-premium {
  background: white; border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 4px 16px rgba(27,79,232,0.06);
  border: 1px solid var(--outline-variant);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.step-premium::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-size: 4rem; font-weight: 900; line-height: 1;
  color: var(--primary); opacity: 0.06;
  font-family: 'Inter', sans-serif; letter-spacing: -0.04em;
}
.step-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 20px 56px rgba(27,79,232,0.16);
  border-color: rgba(192,202,239,0.8);
  border-left: 3px solid var(--primary);
}
.step-icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step-icon-wrap.blue { background: #E8EDFB; }
.step-icon-wrap.blue svg { color: #3D5A99; }
.step-icon-wrap.blue svg path, .step-icon-wrap.blue svg rect { stroke: #3D5A99; }
.step-icon-wrap.indigo { background: #EDE8FB; }
.step-icon-wrap.indigo svg path { stroke: #5B4A9E; }
.step-icon-wrap.amber { background: #FEF3E2; }
.step-icon-wrap.amber svg path, .step-icon-wrap.amber svg circle { stroke: #B07D2E; }
.step-icon-wrap.green { background: #E6F4EA; }
.step-icon-wrap.green svg path, .step-icon-wrap.green svg circle { stroke: #2E7D3A; }
.step-num-badge {
  display: inline-flex; width: 1.75rem; height: 1.75rem;
  background: var(--primary); color: white; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}
.step-premium h4 {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem;
  color: var(--on-surface);
}
.step-premium p {
  font-size: 0.875rem; color: var(--on-surface-variant);
  line-height: 1.7;
}

/* ── FAQ Accordion ────────────────────────────────────────────── */
.faq-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-acc-item {
  background: white; border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27,79,232,0.04);
  transition: box-shadow 0.2s;
}
.faq-acc-item.open {
  box-shadow: 0 4px 24px rgba(27,79,232,0.1);
}
.faq-acc-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 700; font-size: 1rem; color: var(--on-surface);
  user-select: none;
}
.faq-acc-question:hover { color: var(--primary); }
.faq-acc-icon {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: var(--surface-container-low);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
}
.faq-acc-item.open .faq-acc-icon {
  background: var(--primary); transform: rotate(45deg);
}
.faq-acc-item.open .faq-acc-icon svg { stroke: white; }
.faq-acc-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1),
              padding 0.3s ease;
  font-size: 0.92rem; color: var(--on-surface-variant);
  line-height: 1.75; padding: 0 1.5rem;
}
.faq-acc-item.open .faq-acc-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

/* ── Deadline timeline - Elite vertical stepper ──────────────── */
.deadline-timeline {
  background: white; border-radius: 1.25rem;
  padding: 2rem 2.25rem; margin: 2.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(27,79,232,0.06);
  border: 1px solid var(--outline-variant);
  position: relative; overflow: hidden;
}
.deadline-timeline::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #2e9c32 0%, #f59e0b 45%, #dc2626 100%);
}
.dtl-header { margin-bottom: 1.75rem; }
.dtl-eyebrow {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  font-family: 'Public Sans', sans-serif; margin-bottom: 0.3rem;
}
.deadline-timeline-title {
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--on-surface); line-height: 1.25;
}
.dtl-steps { display: flex; flex-direction: column; gap: 0; }
.dtl-step {
  display: flex; gap: 1.25rem; align-items: stretch;
  transition: transform 0.2s ease;
}
.dtl-step:hover { transform: translateX(3px); }
.dtl-step-indicator {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 20px; padding-top: 0.15rem;
}
.dtl-step-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  border: 2.5px solid white;
  box-shadow: 0 0 0 2px currentColor;
  background: currentColor;
  position: relative; z-index: 1;
}
.dtl-step-line {
  width: 2px; flex: 1; min-height: 1rem;
  background: linear-gradient(180deg, currentColor 0%, transparent 100%);
  opacity: 0.2;
}
.dtl-step-green .dtl-step-indicator { color: #2e9c32; }
.dtl-step-amber .dtl-step-indicator { color: #D4950C; }
.dtl-step-red .dtl-step-indicator { color: #dc2626; }
.dtl-step-content {
  flex: 1; padding-bottom: 1.5rem;
  border-bottom: 1px solid #F0F2F8;
}
.dtl-step:last-child .dtl-step-content { border-bottom: none; padding-bottom: 0; }
.dtl-step-day {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--on-surface-variant);
  font-family: 'Public Sans', sans-serif; margin-bottom: 0.25rem;
}
.dtl-step-title {
  font-size: 0.95rem; font-weight: 800; color: var(--on-surface);
  letter-spacing: -0.01em; margin-bottom: 0.3rem; line-height: 1.3;
}
.dtl-step-desc {
  font-size: 0.85rem; color: var(--on-surface-variant); line-height: 1.6;
  font-family: 'Public Sans', sans-serif;
}
.dtl-step-badge {
  display: inline-flex; align-items: center;
  margin-top: 0.6rem; padding: 0.25rem 0.65rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; border-radius: 2rem;
  background: rgba(220,38,38,0.08); color: #dc2626;
  font-family: 'Public Sans', sans-serif;
}
.dtl-step-red .dtl-step-day { color: #dc2626; }
.dtl-step-red .dtl-step-title { color: #dc2626; }

/* ── Process visual steps (service pages) - Premium ──────────── */
.process-flow {
  display: flex; flex-direction: column; gap: 0;
  margin: 2.5rem 0; padding: 0.5rem 0;
}
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0; position: relative;
  transition: transform 0.2s ease;
}
.process-step:hover { transform: translateX(4px); }
.process-step::after {
  content: ''; position: absolute;
  left: 1.3rem; top: 4rem; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  opacity: 0.15;
}
.process-step:last-child::after { display: none; }
.process-step-num {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  background: linear-gradient(135deg, #1443D8, #1B4FE8);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900;
  font-family: 'Inter', sans-serif; z-index: 1;
  box-shadow: 0 4px 12px rgba(27,79,232,0.3);
}
.process-step-body {}
.process-step-body strong {
  display: block; font-size: 1rem; font-weight: 800;
  margin-bottom: 0.4rem; color: var(--on-surface);
}
.process-step-body p {
  font-size: 0.88rem; color: var(--on-surface-variant);
  line-height: 1.7; margin: 0;
}

/* ── Premium data table ──────────────────────────────────────── */
.data-table-wrap { overflow-x: auto; margin: 2rem 0; border-radius: 1.5rem; }
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem; background: white;
  border-radius: 1.5rem; overflow: hidden;
}
.data-table thead tr {
  background: linear-gradient(135deg, #0D1E8A, #1B4FE8);
  color: white;
}
.data-table thead th {
  padding: 1rem 1.25rem; text-align: left;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
}
.data-table tbody tr { transition: background 0.15s; }
.data-table tbody tr:nth-child(even) { background: #f8f9ff; }
.data-table tbody tr:hover { background: #eff2ff; }
.data-table td {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--outline-variant);
  vertical-align: middle; color: var(--on-surface);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table .td-amount {
  font-weight: 800; color: var(--primary); font-size: 1rem;
  font-family: 'Inter', sans-serif;
}
.data-table .td-deadline {
  font-weight: 700; color: var(--tertiary);
}
.data-table .td-badge {
  display: inline-flex; align-items: center;
  background: rgba(27,79,232,0.08); color: var(--primary);
  border-radius: 100px; padding: 0.2rem 0.75rem;
  font-size: 0.72rem; font-weight: 700;
  font-family: 'Public Sans', sans-serif; text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Document checklist widget ───────────────────────────────── */
.doc-checklist {
  background: white; border-radius: 2rem;
  padding: 2rem; margin: 2rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 8px 28px rgba(27,79,232,0.1);
  border: 1px solid var(--outline-variant);
}
.doc-checklist-title {
  font-weight: 800; font-size: 1.05rem; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.doc-check-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.875rem 0.5rem;
  border-bottom: 1px solid var(--surface-container);
  cursor: pointer; transition: background 0.15s;
  border-radius: 0.75rem; padding: 0.875rem 0.75rem;
}
.doc-check-item:last-child { border-bottom: none; }
.doc-check-item:hover { background: var(--surface-container-low); }
.doc-checkbox {
  width: 1.5rem; height: 1.5rem; border-radius: 0.4rem; flex-shrink: 0;
  border: 2px solid var(--outline-variant); background: white;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.doc-check-item.checked .doc-checkbox {
  background: #2e9c32; border-color: #2e9c32;
}
.doc-check-item.checked .doc-label { text-decoration: line-through; opacity: 0.5; }
.doc-label { font-size: 0.9rem; font-weight: 600; }
.doc-sublabel { font-size: 0.78rem; color: var(--on-surface-variant); margin-top: 0.15rem; }
.doc-checklist-footer {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 2px solid var(--surface-container);
  font-size: 0.82rem; color: var(--on-surface-variant);
  display: flex; justify-content: space-between; align-items: center;
}

/* ── Airline hero banner - Premium ────────────────────────────── */
.airline-hero {
  border-radius: 2rem; padding: 3rem 3.5rem;
  color: white; position: relative; overflow: hidden;
  margin-bottom: 2.5rem;
  max-width: 1060px; margin-left: auto; margin-right: auto;
}
.airline-hero-content { position: relative; z-index: 1; }
.airline-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 1rem; color: white;
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.airline-hero-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem; margin-top: 2rem;
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.airline-hero-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem; padding: 1rem 1.25rem;
  text-align: center;
}
.airline-hero-stat .stat-val {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1;
}
.airline-hero-stat .stat-lbl {
  font-size: 0.7rem; opacity: 0.75; margin-top: 0.25rem;
  font-family: 'Public Sans', sans-serif;
}
.airline-hero-stat:hover {
  background: rgba(255,255,255,0.18); transform: translateY(-2px);
}
@media (max-width: 767px) { .airline-hero { padding: 2rem 1.75rem; } }

/* ── FAQ accordion chevron rotation ────────────────────────── */
.faq-acc-item.open .faq-acc-icon { transform: rotate(180deg); }
.faq-acc-item.open .faq-acc-question { border-radius: 0.75rem 0.75rem 0 0; }

/* ── World coverage visual (Montreal Convention) ─────────────── */
.coverage-regions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin: 2rem 0;
}
.coverage-region {
  background: white; border-radius: 1.25rem; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: center;
  box-shadow: 0 2px 12px rgba(27,79,232,0.05);
  border-left: 4px solid var(--primary);
}
.coverage-region-icon { font-size: 1.5rem; flex-shrink: 0; }
.coverage-region-name { font-weight: 800; font-size: 0.92rem; }
.coverage-region-desc { font-size: 0.75rem; color: var(--on-surface-variant); margin-top: 0.2rem; }

/* ── Testimonial upgrade ─────────────────────────────────────── */
.testimonial-card-v2 {
  background: white; border-radius: 2rem;
  padding: 2.25rem; position: relative; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 8px 28px rgba(27,79,232,0.09);
  border: 1px solid var(--outline-variant);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.testimonial-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06), 0 20px 56px rgba(27,79,232,0.15);
  border-color: rgba(192,202,239,0.8);
}
.testimonial-card-v2::before {
  content: '\201C';
  position: absolute; top: 1rem; right: 1.75rem;
  font-size: 6rem; font-weight: 900; line-height: 1;
  color: var(--primary); opacity: 0.07;
  font-family: Georgia, serif;
}
.testimonial-v2-stars {
  display: flex; gap: 2px; margin-bottom: 1rem;
}
.testimonial-v2-stars span { color: #f59e0b; font-size: 1rem; }
.testimonial-v2-text {
  font-size: 0.96rem; line-height: 1.8;
  color: var(--on-surface); margin-bottom: 1.5rem;
  font-style: italic; position: relative; z-index: 1;
}
.testimonial-v2-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.testimonial-v2-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-v2-avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: white; flex-shrink: 0;
}
.testimonial-v2-name { font-weight: 800; font-size: 0.9rem; }
.testimonial-v2-route { font-size: 0.78rem; color: var(--on-surface-variant); }
.testimonial-v2-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, #1b6e22, #2e9c32);
  color: white; border-radius: 100px;
  padding: 0.35rem 0.9rem; font-size: 0.75rem; font-weight: 700;
  white-space: nowrap;
}

/* ── Homepage airline card upgrade ──────────────────────────── */
.airline-card-v2 {
  background: white; border-radius: 1.5rem;
  padding: 1.5rem 1.25rem; text-align: center;
  text-decoration: none; display: block;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  border-top: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.airline-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(27,79,232,0.12);
  border-top-color: var(--ac, #1B4FE8);
}
.airline-card-v2 .ac-flag { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.airline-card-v2 .ac-name { font-weight: 700; font-size: 0.9rem; color: var(--on-surface); }
.airline-card-v2 .ac-limit { font-size: 0.72rem; color: var(--on-surface-variant); margin-top: 0.3rem; font-family: 'Public Sans', sans-serif; }

/* ── "Why choose us" icon card ──────────────────────────────── */
.why-card {
  background: white; border-radius: 2rem; padding: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 6px 24px rgba(27,79,232,0.08);
  border: 1px solid var(--outline-variant);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 16px 48px rgba(27,79,232,0.14);
  border-color: rgba(192,202,239,0.8);
}
.why-card-icon {
  width: 4rem; height: 4rem; border-radius: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--on-surface-variant); line-height: 1.7; }
.why-card-stat {
  display: inline-flex; margin-top: 1rem;
  background: var(--surface-container-low);
  border-radius: 100px; padding: 0.3rem 1rem;
  font-size: 0.78rem; font-weight: 700; color: var(--primary);
}

/* ── Case study card ──────────────────────────────────────────── */
.case-study-card {
  background: white;
  color: var(--on-surface); border-radius: 1.25rem; padding: 2rem 2.5rem;
  display: flex; gap: 2rem; align-items: center;
  flex-wrap: wrap; margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(27,79,232,0.06);
  border: 1px solid var(--outline-variant);
  position: relative; overflow: hidden;
}
.case-study-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), #5B7FFF);
}
.case-study-amount {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900;
  letter-spacing: -0.04em; white-space: nowrap;
  color: var(--primary);
}
.case-study-label { font-size: 0.68rem; font-weight: 700; margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Public Sans', sans-serif; color: var(--primary); }
.case-study-route { font-size: 0.88rem; color: var(--on-surface-variant); margin-top: 0.4rem; }
.case-study-divider { width: 1px; background: var(--outline-variant); align-self: stretch; flex-shrink: 0; }
.case-study-body { flex: 1; min-width: 200px; }
.case-study-body p { font-size: 0.9rem; color: var(--on-surface-variant); line-height: 1.7; margin: 0; }
.calc-result-cta:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════════════════════════════
   PREMIUM POLISH - Color & Visual Upgrade
   ═══════════════════════════════════════════════════════════════ */

/* Gradient text for headline numbers */
.gradient-text {
  background: linear-gradient(135deg, #1443D8, #2F63F5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Proof stat value - more vivid */
.proof-stat-value, .stat-value {
  background: linear-gradient(135deg, #1443D8, #2F63F5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem; font-weight: 900; letter-spacing: -0.04em;
}

/* Premium section surface alternation */
.bg-premium-subtle { background: #F4F6FF; }
.bg-premium-white  { background: #ffffff; }

/* Nav enhancement */
.nav {
  box-shadow: 0 1px 0 rgba(27,79,232,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

/* Chip improvements */
.chip-blue { background: rgba(27,79,232,0.1); color: #1B4FE8; border: 1px solid rgba(27,79,232,0.18); }

/* Deadline timeline enhanced shadow */
.deadline-timeline {
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 8px 28px rgba(27,79,232,0.09);
}

/* Calc widget */
.calc-widget {
  border: 1.5px solid rgba(27,79,232,0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 28px rgba(27,79,232,0.09);
}

/* FAQ accordion enhanced */
.faq-acc-item {
  border: 1px solid var(--outline-variant);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 14px rgba(27,79,232,0.06);
}
.faq-acc-item.open {
  border-color: rgba(27,79,232,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 28px rgba(27,79,232,0.12);
}

/* Resource card hover */
.resource-card-premium:hover {
  border-color: rgba(27,79,232,0.22);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 12px 40px rgba(27,79,232,0.12);
}

/* Coverage region cards */
.coverage-region {
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(27,79,232,0.08);
  border: 1px solid var(--outline-variant);
}

/* Airline card v2 border glow on hover */
.airline-card-v2:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 12px 36px rgba(27,79,232,0.14);
}

/* CTA banner radial highlight */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Testimonial stars - warmer gold */
.testimonial-stars, .testimonial-v2-stars span { color: #F59E0B; }

/* Claim wrap premium shadow */
.claim-wrap {
  box-shadow: 0 4px 16px rgba(0,0,0,0.05), 0 24px 72px rgba(27,79,232,0.12);
  border: 1px solid var(--outline-variant);
}

/* Dropdown menu improved shadow */
.dropdown-menu {
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 40px rgba(27,79,232,0.14);
  border: 1px solid var(--outline-variant);
}

/* ── PREMIUM MICRO-INTERACTIONS ─────────────────────────────── */

/* Nav scroll effect - JS adds .nav-scrolled */
.nav {
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.nav-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(27,79,232,0.06);
}

/* Smoother, more premium reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero floating badge micro-animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-float { animation: float 4s ease-in-out infinite; }

/* Pulse glow on primary CTA */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(27,79,232,0.3); }
  50% { box-shadow: 0 4px 24px rgba(27,79,232,0.5), 0 0 0 6px rgba(27,79,232,0.08); }
}
.btn-primary { animation: pulseGlow 3s ease-in-out infinite; }
.btn-primary:hover { animation: none; box-shadow: 0 8px 32px rgba(27,79,232,0.4); transform: translateY(-1px); }

/* Card hover micro lift with subtle glow */
.card { transition: all 0.35s cubic-bezier(0.16,1,0.3,1); }
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 40px rgba(27,79,232,0.1);
}

/* Step card connecting line on desktop */
@media (min-width: 1024px) {
  .steps-premium { position: relative; }
  .steps-premium::after {
    content: '';
    position: absolute;
    top: 3rem;
    left: calc(12.5% + 1.75rem);
    right: calc(12.5% + 1.75rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--outline-variant) 50%, var(--primary) 100%);
    opacity: 0.2;
    z-index: 0;
  }
  .step-premium { z-index: 1; }
}

/* Number badge on step hover */
.step-premium::before {
  transition: opacity 0.3s, transform 0.3s;
}
.step-premium:hover::before {
  opacity: 0.12;
  transform: scale(1.1);
}

/* Trust strip */
.trust-strip {
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--outline-variant);
}
.trust-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-variant);
  opacity: 0.6;
  font-family: 'Public Sans', sans-serif;
  white-space: nowrap;
}
.trust-strip-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip-logo {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--on-surface);
  opacity: 0.25;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* Mid-page CTA banner */
.mid-cta {
  background: linear-gradient(135deg, #0D1B6F 0%, #1B4FE8 100%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1280px;
}
.mid-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mid-cta h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #fff;
}
.mid-cta p {
  opacity: 0.92;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}
.mid-cta .btn-white {
  flex-shrink: 0;
}

/* Inline eligibility link */
.inline-eligibility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.inline-eligibility-link:hover {
  gap: 0.75rem;
}

/* Marquee/ticker animation for trust logos */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Smooth scroll for same-page anchors */
html { scroll-behavior: smooth; }

/* Better mobile sticky CTA */
#mobile-sticky-cta {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
}

/* Section divider - subtle wave */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--outline-variant) 20%, var(--outline-variant) 80%, transparent 100%);
  max-width: 800px;
  margin: 0 auto;
}

/* Resource card top accent line */
.grid-3 .card { position: relative; }
.grid-3 .card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-container));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.grid-3 .card:hover::before { opacity: 1; }

/* Testimonial card hover */
.testimonial-card-v2 {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.testimonial-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27,79,232,0.12);
}

/* FAQ item hover */
.faq-item {
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover {
  box-shadow: 0 2px 12px rgba(27,79,232,0.06);
}

/* Why choose us grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  padding: 2rem 1.75rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid var(--outline-variant);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27,79,232,0.08);
  border-color: rgba(27,79,232,0.2);
}
.why-card-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(27,79,232,0.08);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--on-surface);
}
.why-card p {
  color: var(--on-surface-variant);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Airline grid */
.airline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 540px) {
  .airline-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .airline-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Airline card hover glow */
.airline-card-v2 {
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.airline-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(27,79,232,0.12);
  border-color: var(--primary);
}

/* Section heading animations */
.section-heading {
  position: relative;
  display: inline-block;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #5B7FFF);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.reveal.visible .section-heading::after,
.section-heading.visible::after {
  width: 48px;
}

/* ── Article page premium micro-animations ────────────────────── */

/* Smooth fade-in for article content blocks */
.prose h2, .takeaways, .deadline-timeline, .inline-cta, .case-study-card,
.calc-widget, .process-flow, .faq-accordion {
  opacity: 0; transform: translateY(16px);
  animation: artFadeIn 0.5s ease forwards;
}
@keyframes artFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
/* Stagger - each subsequent block delays slightly */
.prose h2:nth-of-type(1) { animation-delay: 0.05s; }
.prose h2:nth-of-type(2) { animation-delay: 0.1s; }

/* Article hero subtle entrance */
.article-hero h1 {
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.article-hero .chip,
.article-hero .chip-white {
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sidebar cards subtle entrance */
.sidebar-claim { animation: sidebarIn 0.5s ease 0.2s both; }
.sidebar-toc { animation: sidebarIn 0.5s ease 0.35s both; }
.sidebar-deadline { animation: sidebarIn 0.5s ease 0.45s both; }
@keyframes sidebarIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stat cards hover polish */
.prose [style*="grid-template-columns"] > div {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prose [style*="grid-template-columns"] > div:hover {
  transform: translateY(-2px);
}

/* FAQ accordion refinements */
.faq-acc-item {
  transition: background 0.2s ease;
}
.faq-acc-item:hover {
  background: rgba(27,79,232,0.015);
}

/* Sidebar TOC active link highlight */
.sidebar-toc a.active {
  color: var(--primary); font-weight: 600;
  border-left: 2px solid var(--primary); padding-left: 0.75rem;
  margin-left: -0.75rem;
}

/* ── Article image premium treatment ─────────────────────────── */
.prose img {
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.prose img:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.page-enhancement {
  margin: 2rem 0;
}
.article-figure {
  margin: 2rem 0 2.25rem;
}
.article-figure img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
}
.article-figure figcaption {
  margin-top: 0.75rem;
  color: var(--on-surface-variant);
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.55;
  font-family: 'Public Sans', sans-serif;
}
.split-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.4rem;
  border-radius: 1.5rem;
  border: 1px solid var(--outline-variant);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 8px 28px rgba(14,19,64,0.05);
}
.split-visual.reverse .split-visual-media {
  order: 2;
}
.split-visual.reverse .split-visual-copy {
  order: 1;
}
.split-visual-media {
  display: flex;
  align-items: stretch;
  min-height: 220px;
}
.split-visual-media img {
  width: 100%;
  display: block;
  height: 100%;
  min-height: 220px;
  max-height: none;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: none;
}
.split-visual-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.split-visual-copy .premium-check-grid {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0;
}
.split-visual-copy h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--on-surface);
  margin: 0;
}
.split-visual-copy p {
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  font-family: 'Public Sans', sans-serif;
}
.content-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(27,79,232,0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
}
.icon-card-grid-wrap {
  margin: 2rem 0;
}
.icon-grid-heading {
  margin-bottom: 1rem;
}
.icon-grid-heading h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.icon-grid-heading p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.7;
  font-family: 'Public Sans', sans-serif;
}
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.icon-feature-card {
  background: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  border-radius: 1.15rem;
  padding: 1.2rem;
  box-shadow: 0 6px 18px rgba(14,19,64,0.04);
}
.icon-feature-card img {
  width: 160px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.85rem;
  border-radius: 0;
  box-shadow: none;
}
.icon-feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: var(--on-surface);
}
.icon-feature-card p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.88rem;
  line-height: 1.65;
  font-family: 'Public Sans', sans-serif;
}
.contact-icon-grid .icon-feature-card img {
  width: 116px;
  height: 58px;
  margin-bottom: 0.7rem;
}
.premium-pir-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.09), transparent 30%),
    linear-gradient(135deg, #07144B 0%, #0E267C 42%, #1540C6 100%);
}
.premium-pir-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent 34%, rgba(255,255,255,0.03) 68%, transparent);
  opacity: 0.65;
  pointer-events: none;
}
.premium-pir-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 3.4rem;
  align-items: center;
}
.premium-pir-copy {
  max-width: 640px;
}
.premium-pir-chip {
  margin-bottom: 1rem;
  color: white;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.08);
}
.premium-pir-title {
  margin-bottom: 1rem;
  color: white;
  font-size: clamp(1.95rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
}
.premium-pir-intro {
  max-width: 590px;
  margin: 0 0 1.7rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}
.pir-benefit-stack {
  display: grid;
  gap: 0.95rem;
  margin: 0 0 1.75rem;
}
.pir-benefit-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.07) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 44px rgba(3,10,42,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pir-benefit-media {
  min-height: 92px;
  border-radius: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.12);
}
.pir-benefit-media img {
  width: 144px;
  height: 84px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(7,20,75,0.24));
}
.pir-benefit-copy {
  min-width: 0;
}
.pir-benefit-eyebrow {
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.64);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pir-benefit-row h3 {
  margin: 0 0 0.4rem;
  color: white;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pir-benefit-row p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.68;
}
.premium-pir-cta {
  box-shadow: 0 18px 34px rgba(7,20,75,0.18);
}
.premium-pir-panel {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.07) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 32px 54px rgba(3,10,42,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.premium-pir-panel-header {
  margin-bottom: 1.15rem;
}
.premium-pir-panel-kicker {
  margin-bottom: 0.55rem;
  color: rgba(255,255,255,0.66);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.premium-pir-panel-intro {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}
.premium-pir-panel-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.premium-pir-proof-card {
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 34px rgba(6,15,56,0.1);
  color: #1A1F36;
}
.premium-pir-proof-label {
  margin-bottom: 0.45rem;
  color: #1B4FE8;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.premium-pir-proof-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.48;
}
.badge-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(14,19,64,0.04);
}
.badge-info-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.badge-info-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  line-height: 1.25;
}
.badge-info-card p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.88rem;
  line-height: 1.65;
  font-family: 'Public Sans', sans-serif;
}

/* ── Breadcrumb refinement ───────────────────────────────────── */
.breadcrumb {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.82rem; color: var(--on-surface-variant);
  padding: 0.5rem 0 0.25rem;
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.4rem;
  max-width: 1060px; margin-left: auto; margin-right: auto;
}
.breadcrumb a {
  color: var(--on-surface-variant); text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { opacity: 0.5; }

/* ── Sidebar TOC title ───────────────────────────────────────── */
.sidebar-toc-title {
  font-size: 0.88rem; font-weight: 800; margin-bottom: 0.75rem;
  color: var(--on-surface); letter-spacing: -0.01em;
}

/* ── Calc widget premium ─────────────────────────────────────── */
.calc-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem; font-weight: 800; margin-bottom: 1rem;
  color: var(--on-surface);
}
.calc-fields {
  display: grid; gap: 1rem; margin-bottom: 1.25rem;
}
.calc-field label {
  display: block; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--on-surface-variant); margin-bottom: 0.4rem;
  font-family: 'Public Sans', sans-serif;
}
.calc-field select, .calc-field input {
  width: 100%; padding: 0.7rem 0.9rem; border-radius: 0.6rem;
  border: 1.5px solid var(--outline-variant);
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  background: white; transition: border-color 0.2s ease;
  color: var(--on-surface);
}
.calc-field select:focus, .calc-field input:focus {
  border-color: var(--primary); outline: none;
  box-shadow: 0 0 0 3px rgba(27,79,232,0.08);
}
.calc-btn {
  background: var(--primary); color: white; border: none;
  padding: 0.75rem 1.75rem; border-radius: 0.6rem;
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.calc-btn:hover { background: #1443D8; transform: translateY(-1px); }
.calc-result {
  margin-top: 1.25rem; padding: 1.25rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(27,79,232,0.06), rgba(47,99,245,0.03));
  border: 1px solid rgba(27,79,232,0.1);
}
.calc-result-amount { font-size: 1.1rem; font-weight: 800; color: var(--on-surface); }
.calc-result-note { font-size: 0.85rem; color: var(--on-surface-variant); margin-top: 0.4rem; line-height: 1.6; }
.calc-result-cta {
  display: inline-block; margin-top: 0.75rem; padding: 0.6rem 1.25rem;
  background: var(--primary); color: white; border-radius: 0.5rem;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.calc-result-cta:visited,
.calc-result-cta:hover,
.calc-result-cta:active {
  color: white;
  text-decoration: none;
}
.calc-result-cta:hover { background: #1443D8; transform: translateY(-1px); }

/* ===== SCROLL-REVEAL ANIMATIONS ===== */

/* Base state: elements start invisible */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== MICRO-INTERACTIONS ===== */

/* Card hover lift */
.card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,79,232,0.1);
}

/* Stat counter pulse on hover */
.stat-value {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.2s ease;
}
.stat:hover .stat-value {
  transform: scale(1.08);
  color: var(--primary);
}

/* Smooth image hover zoom */
.prose img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  border-radius: 1rem;
}
.prose img:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* FAQ details open/close */
details summary svg {
  transition: transform 0.25s ease;
}
details[open] summary svg {
  transform: rotate(180deg);
}
details .faq-answer,
details > div {
  animation: faqOpen 0.3s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA banner subtle float */
.cta-banner {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.25);
}

/* Nav link underline slide */
.nav-links > a::after,
.nav-dropdown > a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links > a:hover::after,
.nav-dropdown > a:hover::after {
  transform: scaleX(1);
}
.nav-links > a.active::after,
.nav-dropdown > a.active::after {
  transform: scaleX(0);
}

/* Breadcrumb subtle entrance */
.breadcrumb {
  animation: breadcrumbIn 0.4s ease 0.1s both;
}
@keyframes breadcrumbIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Chip subtle bounce on load */
.chip {
  animation: chipBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
@keyframes chipBounce {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Smooth scroll behavior */
html { scroll-behavior: smooth; }

/* Focus-visible ring for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-scale, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile improvements */
@media (max-width: 767px) {
  .mid-cta { padding: 2rem 1.5rem; text-align: center; justify-content: center; }
  .mid-cta h3 { font-size: 1.25rem; }
  .trust-strip-inner { gap: 1.5rem; }
  .trust-strip-logos { gap: 1.25rem; }
  .hero-inner { padding-top: 2rem !important; }
  .nav-inner { height: 78px; }
  .nav-logo img { height: 46px !important; }
  .prose { font-size: 1.05rem; }
  .prose h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; }
  .prose p { font-size: 1rem; }
  .takeaways-header { padding: 1rem 1.25rem 0.85rem 1.5rem; }
  .takeaways li { padding: 0.8rem 1.25rem 0.8rem 3.5rem; }
  .takeaway-num { left: 1.1rem; }
  .deadline-timeline { padding: 1.5rem 1.25rem; }
  .case-study-card { padding: 1.5rem; flex-direction: column; }
  .case-study-divider { width: 100%; height: 1px; }
  .calc-widget { padding: 1.5rem; }
  .process-step:hover { transform: none; }
  .card:hover { transform: none; box-shadow: none; }
  .split-visual {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }
  .split-visual.reverse .split-visual-media,
  .split-visual.reverse .split-visual-copy {
    order: initial;
  }
  .deadline-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-note {
    padding: 1.05rem 1rem 1.05rem 3.7rem;
  }
  .icon-card-grid {
    grid-template-columns: 1fr;
  }
  .badge-info-card {
    align-items: flex-start;
  }
  .premium-pir-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .premium-pir-copy {
    max-width: none;
  }
  .pir-benefit-row {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .pir-benefit-media {
    min-height: 84px;
  }
  .premium-pir-panel {
    padding: 1.35rem;
  }
  .premium-pir-panel-grid {
    grid-template-columns: 1fr;
  }
  /* Hide sidebar TOC on mobile - useless below article */
  .art-sidebar .sidebar-toc {
    display: none;
  }
  /* Limit split-visual image height in single-column mode */
  .split-visual-media {
    max-height: 260px;
    overflow: hidden;
  }
  .split-visual-media img {
    height: 260px;
    min-height: 0;
  }
}

@media (max-width: 540px) {
  .deadline-card-grid {
    grid-template-columns: 1fr;
  }
  .lost-timeline [style*='grid-template-columns:repeat(auto-fit,minmax(130px,1fr))'] {
    grid-template-columns: 1fr !important;
  }
  .pir-benefit-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .pir-benefit-media {
    min-height: 96px;
  }
  .premium-pir-title {
    font-size: 2rem;
  }
  .sidebar-claim {
    padding: 1.25rem 1.05rem 1.05rem;
  }
  .sidebar-claim-title {
    font-size: 1.35rem;
    max-width: none;
  }
  .sidebar-claim-body {
    font-size: 0.88rem;
    max-width: none;
  }
  /* Shrink step indicator connectors on very small screens */
  .step-connector {
    flex: 0 0 28px;
  }
  .step-num {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  .step-label-text {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM CLAIM FORM REDESIGN
   ══════════════════════════════════════════════════════════════ */

/* Step indicator - numbered circles with labels */
.form-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
/* Kill old ::after connector line */
.step-dot::after { display: none !important; }

/* Cancel old compound rules that bleed onto the container */
.step-dot.active  { background: transparent !important; }
.step-dot.current { width: auto !important; height: auto !important; box-shadow: none !important; }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Public Sans', sans-serif;
  background: var(--surface-container-high);
  color: var(--on-surface-variant);
  transition: background 0.3s, color 0.3s, box-shadow 0.35s;
}
.step-dot.active .step-num {
  background: var(--primary);
  color: white;
}
.step-dot.current .step-num {
  box-shadow: 0 0 0 5px rgba(27,79,232,0.14);
}
.step-label-text {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  font-family: 'Public Sans', sans-serif;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.step-dot.active .step-label-text { color: var(--primary); }

/* Explicit connector line elements */
.step-connector {
  flex: 0 0 48px;
  height: 2px;
  background: var(--outline-variant);
  align-self: flex-start;
  margin-top: 17px;
  border-radius: 2px;
  transition: background 0.4s ease;
}
.step-dot.active + .step-connector { background: var(--primary); }

/* ── Claim type cards - premium ── */
.claim-type-grid { gap: 0.875rem; }

.claim-type-btn {
  padding: 1.1rem 0.65rem 0.95rem;
  border: 1.5px solid var(--outline-variant);
  border-radius: 1.1rem;
  background: #fff;
  transition: border-color 0.22s, background 0.22s, transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s;
  position: relative;
}
.claim-type-btn:hover {
  border-color: rgba(27,79,232,0.35);
  background: rgba(27,79,232,0.015);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(27,79,232,0.08);
}

/* SVG icon circle */
.t-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--surface-container-low);
  color: var(--on-surface-variant);
  transition: background 0.22s, color 0.22s, transform 0.22s cubic-bezier(0.16,1,0.3,1);
}
.claim-type-btn:hover .t-icon-wrap { transform: scale(1.06); }

/* Suppress old emoji span */
.claim-type-btn .t-icon { display: none; }

/* Selected - Delayed (amber) */
.claim-type-btn[data-type="delayed"].selected {
  border-color: #d97706;
  background: rgba(251,191,36,0.04);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.13), 0 8px 24px rgba(245,158,11,0.09);
  transform: translateY(-3px);
}
.claim-type-btn[data-type="delayed"].selected .t-icon-wrap {
  background: rgba(245,158,11,0.13);
  color: #b45309;
}
.claim-type-btn[data-type="delayed"].selected .t-label { color: #92400e; }

/* Selected - Lost (blue) */
.claim-type-btn[data-type="lost"].selected {
  border-color: var(--primary);
  background: rgba(27,79,232,0.03);
  box-shadow: 0 0 0 4px rgba(27,79,232,0.12), 0 8px 24px rgba(27,79,232,0.09);
  transform: translateY(-3px);
}
.claim-type-btn[data-type="lost"].selected .t-icon-wrap {
  background: rgba(27,79,232,0.1);
  color: var(--primary);
}
.claim-type-btn[data-type="lost"].selected .t-label { color: var(--primary); }

/* Selected - Damaged (red) */
.claim-type-btn[data-type="damaged"].selected {
  border-color: #dc2626;
  background: rgba(220,38,38,0.03);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.1), 0 8px 24px rgba(220,38,38,0.06);
  transform: translateY(-3px);
}
.claim-type-btn[data-type="damaged"].selected .t-icon-wrap {
  background: rgba(220,38,38,0.1);
  color: #dc2626;
}
.claim-type-btn[data-type="damaged"].selected .t-label { color: #991b1b; }

/* Label & desc */
.claim-type-btn .t-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.01em;
  transition: color 0.22s;
}
.claim-type-btn .t-desc {
  font-size: 0.7rem;
  color: var(--on-surface-variant);
  margin-top: 0.18rem;
  line-height: 1.45;
}

/* Success - premium green checkmark */
.form-success .s-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 0;
  box-shadow: 0 8px 32px rgba(34,197,94,0.28);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes successPop {
  from { opacity: 0; transform: scale(0.55); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===== CONVERSION AND MOTION OVERRIDES ===== */
body {
  line-height: 1.68;
}

.btn-primary,
.nav-cta,
.sidebar-claim .sidebar-claim-btn,
#mobile-sticky-cta a {
  animation: none !important;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out, color 0.2s ease-out;
}

.btn-primary:hover,
.nav-cta:hover,
.sidebar-claim .sidebar-claim-btn:hover,
#mobile-sticky-cta a:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn-primary:active,
.nav-cta:active,
.btn-secondary:active,
.sidebar-claim .sidebar-claim-btn:active,
#mobile-sticky-cta a:active {
  transform: scale(0.97);
}

.reveal,
.reveal-left,
.reveal-scale,
.reveal-stagger > * {
  opacity: 1;
  transform: none;
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

html.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-enabled .reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

html.js-enabled .reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

html.js-enabled .reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

html.js-enabled .reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

html.js-enabled .reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

html.js-enabled .reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.hero-primary-cta {
  min-width: 250px;
  justify-content: center;
}

.hero-cta-meta,
.sidebar-claim-trust,
.sticky-claim-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  font-family: 'Public Sans', sans-serif;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(27,79,232,0.06);
  border: 1px solid rgba(27,79,232,0.12);
  color: var(--on-surface-variant);
  font-size: 0.86rem;
  font-weight: 600;
  font-family: 'Public Sans', sans-serif;
}

.sidebar-claim-trust {
  justify-content: center;
  margin-top: 0.75rem;
}

.sidebar-claim-social {
  justify-content: flex-start;
  margin-top: 0.75rem;
}

#mobile-sticky-cta {
  display: block !important;
  left: 50%;
  right: auto;
  bottom: 1rem;
  width: min(780px, calc(100% - 1.35rem));
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 1.45rem;
  padding: 0.7rem 0.85rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(27,79,232,0.12);
  background:
    radial-gradient(circle at top left, rgba(97, 132, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(244,247,255,0.98) 100%);
  box-shadow: 0 20px 56px rgba(11,23,76,0.16), 0 6px 22px rgba(27,79,232,0.08);
  transform: translateX(-50%) translateY(120%);
}

#mobile-sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
}

#mobile-sticky-cta.dismissed {
  display: none !important;
}

#mobile-sticky-cta a {
  display: inline-flex;
  width: auto;
  min-width: 300px;
  justify-content: center;
  align-items: center;
  padding: 0.98rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(27,79,232,0.24);
}

.sticky-claim-meta {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  min-width: 0;
  flex: 0 1 auto;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.sticky-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #4b5b8f;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-meta-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b5af0;
  background: linear-gradient(180deg, rgba(93, 114, 255, 0.12) 0%, rgba(93, 114, 255, 0.06) 100%);
}

.sticky-meta-separator {
  width: 1px;
  height: 2rem;
  background: rgba(95, 112, 170, 0.22);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-stack,
  .hero-primary-cta,
  .hero-cta-row .btn-secondary {
    width: 100%;
  }

  .hero-cta-meta {
    justify-content: center;
  }

  .hero-benefits {
    flex-direction: column;
  }

  .hero-benefit-pill {
    justify-content: center;
  }

  #mobile-sticky-cta {
    width: calc(100% - 1rem);
    bottom: 0.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.8rem 0.85rem calc(0.82rem + env(safe-area-inset-bottom));
    border-radius: 1.2rem;
  }

  #mobile-sticky-cta a {
    display: flex;
    width: 100%;
    min-width: 0;
  }

  .sticky-claim-meta {
    justify-content: center;
    font-size: 0.78rem;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .sticky-meta-item {
    gap: 0.5rem;
  }

  .sticky-meta-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .sticky-meta-separator {
    display: none;
  }
}

/* ── Interactive Key Takeaways v2 ──────────────────────────── */
.tw-sub { font-size: 0.69rem; color: var(--on-surface-variant); margin: 1px 0 0; font-family: 'Public Sans', sans-serif; }
.tw-progress-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.tw-progress-lbl { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; color: var(--on-surface-variant); letter-spacing: 0.04em; }
.tw-bar-bg { width: 72px; height: 5px; background: var(--surface-container-high); border-radius: 99px; overflow: hidden; }
.tw-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #6B8CFF); border-radius: 99px; width: 0%; transition: width 0.45s cubic-bezier(0.34,1.56,0.64,1); }
/* Strip all base <li> styles - .tw-row (a div) handles layout */
.tw-interactive ul { padding: 0 !important; margin: 0 !important; list-style: none !important; }
.tw-interactive li { all: unset; display: block !important; }
.tw-interactive li::before, .tw-interactive li::after { display: none !important; }
.tw-interactive .takeaway-num { display: none !important; }
/* The actual flex row is a div inside each li */
.tw-row { display: flex; gap: 14px; align-items: flex-start; padding: 13px 2rem; border-bottom: 1px solid var(--surface-container-high); cursor: pointer; transition: background 0.15s; }
.tw-interactive li:last-child .tw-row { border-bottom: none; }
.tw-row:hover { background: rgba(27,79,232,0.035); }
.tw-row.tw-done { background: rgba(34,197,94,0.04); }
.tw-row.tw-done:hover { background: rgba(34,197,94,0.07); }
.tw-badge { width: 30px; height: 30px; border-radius: 50%; background: rgba(27,79,232,0.07); border: 1.5px solid rgba(27,79,232,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; position: relative; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.tw-row.tw-done .tw-badge { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.38); transform: scale(1.06); }
.tw-bnum { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800; color: var(--primary); position: absolute; transition: opacity 0.18s, transform 0.18s; }
.tw-bchk { font-size: 13px; color: #22c55e; position: absolute; opacity: 0; transform: scale(0.3) rotate(-20deg); transition: opacity 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1); user-select: none; }
.tw-row.tw-done .tw-bnum { opacity: 0; transform: scale(0.3); }
.tw-row.tw-done .tw-bchk { opacity: 1; transform: scale(1) rotate(0deg); }
.tw-body { flex: 1; min-width: 0; }
.tw-text { font-family: 'Public Sans', sans-serif; font-size: 0.875rem; color: var(--on-surface); line-height: 1.55; transition: color 0.2s; margin: 0; font-weight: 500; }
.tw-row.tw-done .tw-text { color: var(--on-surface-variant); font-weight: 400; }
.tw-more-btn { background: none; border: none; cursor: pointer; padding: 0; font-family: 'Public Sans', sans-serif; font-size: 0.72rem; font-weight: 600; color: var(--primary); margin-top: 4px; display: flex; align-items: center; gap: 3px; opacity: 0; transform: translateY(-2px); transition: opacity 0.15s, transform 0.15s; }
.tw-more-btn svg { transition: transform 0.22s; flex-shrink: 0; }
.tw-row:hover .tw-more-btn, .tw-row.tw-expanded .tw-more-btn { opacity: 1; transform: translateY(0); }
.tw-row.tw-expanded .tw-more-btn svg { transform: rotate(180deg); }
.tw-row.tw-done .tw-more-btn { color: #6b9e6b; }
.tw-detail { font-family: 'Public Sans', sans-serif; font-size: 0.8rem; color: var(--on-surface-variant); line-height: 1.62; margin: 0; max-height: 0; overflow: hidden; transition: max-height 0.32s cubic-bezier(0.22,1,0.36,1), margin-top 0.22s; }
.tw-row.tw-expanded .tw-detail { max-height: 120px; margin-top: 5px; }
.tw-footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 2rem; border-top: 1px solid var(--surface-container-high); }
.tw-msg { font-family: 'Public Sans', sans-serif; font-size: 0.76rem; color: var(--on-surface-variant); transition: color 0.3s; }
.tw-msg.tw-all-done { color: #22c55e; font-weight: 600; }
.tw-reset { background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; color: var(--on-surface-variant); letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; transition: background 0.15s, color 0.15s; }
.tw-reset:hover { background: var(--surface-container); color: var(--primary); }

/* Isolate .takeaways from .prose overrides */
.prose .takeaways h4 { font-size: 0.72rem; font-weight: 700; color: var(--on-surface); text-transform: uppercase; letter-spacing: 0.15em; margin: 0; font-family: 'Public Sans', sans-serif; }
.prose .takeaways p { font-size: inherit; color: inherit; margin: 0; line-height: inherit; font-weight: inherit; letter-spacing: normal; }
.prose .takeaways .tw-sub { font-size: 0.69rem; color: var(--on-surface-variant); margin: 1px 0 0; }
.prose .takeaways .tw-text { font-size: 0.875rem; color: var(--on-surface); line-height: 1.55; margin: 0; font-weight: 500; }
.prose .takeaways .tw-row.tw-done .tw-text { color: var(--on-surface-variant); font-weight: 400; }
.prose .takeaways .tw-detail { font-size: 0.8rem; color: var(--on-surface-variant); line-height: 1.62; margin: 0; max-height: 0; }
.prose .takeaways .tw-row.tw-expanded .tw-detail { max-height: 120px; margin-top: 5px; }
.prose .takeaways .tw-msg { font-size: 0.76rem; }
.prose .takeaways ul { margin: 0; padding: 0.4rem 0 0.6rem; list-style: none; line-height: normal; color: var(--on-surface); font-size: 0.9rem; }

/* ── Scroll progress bar ─────────────────────────────────────── */
#reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, #6B8CFF 100%);
  z-index: 99999; pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(27,79,232,0.4);
}

/* ── Sticky claim CTA ────────────────────────────────────────── */
.sticky-claim {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
  z-index: 9000; display: flex; align-items: center; gap: 1rem;
  background: var(--on-surface); color: white;
  padding: 0.85rem 1.25rem 0.85rem 1.5rem;
  border-radius: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0; white-space: nowrap;
}
.sticky-claim.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.sticky-claim-text { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.88); font-family: 'Public Sans', sans-serif; }
.sticky-claim-btn {
  background: var(--primary); color: white;
  padding: 0.45rem 1.1rem; border-radius: 2rem;
  font-size: 0.825rem; font-weight: 700; text-decoration: none;
  font-family: 'Public Sans', sans-serif;
  transition: background 0.15s; flex-shrink: 0;
}
.sticky-claim-btn:hover { background: var(--primary-container); }
.sticky-claim-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.45); font-size: 1.2rem; line-height: 1;
  padding: 0 0.25rem; transition: color 0.15s;
}
.sticky-claim-close:hover { color: white; }
@media (max-width: 767px) {
  .sticky-claim {
    left: 1rem;
    right: 1rem;
    transform: translateY(120%);
    white-space: normal;
    border-radius: 1.25rem;
    padding: 0.9rem 1rem;
    flex-wrap: nowrap;
    gap: 0.75rem;
    width: calc(100% - 2rem);
    box-sizing: border-box;
  }
  .sticky-claim.visible { transform: translateY(0); }
  .sticky-claim-text {
    font-size: 0.82rem;
    flex: 1;
    white-space: normal;
    line-height: 1.35;
  }
  .sticky-claim-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    flex-shrink: 0;
  }
}

/* ── Author widget ───────────────────────────────────────────── */
/* ── Author widget ───────────────────────────────────────────── */
.author-widget {
  display: flex; flex-direction: column; gap: 0.65rem;
  padding: 0.9rem 1.25rem;
  border-radius: 0.75rem; margin: 1.75rem 0;
  background: var(--surface-container-low);
  border: 1.5px solid var(--surface-container-high);
  font-family: 'Public Sans', sans-serif;
}
.author-widget-top {
  display: flex; align-items: center; gap: 0.75rem;
}
.author-date {
  font-size: 0.78rem; color: var(--on-surface-variant); font-weight: 500;
}
.author-fact-checked {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 700; color: #0D7A4E;
  background: #ECFDF5; border: 1px solid #A7F3D0;
  border-radius: 2rem; padding: 0.2rem 0.65rem;
  cursor: default; position: relative;
  letter-spacing: 0.01em;
}
.author-fact-checked svg { flex-shrink: 0; }
/* Tooltip on hover */
.author-fact-checked::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #0E1340; color: white;
  font-size: 0.72rem; font-weight: 400; line-height: 1.4;
  padding: 0.45rem 0.75rem; border-radius: 0.5rem;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.15s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10;
}
.author-fact-checked::before {
  content: '';
  position: absolute; bottom: calc(100% + 2px); left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #0E1340;
  pointer-events: none; opacity: 0; transition: opacity 0.15s;
  z-index: 10;
}
.author-fact-checked:hover::after,
.author-fact-checked:hover::before { opacity: 1; }
.author-widget-byline {
  display: flex; align-items: center; gap: 0.65rem;
}
.author-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #1B4FE8 0%, #4F72FF 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 800; color: white;
  font-family: 'Public Sans', sans-serif;
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(27,79,232,0.25);
}
.author-byline-text { display: flex; align-items: baseline; gap: 0.3rem; flex-wrap: wrap; }
.author-byline-label {
  font-size: 0.775rem; color: var(--on-surface-variant); font-weight: 400;
}
.author-name {
  font-size: 0.775rem; font-weight: 700; color: var(--primary);
  text-decoration: none;
}
.author-name:hover { text-decoration: underline; }
.author-role-sep {
  font-size: 0.775rem; color: var(--on-surface-variant); font-weight: 400;
}
.author-role {
  font-size: 0.775rem; color: var(--on-surface-variant); font-weight: 400;
  margin: 0;
}
/* Remove old unused classes safely */
.author-widget-label { display: none; }
.author-tags { display: none; }
.author-info { display: contents; }
.author-link { display: none; }
@media (max-width: 480px) {
  .author-widget { padding: 0.8rem 1rem; }
  .author-fact-checked::after { white-space: normal; width: 180px; left: 0; transform: none; }
}

/* ── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 300px;
  background: #fff;
  border: 1.5px solid #E2E8FF;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(27,79,232,0.13);
  padding: 1.1rem 1.2rem 1rem;
  z-index: 9999;
  font-family: 'Public Sans', sans-serif;
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.cookie-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 0.82rem;
  color: var(--on-surface-variant);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.cookie-banner-text a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
}
.cookie-btn-accept {
  flex: 1;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.cookie-btn-accept:hover { background: #1540c0; }
.cookie-btn-decline {
  flex: 1;
  background: transparent;
  color: var(--on-surface-variant);
  border: 1.5px solid #D0D7F0;
  border-radius: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-btn-decline:hover { background: #F4F6FF; }
