@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root{
  --navy: #0B1E3D;
  --navy-deep: #071630;
  --navy-panel: #0F2547;
  --orange: #FF6A2B;
  --orange-soft: #FF8A50;
  --white: #FFFFFF;
  --ink-88: rgba(255,255,255,0.88);
  --ink-72: rgba(255,255,255,0.72);
  --ink-62: rgba(255,255,255,0.62);
  --ink-45: rgba(255,255,255,0.45);
  --ink-25: rgba(255,255,255,0.14);
  --border: rgba(255,255,255,0.10);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x:hidden;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; }
input, select, textarea{ font-family:inherit; }
.mono{ font-family:'JetBrains Mono', monospace; }
:focus-visible{ outline: 2px solid var(--orange-soft); outline-offset: 3px; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }

.bg-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events:none;
}

/* ============ NAV ============ */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(11,30,61,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 32px;
  max-width:1180px; margin:0 auto;
}
.logo{
  font-family:'Space Grotesk', sans-serif;
  font-weight:700; font-size:24px;
  display:flex; align-items:center; gap:10px;
}
.logo-mark{ width:12px; height:12px; background: var(--orange); border-radius:3px; transform: rotate(45deg); }
.nav-links{ display:flex; gap:34px; font-size:15px; font-weight:500; color: var(--ink-62); }
.nav-links a:hover{ color: var(--white); }
.nav-links a.active{ color: var(--white); }
.nav-cta{
  background: var(--orange); color: var(--navy-deep);
  font-weight:700; font-size:15px; padding: 11px 22px; border-radius:10px; white-space:nowrap;
}
.nav-mobile-toggle{ display:none; background:none; color:var(--white); font-size:24px; }
.nav-mobile-hide{ display:flex; align-items:center; gap:34px; }
@media (max-width: 820px){
  .nav-mobile-hide{ display:none; }
  .nav-mobile-hide.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background: rgba(7,22,48,0.98);
    padding:24px 32px;
    border-bottom:1px solid var(--border);
    gap:18px;
    z-index:100;
  }
  .nav-mobile-hide.open .nav-links{
    display:flex;
    flex-direction:column;
    gap:0;
    width:100%;
  }
  .nav-mobile-hide.open .nav-links li{
    width:100%;
  }
  .nav-mobile-hide.open .nav-links a{
    display:block;
    width:100%;
    padding:14px 16px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    color: var(--ink-72);
    transition: background 0.15s, color 0.15s;
    text-align:left;
  }
  .nav-mobile-hide.open .nav-links a:hover,
  .nav-mobile-hide.open .nav-links a:active{
    background: rgba(255,255,255,0.06);
    color: var(--white);
  }
  .nav-mobile-hide.open .nav-links a.active{
    background: rgba(255,106,43,0.1);
    color: var(--orange);
  }
  .nav-mobile-hide.open .nav-cta{
    display:block;
    text-align:center;
    margin-top:8px;
  }
  .nav-mobile-toggle{ display:block; }
  .nav-inner{ position:relative; }
}

/* ============ GENERIC PAGE HEADER (non-home pages) ============ */
.page-header{
  position:relative;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  overflow:hidden;
}
.page-header-glow{
  position:absolute; width:800px; height:800px; top:-360px; right:-280px;
  background: radial-gradient(circle, rgba(255,106,43,0.18) 0%, rgba(255,106,43,0) 65%);
  pointer-events:none;
}
.page-header h1{
  position:relative; z-index:2;
  font-family:'Space Grotesk', sans-serif; font-weight:700;
  font-size: clamp(32px, 4vw, 48px); line-height:1.15; letter-spacing:-0.01em;
}
.page-header p{
  position:relative; z-index:2;
  margin-top:16px; font-size:18px; color: var(--ink-62); max-width:620px; line-height:1.6;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Space Grotesk', sans-serif;
  font-size:14px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color: var(--ink-62);
  margin-bottom:20px;
  position:relative; z-index:2;
}
.eyebrow-dot{ width:8px; height:8px; background: var(--orange); border-radius:2px; transform: rotate(45deg); }

.accent{ color: var(--orange); }

/* ============ SECTIONS ============ */
section{ position:relative; }
.section-pad{ padding: 96px 0; }
.section-pad-sm{ padding: 64px 0; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{
  font-family:'Space Grotesk', sans-serif; font-weight:700;
  font-size: clamp(26px, 3vw, 38px); line-height:1.22; letter-spacing:-0.01em;
}
.section-head p{ margin-top:14px; font-size:17px; color: var(--ink-62); line-height:1.6; }

.btn-primary{
  display:inline-block;
  background: var(--orange); color: var(--navy-deep);
  font-weight:700; font-size:16px; padding: 15px 26px; border-radius:10px;
  white-space:nowrap; transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary:hover{ background: var(--orange-soft); transform: translateY(-1px); }
.btn-secondary{
  display:inline-block;
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1.5px solid var(--border);
  font-weight:600; font-size:16px; padding: 14px 24px; border-radius:10px;
  white-space:nowrap;
}
.btn-secondary:hover{ border-color: rgba(255,255,255,0.24); }

/* ============ CARDS ============ */
.card{
  background: var(--navy-panel);
  border: 1.5px solid var(--border);
  border-radius:22px;
  padding: 30px 28px;
}

/* ============ SCREENSHOT PLACEHOLDER ============ */
.screenshot-placeholder{
  position:relative;
  background: var(--navy-panel);
  border: 1.5px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:220px;
}
.screenshot-placeholder::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
}
.screenshot-placeholder-label{
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  color: var(--ink-45);
  font-size:14px; font-weight:500;
  text-align:center;
  padding:32px;
}
.screenshot-placeholder-icon{
  width:48px; height:48px;
  border:2px dashed var(--ink-25);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; color:var(--orange);
}
.screenshot-placeholder.hero-mockup{
  min-height:380px;
  background: linear-gradient(160deg, var(--navy-panel) 0%, rgba(15,37,71,0.6) 100%);
  border-radius:20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

/* ============ SOCIAL PROOF / NUMBERS ============ */
.numbers-section{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding: 72px 0;
}
.numbers-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:32px;
  text-align:center;
}
.number-item{}
.number-value{
  font-family:'JetBrains Mono', monospace;
  font-size: clamp(32px, 4vw, 48px);
  font-weight:700;
  color: var(--orange);
  line-height:1.1;
  margin-bottom:8px;
}
.number-label{
  font-size:14.5px;
  color: var(--ink-62);
  line-height:1.4;
}
@media (max-width: 700px){
  .numbers-grid{ grid-template-columns: repeat(2, 1fr); gap:28px 16px; }
}

/* ============ AI ADVISOR (enhanced) ============ */
.ai-advisor-section{
  background: var(--navy-deep);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.ai-advisor-section::before{
  content:'';
  position:absolute; width:700px; height:700px; bottom:-350px; left:-200px;
  background: radial-gradient(circle, rgba(255,106,43,0.12) 0%, rgba(255,106,43,0) 65%);
  pointer-events:none;
}
.ai-advisor-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:64px;
  align-items:center;
}
.ai-chat-demo{
  display:flex;
  flex-direction:column;
  gap:16px;
  position:relative;
  z-index:2;
}
.chat-bubble{
  border-radius:16px;
  padding:18px 22px;
  font-size:16px;
  line-height:1.45;
  max-width:88%;
  animation: fadeInUp 0.4s ease both;
}
.chat-bubble-user{
  align-self:flex-end;
  background:rgba(255,255,255,0.06);
  border:1.5px solid var(--border);
  border-radius:16px 16px 4px 16px;
  font-weight:600;
  max-width:78%;
}
.chat-bubble-ai{
  align-self:flex-start;
  background: linear-gradient(160deg, #FF6A2B 0%, #FF8A50 100%);
  border-radius:16px 16px 16px 4px;
  color: var(--navy-deep);
  font-weight:600;
}
.chat-bubble-ai .mono{ font-weight:700; }
.ai-advisor-features{
  display:flex; flex-direction:column; gap:16px;
  margin-top:28px;
}
.ai-feature-item{
  display:flex; align-items:flex-start; gap:14px;
  font-size:15px; color:var(--ink-72); line-height:1.45;
}
.ai-feature-icon{
  width:28px; height:28px; min-width:28px;
  background: rgba(255,106,43,0.12);
  border:1px solid rgba(255,106,43,0.25);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  color: var(--orange);
}
@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(12px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ============ VALUE CALCULATOR BANNER ============ */
.value-calc-banner{
  background: var(--navy-panel);
  border: 1.5px solid rgba(255,106,43,0.25);
  border-radius:20px;
  padding:36px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  flex-wrap:wrap;
}
.value-calc-banner h3{
  font-family:'Space Grotesk', sans-serif;
  font-size:20px;
  font-weight:700;
}
.value-calc-banner p{
  font-size:15px;
  color:var(--ink-62);
  margin-top:6px;
  line-height:1.5;
}

/* ============ FORMS ============ */
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.field label{ font-size:14px; font-weight:600; color: var(--ink-72); }
.field input, .field select, .field textarea{
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius:10px;
  padding: 14px 16px;
  color: var(--white);
  font-size:15px;
}
.field input::placeholder, .field textarea::placeholder{ color: var(--ink-45); }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--orange); background: rgba(255,255,255,0.09);
}
.field textarea{ resize:vertical; min-height:120px; }

/* ============ FOOTER ============ */
footer{ padding: 48px 0 60px; border-top: 1px solid var(--border); }
.footer-inner{ display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:32px; }
.footer-brand{ max-width:280px; }
.footer-brand .logo{ margin-bottom:12px; }
.footer-text{ font-size:14px; color: var(--ink-45); line-height:1.6; }
.footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h4{
  font-family:'Space Grotesk', sans-serif; font-size:14px; font-weight:600;
  letter-spacing:0.06em; text-transform:uppercase; color: var(--ink-45); margin-bottom:16px;
}
.footer-col a{ display:block; font-size:14.5px; color: var(--ink-62); margin-bottom:10px; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  margin-top:40px; padding-top:24px; border-top:1px solid var(--border);
  font-size:13.5px; color: var(--ink-45);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
}

/* ============ LEGAL PAGES ============ */
.legal-body{ max-width:760px; padding: 56px 0 100px; }
.legal-body h2{
  font-family:'Space Grotesk', sans-serif; font-size:24px; font-weight:700;
  margin-top:40px; margin-bottom:14px;
}
.legal-body h2:first-child{ margin-top:0; }
.legal-body p{ font-size:15.5px; line-height:1.7; color: var(--ink-72); margin-bottom:14px; }
.legal-body ul{ margin: 0 0 14px 0; }
.legal-body li{ font-size:15.5px; line-height:1.7; color: var(--ink-72); margin-bottom:8px; padding-left:20px; position:relative; }
.legal-body li::before{ content:"—"; position:absolute; left:0; color: var(--orange); }
.legal-notice{
  background: rgba(255,106,43,0.08);
  border: 1.5px solid rgba(255,106,43,0.25);
  border-radius:14px;
  padding: 18px 22px;
  font-size:14.5px;
  color: var(--ink-72);
  line-height:1.6;
  margin-bottom:40px;
}
.legal-notice strong{ color: var(--white); }

/* ============ PRICING ============ */
.pricing-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:24px;
}
@media (max-width: 900px){ .pricing-grid{ grid-template-columns:1fr; } }
.price-card{
  background: var(--navy-panel);
  border: 1.5px solid var(--border);
  border-radius:24px;
  padding: 36px 30px;
  display:flex; flex-direction:column;
}
.price-card.featured{
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,106,43,0.08) 0%, var(--navy-panel) 30%);
  position:relative;
}
.price-badge{
  position:absolute; top:-14px; left:30px;
  background: var(--orange); color: var(--navy-deep);
  font-size:12.5px; font-weight:700; padding:6px 14px; border-radius:999px;
}
.price-tier{ font-family:'Space Grotesk', sans-serif; font-size:20px; font-weight:700; margin-bottom:8px; }
.price-tier-desc{ font-size:14.5px; color: var(--ink-45); margin-bottom:24px; }
.price-amount{ font-family:'JetBrains Mono', monospace; font-size:42px; font-weight:700; color: var(--white); }
.price-amount .period{ font-family:'Inter', sans-serif; font-size:15px; font-weight:500; color: var(--ink-45); }
.price-features{ margin: 28px 0; flex:1; display:flex; flex-direction:column; gap:14px; }
.price-feature{ display:flex; align-items:flex-start; gap:12px; font-size:15px; color: var(--ink-72); line-height:1.4; }
.price-feature-dot{ width:7px; height:7px; border-radius:50%; background: var(--orange); margin-top:7px; flex-shrink:0; }

/* ============ FEATURE LIST (product page) ============ */
.feature-list{
  list-style:none;
  margin:20px 0 0;
  padding:0;
  display:flex; flex-direction:column; gap:12px;
}
.feature-list li{
  font-size:15px;
  color: var(--ink-72);
  line-height:1.45;
  padding-left:22px;
  position:relative;
}
.feature-list li::before{
  content:'';
  position:absolute; left:0; top:7px;
  width:8px; height:8px;
  background: var(--orange);
  border-radius:2px;
  transform: rotate(45deg);
}

/* ============ INTEGRATIONS PAGE ============ */
.integration-icon{
  width:44px; height:44px;
  background: rgba(255,106,43,0.1);
  border:1px solid rgba(255,106,43,0.2);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  flex-shrink:0;
}
.integration-name{
  font-family:'Space Grotesk', sans-serif;
  font-size:18px;
  font-weight:700;
}
.integration-badge{
  display:inline-block;
  font-size:11.5px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  padding:3px 8px;
  border-radius:6px;
  margin-top:2px;
}
.integration-badge.native{
  background: rgba(76,175,80,0.15);
  color: #66BB6A;
  border:1px solid rgba(76,175,80,0.3);
}
.integration-badge.coming{
  background: rgba(255,255,255,0.06);
  color: var(--ink-45);
  border:1px solid var(--border);
}
.integration-data-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex; flex-direction:column; gap:8px;
}
.integration-data-list li{
  font-size:13.5px;
  color: var(--ink-45);
  padding-left:16px;
  position:relative;
}
.integration-data-list li::before{
  content:'✓';
  position:absolute; left:0;
  color: var(--orange);
  font-size:12px;
}

/* ============ STEP NUMBERS ============ */
.step-number{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:48px; height:48px;
  background: rgba(255,106,43,0.12);
  border:1.5px solid rgba(255,106,43,0.3);
  border-radius:14px;
  font-family:'JetBrains Mono', monospace;
  font-size:20px;
  font-weight:700;
  color: var(--orange);
}

/* ============ SEGMENT PAGE ============ */
.segment-pain-points,
.segment-benefits{
  margin-top:24px;
}
.segment-pain-points h4,
.segment-benefits h4{
  font-family:'Space Grotesk', sans-serif;
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color: var(--ink-45);
  margin-bottom:12px;
}

/* ============ COMPARISON TABLE ============ */
.comparison-table{
  width:100%;
  border-collapse:collapse;
  font-size:14.5px;
}
.comparison-table th,
.comparison-table td{
  padding:14px 18px;
  text-align:left;
  border-bottom:1px solid var(--border);
}
.comparison-table th{
  font-family:'Space Grotesk', sans-serif;
  font-weight:700;
  font-size:15px;
  color: var(--white);
  background: var(--navy-panel);
}
.comparison-table th:first-child{
  border-radius:12px 0 0 0;
}
.comparison-table th:last-child{
  border-radius:0 12px 0 0;
}
.comparison-table td{
  color: var(--ink-72);
}
.comparison-table td:first-child{
  font-weight:600;
  color: var(--ink-88);
}
.comparison-table tr:hover td{
  background: rgba(255,255,255,0.02);
}

/* ============ BLOG CARDS ============ */
.blog-card{
  display:flex;
  flex-direction:column;
  gap:0;
}
.blog-card-category{
  font-family:'Space Grotesk', sans-serif;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color: var(--orange);
  margin-bottom:14px;
}
.blog-card-title{
  font-family:'Space Grotesk', sans-serif;
  font-size:18px;
  font-weight:700;
  line-height:1.3;
  margin-bottom:12px;
}
.blog-card-excerpt{
  font-size:14.5px;
  color: var(--ink-62);
  line-height:1.55;
  margin-bottom:16px;
  flex:1;
}
.blog-card-meta{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12.5px;
  color: var(--ink-45);
  margin-bottom:14px;
}
.blog-card-tag{
  background: rgba(255,255,255,0.06);
  padding:3px 8px;
  border-radius:6px;
  font-weight:600;
}
.blog-card-link{
  font-family:'Space Grotesk', sans-serif;
  font-size:14px;
  font-weight:700;
  color: var(--orange);
}
.blog-card-link:hover{
  color: var(--orange-soft);
}

/* ============ COMPLIANCE BADGE ============ */
.compliance-badge{
  display:inline-block;
  margin-top:14px;
  font-size:12px;
  font-weight:600;
  color: #66BB6A;
  background: rgba(76,175,80,0.1);
  border:1px solid rgba(76,175,80,0.25);
  padding:5px 12px;
  border-radius:8px;
}

/* ============ VALUE CALCULATOR PAGE ============ */
.calc-hint{
  font-size:12px;
  color: var(--ink-45);
  margin-top:4px;
}
.calc-toggle-advanced{
  background:none;
  border:none;
  color: var(--orange);
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  padding:8px 0;
  transition: opacity 0.2s;
}
.calc-toggle-advanced:hover{ opacity:0.7; }
.calc-results{
  background: var(--navy-deep);
  border:1.5px solid var(--border);
  border-radius:24px;
  padding:40px 36px;
  margin-top:28px;
  animation: fadeInUp 0.4s ease both;
}
.calc-result-main{
  text-align:center;
  margin-bottom:32px;
  padding-bottom:28px;
  border-bottom:1px solid var(--border);
}
.calc-result-label{
  font-size:15px;
  color: var(--ink-62);
  margin-bottom:8px;
}
.calc-result-value{
  font-family:'JetBrains Mono', monospace;
  font-size: clamp(36px, 5vw, 52px);
  font-weight:700;
  color: var(--orange);
  line-height:1.1;
}
.calc-result-sub{
  font-size:15px;
  color: var(--ink-45);
  margin-top:8px;
}
.calc-roi-badge{
  display:inline-block;
  background: rgba(255,106,43,0.12);
  border:1px solid rgba(255,106,43,0.3);
  color: var(--orange);
  padding:8px 20px;
  border-radius:999px;
  font-family:'JetBrains Mono', monospace;
  font-weight:700;
  font-size:15px;
  margin-top:16px;
}
.calc-breakdown{
  display:flex;
  flex-direction:column;
  gap:0;
}
.calc-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid var(--border);
}
.calc-row:last-child{ border-bottom:none; }
.calc-row-area{
  font-size:14.5px;
  color: var(--ink-72);
  display:flex;
  align-items:center;
  gap:8px;
}
.calc-row-amount{
  font-family:'JetBrains Mono', monospace;
  font-weight:700;
  font-size:15px;
  color: var(--orange);
}
.calc-badge-ai{
  display:inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-size:10px;
  font-weight:700;
  padding:2px 7px;
  border-radius:5px;
}
.calc-disclaimer{
  font-size:12.5px;
  color: var(--ink-45);
  margin-top:24px;
  text-align:center;
  line-height:1.5;
}

/* ============ ARTICLE / BLOG POST ============ */
.article-back{
  display:inline-block;
  font-size:14px;
  font-weight:600;
  color: var(--ink-45);
  margin-bottom:20px;
  transition: color 0.15s;
}
.article-back:hover{ color: var(--orange); }
.article-meta-top{
  display:flex;
  align-items:center;
  gap:16px;
}
.article-reading-time{
  font-size:13px;
  color: var(--ink-45);
}
.article-body{
  max-width:800px;
  padding: 56px 32px 100px;
}
.article-body h2{
  font-family:'Space Grotesk', sans-serif;
  font-size:24px;
  font-weight:700;
  margin-top:48px;
  margin-bottom:16px;
  line-height:1.3;
}
.article-body h2:first-child{ margin-top:0; }
.article-body p{
  font-size:16px;
  line-height:1.7;
  color: var(--ink-72);
  margin-bottom:16px;
}
.article-body ul{
  margin:0 0 20px 0;
  padding:0;
  list-style:none;
}
.article-body ul li{
  font-size:15.5px;
  line-height:1.65;
  color: var(--ink-72);
  padding-left:22px;
  margin-bottom:10px;
  position:relative;
}
.article-body ul li::before{
  content:'';
  position:absolute; left:0; top:9px;
  width:7px; height:7px;
  background: var(--orange);
  border-radius:2px;
  transform: rotate(45deg);
}
.article-body strong{ color: var(--ink-88); }
.article-callout{
  background: var(--navy-panel);
  border:1.5px solid var(--border);
  border-radius:16px;
  padding:24px 28px;
  margin:24px 0;
}
.article-callout h4{
  font-family:'Space Grotesk', sans-serif;
  font-size:16px;
  font-weight:700;
  margin-bottom:14px;
  color: var(--white);
}
.article-callout ul{ margin-bottom:0; }
.article-callout ul li{ font-size:14.5px; }
.article-formula{
  background: var(--navy-deep);
  border:1.5px solid var(--border);
  border-radius:12px;
  padding:20px 24px;
  margin:24px 0;
  overflow-x:auto;
}
.article-formula code{
  font-family:'JetBrains Mono', monospace;
  font-size:14px;
  color: var(--orange);
  white-space:nowrap;
}
.article-table-wrap{
  overflow-x:auto;
  margin:24px 0;
}
.article-table{
  width:100%;
  border-collapse:collapse;
  font-size:14.5px;
}
.article-table th,
.article-table td{
  padding:12px 16px;
  text-align:left;
  border-bottom:1px solid var(--border);
}
.article-table th{
  font-family:'Space Grotesk', sans-serif;
  font-weight:700;
  color: var(--white);
  background: var(--navy-panel);
}
.article-table td{ color: var(--ink-72); }
.article-table-total td{
  border-top:2px solid var(--orange);
  color: var(--white);
}
.article-cta-box{
  background: rgba(255,106,43,0.08);
  border:1.5px solid rgba(255,106,43,0.25);
  border-radius:18px;
  padding:32px;
  margin:40px 0;
  text-align:center;
}
.article-cta-box h3{
  font-family:'Space Grotesk', sans-serif;
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}
.article-cta-box p{
  font-size:15px;
  color: var(--ink-62);
  margin-bottom:20px;
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
}
.article-related-link{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 20px;
  background: var(--navy-panel);
  border:1.5px solid var(--border);
  border-radius:14px;
  font-size:15px;
  color: var(--ink-72);
  transition: border-color 0.15s;
}
.article-related-link:hover{
  border-color: var(--orange);
  color: var(--white);
}

/* ============ RESPONSIVE HELPERS ============ */
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr !important; }
  .ai-advisor-grid{ grid-template-columns: 1fr; gap:40px; }
  .value-calc-banner{ flex-direction:column; text-align:center; align-items:stretch; }
  .comparison-table{ font-size:13px; }
  .comparison-table th, .comparison-table td{ padding:10px 12px; }
}
@media (max-width: 600px){
  .wrap{ padding:0 18px; }
  .section-pad{ padding: 64px 0; }
  .hero-mockup{ min-height:240px !important; }
}
