/* ===== CLAUSECRAFT DESIGN SYSTEM ===== */
:root {
  --navy: #0D1B2A;
  --navy-light: #1A2E44;
  --ivory: #F5F2EE;
  --copper: #B8712A;
  --copper-light: #D4955A;
  --slate: #4A5568;
  --slate-light: #718096;
  --off-white: #FDFCFB;
  --border: rgba(13, 27, 42, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: 100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 242, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--copper) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--copper-light) !important; color: white !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 40px 100px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(184, 113, 42, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero document card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.doc-card {
  width: 360px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.1), 0 4px 16px rgba(13, 27, 42, 0.06);
  overflow: hidden;
}
.doc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.doc-icon { opacity: 0.8; }
.doc-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: white;
}
.doc-status {
  font-size: 11px;
  color: var(--copper-light);
  font-weight: 500;
}
.doc-body { padding: 20px 18px; }
.doc-line {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
}
.doc-line.full { width: 100%; }
.doc-line.three-q { width: 75%; }
.doc-spacer { height: 6px; }
.doc-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 12px;
}
.doc-clauses { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.clause {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--off-white);
}
.clause-active { border-color: var(--copper); background: rgba(184, 113, 42, 0.04); }
.clause-ai { border-style: dashed; }
.clause-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
.clause-dot.ai { background: transparent; border: 2px solid var(--copper); }
.clause-dot.pending { background: var(--border); }
.clause-text { flex: 1; }
.clause-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-badge {
  font-size: 9px;
  font-weight: 600;
  background: rgba(184, 113, 42, 0.12);
  color: var(--copper);
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.04em;
}
.clause-val { font-size: 11px; color: var(--slate-light); }
.clause-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(184, 113, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.progress-label { font-size: 11px; color: var(--slate-light); margin-bottom: 8px; }
.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  border-radius: 4px;
  animation: fillProgress 2s ease-out infinite alternate;
}
@keyframes fillProgress {
  from { width: 30%; }
  to { width: 80%; }
}

/* ===== PROBLEM ===== */
.problem {
  padding: var(--section-py) 40px;
  background: var(--navy);
  color: white;
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.problem-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 560px;
}
.problem-body {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 64px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.problem-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.problem-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.problem-icon { margin-bottom: 16px; }

/* ===== FEATURES ===== */
.features {
  padding: var(--section-py) 40px;
  background: var(--ivory);
}
.features-inner { max-width: var(--max-w); margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 72px; }
.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}
.features-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
}
.feature-card.featured {
  grid-column: span 1;
  border-color: var(--copper);
  background: linear-gradient(135deg, white 0%, rgba(184, 113, 42, 0.03) 100%);
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(184, 113, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-bullets li {
  font-size: 13px;
  color: var(--slate-light);
  padding-left: 16px;
  position: relative;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
}
.feature-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--copper);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: var(--section-py) 40px;
  background: white;
}
.how-inner { max-width: var(--max-w); margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 72px; }
.how-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.25;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--slate); line-height: 1.7; }
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 48px;
  flex-shrink: 0;
}
.step-visual { display: flex; }
.step-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.step-icon {
  width: 36px; height: 36px;
  background: rgba(184, 113, 42, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-file { display: flex; flex-direction: column; }
.file-ext {
  font-size: 10px;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.06em;
}
.file-name { font-size: 13px; font-weight: 500; color: var(--navy); }
.questionnaire { flex-direction: column; gap: 10px; min-width: 220px; }
.q-item { display: flex; flex-direction: column; gap: 4px; }
.q-label { font-size: 10px; font-weight: 600; color: var(--slate-light); letter-spacing: 0.06em; text-transform: uppercase; }
.q-field {
  height: 28px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  background: white;
}
.q-field.filled {
  border-style: solid;
  border-color: var(--copper);
  background: rgba(184, 113, 42, 0.04);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 13px;
  color: var(--navy);
}
.step-card.outcome { min-width: 220px; }
.outcome-doc { display: flex; flex-direction: column; gap: 8px; }
.outcome-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--copper);
}
.outcome-name { font-size: 12px; color: var(--slate); }

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-py) 40px;
  background: var(--ivory);
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}
.pricing-sub { font-size: 17px; color: var(--slate); line-height: 1.7; }
.pricing-card {
  max-width: 560px;
  margin: 0 auto 72px;
  background: white;
  border-radius: 24px;
  border: 1.5px solid var(--navy);
  padding: 48px;
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.1);
}
.pricing-tier {}
.tier-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.tier-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period { font-size: 17px; color: var(--slate); }
.tier-desc { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 32px; }
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.tier-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
}
.check { flex-shrink: 0; }
.pricing-note {
  font-size: 13px;
  color: var(--slate-light);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.pricing-comparison {}
.comparison-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  text-align: center;
  margin-bottom: 24px;
}
.comparison-table {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.comp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--navy);
  padding: 12px 20px;
}
.comp-header .comp-col {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}
.comp-col.our { color: var(--copper-light); }
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:nth-child(even) { background: rgba(245,242,238,0.5); }
.comp-feature { font-size: 13px; color: var(--slate); }
.comp-val { font-size: 13px; color: var(--slate-light); text-align: center; }
.comp-val.highlight { color: var(--navy); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-py) 40px;
  background: var(--navy);
}
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}
.quote-mark { margin-bottom: 16px; }
.quote-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.attribution-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.attribution-detail { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(184,113,42,0.06) 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 40px;
}
.closing-cta {}
.cta-text {
  font-size: 14px;
  color: var(--slate-light);
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 40px 40px;
  background: var(--navy);
  color: white;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .doc-card { width: 100%; max-width: 380px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .step:first-child, .step:last-child { padding: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .comparison-table { font-size: 12px; }
  .comp-header, .comp-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --section-py: 72px; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 120px 20px 72px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .comp-header, .comp-row { grid-template-columns: 1fr 1fr; }
  .comp-col:nth-child(3), .comp-col:nth-child(4),
  .comp-row > div:nth-child(3), .comp-row > div:nth-child(4) { display: none; }
}

/* ===== WHY PAGE ===== */
.why-hero {
  position: relative;
  padding: 160px 40px 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}
.why-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.why-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.why-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}
.why-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 680px;
}
.why-hero-sub {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 16px;
}
.why-hero-sub:last-of-type { margin-bottom: 40px; }
.why-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
}
.btn-primary.btn-large {
  font-size: 16px;
  padding: 16px 32px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--slate);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ===== WHY PILLARS ===== */
.why-pillars {
  padding: var(--section-py) 40px;
  background: white;
}
.why-pillars-inner { max-width: var(--max-w); margin: 0 auto; }
.why-pillars-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.why-pillars-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 540px;
}
.why-pillars-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 72px;
}
.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-pillar {
  background: var(--ivory);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 36px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.08);
}
.why-pillar.pillar-featured {
  background: linear-gradient(135deg, rgba(184,113,42,0.04) 0%, white 100%);
  border-color: var(--copper);
}
.why-pillar-icon { margin-bottom: 20px; }
.why-pillar-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--copper);
  opacity: 0.5;
  margin-bottom: 12px;
}
.why-pillar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.why-pillar-body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
}
.why-pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.why-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(184, 113, 42, 0.08);
  color: var(--copper);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* ===== WHY COMPARISON ===== */
.why-comparison {
  padding: var(--section-py) 40px;
  background: var(--navy);
  color: white;
}
.why-comparison-inner { max-width: var(--max-w); margin: 0 auto; }
.why-comp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.why-comp-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 16px;
}
.why-comp-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 56px;
}
.why-comp-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.comp-header-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  padding: 14px 24px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}
.comp-h-feature {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.comp-h-other {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
.comp-h-us {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-light);
  text-align: center;
}
.why-comp-table .comp-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
  gap: 16px;
}
.why-comp-table .comp-row:last-child { border-bottom: none; }
.why-comp-table .comp-row.alt { background: rgba(255,255,255,0.02); }
.comp-feature-text { font-size: 14px; color: rgba(255,255,255,0.8); }
.comp-val-check, .comp-val-x { text-align: center; }
.comp-val-check-us { text-align: center; }
.comp-val-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.comp-val-text-bold {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-weight: 500;
}
.comp-val-us-bold {
  font-size: 13px;
  color: var(--copper-light);
  text-align: center;
  font-weight: 700;
}
.highlight-row {
  background: rgba(184,113,42,0.12) !important;
  border-top: 1px solid rgba(184,113,42,0.2);
}

/* ===== WHY CTA ===== */
.why-cta {
  padding: var(--section-py) 40px;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(184,113,42,0.06) 100%);
  text-align: center;
}
.why-cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.why-cta-decoration {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(184,113,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.why-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.why-cta-body {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 40px;
}
.why-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.why-cta-note {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 4px;
}

/* ===== WHY FOOTER (inline on page) ===== */
.footer-brand .footer-tagline { max-width: 300px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .why-pillars-grid { grid-template-columns: 1fr; }
  .why-comp-table { font-size: 12px; }
  .comp-header-row,
  .why-comp-table .comp-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --section-py: 72px; }
  .nav-inner { padding: 14px 20px; }
  .why-hero { padding: 120px 20px 72px; }
  .why-hero-actions { flex-direction: column; align-items: flex-start; }
  .comp-header-row,
  .why-comp-table .comp-row { grid-template-columns: 1fr 1fr; }
  .comp-h-other, .comp-h-us { display: none; }
  .why-comp-table .comp-row > span:nth-child(3),
  .why-comp-table .comp-row > span:nth-child(4) { display: none; }
}