:root {
  --navy:       #1B2A4A;
  --navy-light: #243560;
  --steel:      #3A6EA5;
  --steel-light:#4D88C2;
  --orange:     #E8720C;
  --orange-glow:#FF8C2A;
  --amber:      #F5A623;
  --charcoal:   #2D2D2D;
  --gray-dark:  #444;
  --gray-mid:   #7a8899;
  --gray-light: #C8D0DA;
  --off-white:  #F4F5F7;
  --green:      #3D7A5F;
  --green-light:#52A882;
  --white:      #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── TOPNAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(27,42,74,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,110,165,0.25);
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
}

.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--orange-glow); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,110,165,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,110,165,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* Atmospheric glow */
.glow-orb {
  position: absolute;
  top: 15%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,114,12,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-2 {
  position: absolute;
  bottom: 5%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,110,165,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,114,12,0.12);
  border: 1px solid rgba(232,114,12,0.35);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.8rem;
  max-width: 66%;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero h1 .accent-line {
  display: block;
  color: var(--steel-light);
  font-size: 0.55em;
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--orange-glow);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,114,12,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(200,208,218,0.3);
  padding: 1rem 1.8rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--steel-light); color: var(--white); }

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(58,110,165,0.25);
  flex-wrap: wrap;
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-value .unit { font-size: 1.2rem; color: var(--gray-mid); }
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
  max-width: 120px;
  line-height: 1.4;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(20,32,58,0.7);
  border-top: 1px solid rgba(58,110,165,0.2);
  border-bottom: 1px solid rgba(58,110,165,0.2);
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-icon { color: var(--amber); font-size: 1.1rem; }

/* ── SECTION SCAFFOLD ── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 560px;
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.dark-section {
  background: rgba(10,18,32,0.6);
  border-top: 1px solid rgba(58,110,165,0.15);
  border-bottom: 1px solid rgba(58,110,165,0.15);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar-card {
  background: rgba(27,42,74,0.45);
  border: 1px solid rgba(58,110,165,0.2);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.pillar-card:hover { border-color: rgba(58,110,165,0.45); }

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.pillar-card.orange-top::before { background: var(--orange); }
.pillar-card.steel-top::before  { background: var(--steel); }
.pillar-card.amber-top::before  { background: var(--amber); }
.pillar-card.green-top::before  { background: var(--green-light); }

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-light);
}

.pillar-desc strong { color: var(--white); font-weight: 500; }

.vs-callout {
  margin-top: 1.2rem;
  background: rgba(0,0,0,0.25);
  border-radius: 5px;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.vs-callout .vs-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.25rem;
}

.vs-callout .vs-them { color: var(--gray-mid); }
.vs-callout .vs-us   { color: var(--green-light); font-weight: 500; }

/* ── PAPERS ── */
.papers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.paper-card {
  background: rgba(27,42,74,0.4);
  border: 1px solid rgba(58,110,165,0.18);
  border-radius: 7px;
  padding: 1.4rem;
  position: relative;
  transition: all 0.2s;
}

.paper-card:hover {
  border-color: rgba(232,114,12,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.paper-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.paper-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.paper-desc {
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.paper-tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.tag-calc {
  background: rgba(232,114,12,0.15);
  color: var(--amber);
  border: 1px solid rgba(232,114,12,0.25);
}
.tag-theory {
  background: rgba(58,110,165,0.15);
  color: var(--steel-light);
  border: 1px solid rgba(58,110,165,0.25);
}
.tag-regs {
  background: rgba(61,122,95,0.15);
  color: var(--green-light);
  border: 1px solid rgba(61,122,95,0.25);
}

.papers-note {
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(232,114,12,0.08);
  border: 1px solid rgba(232,114,12,0.2);
  border-radius: 5px;
  font-size: 0.88rem;
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.papers-note .note-icon { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ── COMPARISON ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.compare-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid rgba(58,110,165,0.25);
  color: var(--gray-mid);
}

.compare-table th.highlight {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.compare-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(58,110,165,0.1);
  vertical-align: top;
  color: var(--gray-light);
}

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

.compare-table .feature-col {
  font-weight: 500;
  color: var(--off-white);
}

.compare-table .them-col { color: var(--gray-mid); }

.compare-table .us-col {
  color: var(--white);
  font-weight: 500;
}

.compare-table .us-col .pill {
  display: inline-block;
  font-size: 0.72rem;
  background: rgba(82,168,130,0.15);
  color: var(--green-light);
  border: 1px solid rgba(82,168,130,0.25);
  border-radius: 2px;
  padding: 0.1rem 0.45rem;
  margin-left: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

td.them-col .x { color: #888; }
.check-green { color: var(--green-light); margin-right: 0.25rem; }

/* ── PRICING ── */
.pricing-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 1.8rem;
  align-items: stretch;
  margin-top: 3rem;
}

.price-card {
  background: rgba(27,42,74,0.5);
  border: 1px solid rgba(58,110,165,0.2);
  border-radius: 10px;
  padding: 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  background: rgba(36,53,96,0.75);
  border-color: var(--orange);
  box-shadow: 0 0 50px rgba(232,114,12,0.12);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.5rem;
}

.popular .plan-name { color: var(--amber); }

.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.plan-price sup {
  font-size: 1.5rem;
  vertical-align: super;
  line-height: 0;
  color: var(--gray-mid);
}

.plan-cycle {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.plan-tagline {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(58,110,165,0.2);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--gray-light);
  line-height: 1.45;
}

.check  { color: var(--green-light); flex-shrink: 0; margin-top: 0.05rem; }
.cross  { color: var(--gray-dark);   flex-shrink: 0; margin-top: 0.05rem; }

.btn-plan {
  width: 100%;
  padding: 0.9rem;
  border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-plan-outline {
  background: transparent;
  border: 1px solid rgba(58,110,165,0.35);
  color: var(--steel-light);
}
.btn-plan-outline:hover { border-color: var(--steel-light); color: var(--white); }

.btn-plan-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-plan-primary:hover { background: var(--orange-glow); box-shadow: 0 8px 24px rgba(232,114,12,0.3); }

.coming-soon-bar {
  margin-top: 1.5rem;
  background: rgba(27,42,74,0.5);
  border: 1px dashed rgba(58,110,165,0.35);
  border-radius: 7px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cs-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.25rem;
}
.cs-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cs-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-light);
}
.cs-badge {
  background: rgba(58,110,165,0.15);
  border: 1px solid rgba(58,110,165,0.3);
  color: var(--steel-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
}

/* ── FAQ / TRUST ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-card {
  padding: 1.5rem;
  border-left: 3px solid rgba(58,110,165,0.3);
}

.faq-card.orange-border { border-color: rgba(232,114,12,0.4); }
.faq-card.amber-border  { border-color: rgba(245,166,35,0.4); }

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(36,53,96,0.9) 0%, rgba(27,42,74,0.95) 100%);
  border-top: 1px solid rgba(58,110,165,0.2);
  border-bottom: 1px solid rgba(58,110,165,0.2);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,114,12,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}

.cta-band h2 em {
  font-style: normal;
  color: var(--orange);
}

.cta-band p {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  position: relative;
}

.cta-band .btn-primary { position: relative; font-size: 1.2rem; padding: 1.1rem 2.8rem; }

.cta-fine {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--gray-mid);
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #080F1C;
  border-top: 1px solid rgba(58,110,165,0.15);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand span { color: var(--orange); }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
}
.footer-links a { color: var(--gray-mid); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.75rem; color: var(--gray-dark); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,110,165,0.3) 30%, rgba(232,114,12,0.25) 70%, transparent);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.65s ease both;
}
.hero-badge   { animation-delay: 0.05s; }
.hero h1      { animation-delay: 0.15s; }
.hero-desc    { animation-delay: 0.25s; }
.hero-actions { animation-delay: 0.35s; }
.hero-stats   { animation-delay: 0.45s; }

/* ── LEGAL / CONTENT PAGES ── */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.container h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.updated {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 3rem;
}

.container h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.container p {
  margin-bottom: 1.2rem;
  color: var(--gray-light);
}

.container ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--gray-light);
}

.container li { margin-bottom: 0.5rem; }

.container a {
  color: var(--orange);
  text-decoration: none;
}

.container a:hover { text-decoration: underline; }

.container strong { color: var(--white); }

.highlight {
  background: rgba(232,114,12,0.15);
  border-left: 3px solid var(--orange);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

/* Legal page simple footer */
.simple-footer {
  background: #080F1C;
  border-top: 1px solid rgba(58,110,165,0.15);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 4rem;
}

.simple-footer a { color: var(--orange); text-decoration: none; }
.simple-footer a:hover { text-decoration: underline; }

/* Legal page nav (non-fixed) */
.nav-simple {
  position: static;
  height: auto;
  padding: 1rem 3rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero h1 { max-width: 100%; }
  .pillars { grid-template-columns: 1fr; }
  .papers-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.5rem; padding: 1.2rem 1.5rem; }
  .section-wrap { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .compare-table { font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .papers-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
}
