/* ==========================================================
   ODIN SYSTEMS — MAIN STYLESHEET
   ========================================================== */

/* 1. CSS Custom Properties
   ========================================================== */
:root {
  --navy:        #0A1628;
  --navy-800:    #0F2040;
  --navy-700:    #142850;
  --navy-600:    #1a3060;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --gold:        #C9A84C;
  --gold-light:  #D4B86A;
  --gold-pale:   rgba(201, 168, 76, 0.10);
  --gold-border: rgba(201, 168, 76, 0.25);
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-700:    #374151;
  --gray-900:    #111827;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --pad-x: 24px;
  --section-v: 96px;

  --shadow-sm: 0 1px 3px rgba(10,22,40,.08), 0 1px 2px rgba(10,22,40,.05);
  --shadow-md: 0 4px 16px rgba(10,22,40,.10), 0 2px 6px rgba(10,22,40,.06);
  --shadow-lg: 0 16px 48px rgba(10,22,40,.14), 0 4px 12px rgba(10,22,40,.08);
  --shadow-gold: 0 4px 24px rgba(201,168,76,.22);

  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* 2. Reset & Base
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

/* 3. Layout
   ========================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section       { padding: var(--section-v) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--gray { background: var(--gray-50); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }

/* 4. Typography Utilities
   ========================================================== */
.display {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.heading-xl {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.heading-md { font-size: 1.375rem; line-height: 1.3; }
.heading-sm { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; }

.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.55; }

.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--gray-500); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header p { font-size: 1.0625rem; color: var(--gray-500); margin-top: 14px; line-height: 1.7; }
.section--dark .section-header p { color: rgba(255,255,255,.6); }

/* 5. Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background-color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* Arrow icon inside button */
.btn .arrow { transition: transform var(--t-base) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* 6. Header / Navigation
   ========================================================== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

.header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo { display: flex; align-items: center; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-tagline {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.015em;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base) var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: background-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-base) var(--ease);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. Footer
   ========================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo-name { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,.45); max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,.55); transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.35); }

/* 8. Hero (Homepage)
   ========================================================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow */
.hero::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(201,168,76,.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  max-width: 660px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  display: block;
}
.hero-trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
}

/* 9. Differentiator Section
   ========================================================== */
.diff-section { padding: var(--section-v) 0; }

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.diff-card-bar {
  width: 52px; height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
  position: relative;
}
.diff-card h3 { color: var(--white); font-size: 1.375rem; margin-bottom: 14px; position: relative; }
.diff-card p { color: rgba(255,255,255,.62); font-size: 0.9375rem; line-height: 1.7; position: relative; }
.diff-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  position: relative;
}
.diff-card-pill svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }

.diff-text h2 { margin-bottom: 18px; }
.diff-text p { font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 20px; }
.diff-text p:last-of-type { margin-bottom: 32px; }

/* 10. Value Props
   ========================================================== */
.value-props { background: var(--gray-50); padding: var(--section-v) 0; }

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease),
              border-color var(--t-slow) var(--ease);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.value-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.value-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.value-card h3 { font-size: 1.0625rem; margin-bottom: 12px; color: var(--navy); }
.value-card p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.65; }

/* 11. Process Steps (Homepage mini)
   ========================================================== */
.process-mini { padding: var(--section-v) 0; }

.process-mini-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
  position: relative;
}
.process-mini-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.66% + 8px);
  right: calc(16.66% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  opacity: .2;
}

.process-step { text-align: center; }
.step-num-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 22px;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.section--dark .step-num-circle { background: var(--navy); }
.process-step h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.6; }
.section--dark .process-step p { color: rgba(255,255,255,.55); }
.section--dark .process-step h3 { color: var(--white); }

/* 12. Social Proof / Stats
   ========================================================== */
.stats-section {
  background: var(--navy);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 64px;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
}
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item span { font-size: 0.875rem; color: rgba(255,255,255,.5); }

.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; }
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 36px;
}
.testimonial-mark { font-size: 2.5rem; color: var(--gold); opacity: .5; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testimonial-card p { font-size: 0.9375rem; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9375rem;
}
.author-info strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--white); }
.author-info span { font-size: 0.8125rem; color: rgba(255,255,255,.4); }

/* 13. CTA Banner
   ========================================================== */
.cta-banner {
  padding: var(--section-v) 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: 1.0625rem; color: var(--gray-500); max-width: 560px; margin: 0 auto 40px; }

/* 14. Page Hero (inner pages)
   ========================================================== */
.page-hero {
  background: var(--navy);
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 72px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.page-hero--gray::after { background: var(--gray-50); }

.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero-inner .eyebrow { margin-bottom: 16px; }
.page-hero-inner h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.page-hero-inner p { font-size: 1.125rem; color: rgba(255,255,255,.65); line-height: 1.75; }

.page-hero--center .page-hero-inner { margin: 0 auto; text-align: center; }

/* 15. Services Page
   ========================================================== */
.services-list { padding: var(--section-v) 0; }

.service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 44px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
  margin-bottom: 24px;
}
.service-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.service-item:last-child { margin-bottom: 0; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.service-body h3 { font-size: 1.375rem; margin-bottom: 12px; color: var(--navy); }
.service-body p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 18px; }
.service-closer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.service-closer svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

/* 16. How It Works Page — detailed steps
   ========================================================== */
.steps-detailed { padding: var(--section-v) 0; }

.step-detailed {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.step-detailed:last-child { border-bottom: none; }

.step-indicator { display: flex; flex-direction: column; align-items: center; }
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.step-connector {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,.4), transparent);
  margin-top: 10px;
}

.step-body .step-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.step-body h3 { font-size: 1.625rem; margin-bottom: 16px; }
.step-body p { font-size: 1rem; color: var(--gray-500); line-height: 1.8; max-width: 640px; }

/* Comparison Table
   ========================================================== */
.comparison-section { padding: var(--section-v) 0; background: var(--gray-50); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9375rem;
}
.comp-table thead th {
  padding: 20px 28px;
  text-align: left;
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.comp-table thead th.th-odin { color: var(--gold); }
.comp-table thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.comp-table thead th:last-child { border-radius: 0 var(--radius-md) 0 0; }

.comp-table tbody tr { border-bottom: 1px solid var(--gray-100); }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--gray-50); }
.comp-table tbody td { padding: 18px 28px; color: var(--gray-700); }
.comp-table tbody td:first-child { font-weight: 600; color: var(--navy); }

.check { color: #16a34a; font-weight: 600; }
.check::before { content: '✓  '; }
.cross { color: var(--gray-400); }
.cross::before { content: '✕  '; }

/* 17. Pricing Page
   ========================================================== */
.pricing-section { padding: var(--section-v) 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 40px 36px;
  position: relative;
  transition: box-shadow var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.pricing-card.featured {
  border: 2px solid var(--gold);
  padding-top: 56px;
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.pricing-card h3 { font-size: 1.375rem; margin-bottom: 28px; }

.price-block {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-sup { font-size: 1.375rem; vertical-align: super; margin-right: 2px; }
.price-period { font-size: 0.875rem; color: var(--gray-500); margin-top: 6px; }
.price-note { font-size: 0.8125rem; color: var(--gold); font-weight: 600; margin-top: 4px; }

.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.45;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-best-for {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold);
}
.pricing-best-for strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.pricing-best-for p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.5; }

.pricing-callout {
  margin-top: 64px;
  padding: 52px 48px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pricing-callout h3 { color: var(--white); font-size: 1.625rem; margin-bottom: 12px; position: relative; }
.pricing-callout p { color: rgba(255,255,255,.58); font-size: 0.9375rem; max-width: 600px; margin: 0 auto 24px; position: relative; }
.pricing-callout a { position: relative; }

.pricing-callout-sub {
  display: block;
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  position: relative;
}
.pricing-callout-sub a { color: var(--gold); font-weight: 600; }
.pricing-callout-sub a:hover { text-decoration: underline; }

/* 18. About Page
   ========================================================== */
.about-mission { padding: var(--section-v) 0; }
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.mission-card blockquote {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
}
.mission-card blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  line-height: .4;
  display: block;
  margin-bottom: 16px;
}
.mission-card cite {
  font-style: normal;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  position: relative;
}

.about-text h2 { margin-bottom: 18px; }
.about-text p { font-size: 1rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 20px; }

.values-section { padding: var(--section-v) 0; background: var(--gray-50); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.value-item {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.value-item h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.value-item p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.65; }

.team-section { padding: var(--section-v) 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.team-avatar-wrap {
  height: 180px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-avatar-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.team-initials { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); position: relative; z-index: 1; }
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.team-role { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.team-info p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

.about-closing {
  padding: var(--section-v) 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-closing::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-closing-inner { position: relative; max-width: 700px; margin: 0 auto; }
.about-closing h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.about-closing p { color: rgba(255,255,255,.6); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 36px; }

/* 19. Contact Form
   ========================================================== */
.contact-section { padding: var(--section-v) 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}

.contact-sidebar h2 { margin-bottom: 16px; }
.contact-sidebar > p { font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.detail-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.detail-text strong { display: block; font-size: 0.875rem; color: var(--navy); font-weight: 700; margin-bottom: 2px; }
.detail-text span { font-size: 0.875rem; color: var(--gray-500); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.form-group label .req { color: var(--gold); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.10);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #ef4444; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.field-error { font-size: 0.8125rem; color: #ef4444; display: none; }
.form-group.show-error .field-error { display: block; }
.form-group.show-error input,
.form-group.show-error select,
.form-group.show-error textarea { border-color: #ef4444; }

.form-footer { margin-top: 32px; text-align: center; }
.form-note { font-size: 0.8125rem; color: var(--gray-400); margin-top: 14px; line-height: 1.55; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(22,163,74,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 28px; height: 28px; stroke: #16a34a; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 1.625rem; margin-bottom: 10px; }
.form-success p { color: var(--gray-500); font-size: 0.9375rem; line-height: 1.6; }

/* 20. Animations
   ========================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity .65s var(--ease);
}
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }
.delay-5 { transition-delay: .50s; }

/* 21. Misc Helpers
   ========================================================== */
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 24px; }
.divider--left { margin: 0 0 24px; }

.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* 22. Responsive
   ========================================================== */
@media (max-width: 1024px) {
  :root { --section-v: 72px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { gap: 16px; }

  .diff-inner,
  .about-mission-inner { grid-template-columns: 1fr; gap: 48px; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-v: 60px;
    --pad-x: 20px;
  }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,.4);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    background: none !important;
    padding: 13px 0 !important;
    color: var(--gold) !important;
    border-radius: 0 !important;
  }
  .nav-toggle { display: flex; }

  .grid-2, .grid-3, .values-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .process-mini-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-mini-grid::before { display: none; }

  .service-item { grid-template-columns: 1fr; padding: 32px 28px; }
  .service-icon { width: 56px; height: 56px; }

  .step-detailed { grid-template-columns: 56px 1fr; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr; }

  .hero-trust { gap: 24px; }
  .hero-trust-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }

  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .founder-card { grid-template-columns: 1fr !important; }

  .pricing-callout { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .btn-lg { padding: 16px 24px; font-size: 0.9375rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .pricing-card.featured { padding-top: 52px; }
}
