/* ============================================================
   Offer Now Michigan · Portfolio Services
   Shared stylesheet for all pages
   ============================================================ */

:root {
  --navy: #0B1426;
  --navy-2: #14213D;
  --navy-3: #1E3057;
  --cream: #FAF8F3;
  --cream-2: #F2EDE0;
  --border: #E8E2D5;
  --gold: #C9A961;
  --gold-dark: #A88A4A;
  --gold-light: #E5D29A;
  --text-light: #F5EFE0;
  --text-light-muted: #B6AE9A;
  --text-dark: #0B1426;
  --text-muted: #3F4B5C;
  --shadow-md: 0 8px 30px rgba(11, 20, 38, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 20, 38, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.eyebrow.on-dark { color: var(--gold); }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 20, 38, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  line-height: 1.2;
}
.logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 500;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold);
  transition: all 0.2s;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-light); border-color: var(--gold-light); }
.menu-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(11, 20, 38, 0.95) 0%, rgba(11, 20, 38, 0.5) 35%, rgba(11, 20, 38, 0) 60%),
    url('hero-michigan.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--text-light);
  padding: 11rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.hero.compact { padding: 9rem 2rem 4.5rem; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.4;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: end;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  margin: 1.2rem 0 1.8rem;
  color: var(--cream);
}
.hero.compact h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  max-width: 620px;
  margin-bottom: 2.6rem;
  line-height: 1.7;
}
.hero-meta {
  border-left: 1px solid rgba(201, 169, 97, 0.3);
  padding-left: 2rem;
  padding-bottom: 0.5rem;
}
.hero-meta-item { margin-bottom: 1.6rem; }
.hero-meta-item:last-child { margin-bottom: 0; }
.hero-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.hero-meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
}

/* ===== AUDIENCE CARDS ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.audience-card {
  background: rgba(20, 33, 61, 0.6);
  border: 1px solid rgba(201, 169, 97, 0.25);
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  color: var(--cream);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  position: relative;
}
.audience-card:hover {
  background: rgba(30, 48, 87, 0.85);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.audience-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.audience-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.audience-card-desc {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}
.audience-card-arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.5rem;
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.2s;
}
.audience-card:hover .audience-card-arrow { transform: translateX(4px); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-2);
  color: var(--text-light);
  padding: 2.2rem 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item .trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.trust-item .trust-label {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== SECTIONS ===== */
section { padding: 6.5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0.8rem 0 1rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== SERVICE PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pillar {
  background: white;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: all 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.pillar:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
}
.pillar h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}
.pillar-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.pillar p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.pillar-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  align-self: flex-start;
  transition: gap 0.2s;
}
.pillar:hover .pillar-link { gap: 0.8rem; }

/* ===== APPROACH BAND ===== */
.approach-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.approach-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.approach-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== WORKED EXAMPLE BOXES ===== */
.example {
  background: white;
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin: 2rem 0;
  border-left: 3px solid var(--gold);
  position: relative;
}
.example.dark {
  background: var(--navy-2);
  color: var(--text-light);
  border-color: var(--navy-3);
  border-left-color: var(--gold);
}
.example-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.example h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.example .example-sub {
  color: #2A3340;
  margin-bottom: 1.8rem;
}
.example.dark .example-sub { color: var(--text-light-muted); }
.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.example.dark .example-grid {
  border-color: var(--navy-3);
}
.example-input,
.example-output {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.example-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.4rem;
}
.example.dark .example-row { border-color: var(--navy-3); }
.example-row.highlight {
  border-bottom: 2px solid var(--gold);
  font-weight: 600;
  padding-top: 0.4rem;
  font-size: 1.05rem;
}
.example-row .label { color: #2A3340; }
.example.dark .example-row .label { color: var(--text-light-muted); }
.example-row .value {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--navy);
}
.example.dark .example-row .value { color: var(--cream); }
.example-takeaway {
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--gold);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #2A3340;
  font-style: italic;
}
.example.dark .example-takeaway {
  background: var(--navy);
  color: var(--text-light-muted);
}
.example-col-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.example.dark .example-col-label { color: var(--gold); }

/* Valuation vs Market callout */
.valuation-highlights {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 1.4rem;
  background: rgba(201, 169, 97, 0.10);
  border: 1px solid var(--gold);
}
.example.dark .valuation-highlights {
  background: rgba(201, 169, 97, 0.08);
  border-color: rgba(201, 169, 97, 0.45);
}
.valuation-cell { text-align: center; padding: 0 1rem; }
.valuation-cell:nth-child(2) {
  border-left: 1px solid rgba(201, 169, 97, 0.35);
  border-right: 1px solid rgba(201, 169, 97, 0.35);
}
.valuation-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.example.dark .valuation-label { color: var(--gold); }
.valuation-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
}
.example.dark .valuation-value { color: var(--cream); }
.valuation-value.featured {
  color: var(--gold-dark);
  font-weight: 600;
}
.example.dark .valuation-value.featured { color: var(--gold); }
.valuation-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.example.dark .valuation-sub { color: var(--text-light-muted); }
@media (max-width: 700px) {
  .valuation-highlights { grid-template-columns: 1fr; padding: 1rem; }
  .valuation-cell { padding: 1rem 0; }
  .valuation-cell:nth-child(2) {
    border-left: none; border-right: none;
    border-top: 1px solid rgba(201,169,97,0.25);
    border-bottom: 1px solid rgba(201,169,97,0.25);
  }
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
}
.compare-table thead th.featured {
  background: var(--gold);
  color: var(--navy);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
  width: 28%;
}
.compare-table .check { color: #4A8C4A; font-weight: 700; }
.compare-table .x { color: #B85450; font-weight: 700; }

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin: 2rem 0;
}
.feature {
  padding: 1.4rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}
.feature-grid.dark .feature {
  background: var(--navy-2);
  color: var(--text-light);
}
.feature-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.feature-grid.dark .feature-desc { color: var(--text-light-muted); }

/* ===== AUDIENCE PILLS ===== */
.audience-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.audience-pill {
  background: var(--cream-2);
  color: var(--text-dark);
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ===== PROCESS LIST (accordion) ===== */
.process-list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.process-step {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  cursor: pointer;
}
.process-step-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-dark);
  font-weight: 500;
  min-width: 32px;
  padding-top: 2px;
}
.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  flex-grow: 1;
}
.process-step-toggle {
  color: var(--gold-dark);
  font-size: 1.3rem;
  transition: transform 0.3s;
  line-height: 1;
}
.process-step.open .process-step-toggle { transform: rotate(45deg); }
.process-step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
}
.process-step.open .process-step-body {
  max-height: 500px;
  margin-top: 1rem;
}
.process-step-body-inner {
  padding-left: calc(32px + 1.2rem);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.6rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-toggle {
  color: var(--gold-dark);
  font-size: 1.4rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 420px; padding-bottom: 1.4rem; }

/* ===== INLINE CTA BAND ===== */
.cta-band {
  background: var(--navy);
  color: var(--text-light);
  padding: 4.5rem 2rem;
  text-align: center;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.cta-band p {
  color: var(--text-light-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
}
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 1rem 2.4rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.cta-button:hover { background: var(--gold-light); }
.cta-button.outlined {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  margin-left: 1rem;
}
.cta-button.outlined:hover { background: var(--gold); color: var(--navy) !important; }

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.two-col-left { position: sticky; top: 6rem; }
.two-col h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin: 0.8rem 0 1.4rem;
}
.two-col .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===== SERVICE DETAIL SECTION (homepage) ===== */
.service-section {
  background: white;
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
}
.service-section.dark {
  background: var(--navy);
  color: var(--text-light);
  border-top-color: var(--navy-3);
}
.service-section.dark .lead { color: var(--text-light-muted); }
.service-section.dark .audience-pill {
  background: var(--navy-3);
  color: var(--text-light);
  border-color: rgba(201, 169, 97, 0.3);
}
.service-section.dark .feature {
  background: var(--navy-2);
  color: var(--text-light);
}
.service-section.dark .feature-desc { color: var(--text-light-muted); }
.service-section.dark .process-list { border-top-color: var(--navy-3); }
.service-section.dark .process-step { border-bottom-color: var(--navy-3); }
.service-section.dark .process-step-num { color: var(--gold); }
.service-section.dark .process-step-toggle { color: var(--gold); }
.service-section.dark .process-step-body-inner { color: var(--text-light-muted); }
.service-section.dark .eyebrow { color: var(--gold); }
.service-section .section-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap 0.2s;
}
.service-section.dark .section-link { color: var(--gold); }
.service-section .section-link:hover { letter-spacing: 0.02em; }

/* ===== CONTACT ===== */
#contact, .contact-section {
  background: var(--navy);
  color: var(--text-light);
  padding: 7rem 2rem;
}
.contact-section .section-header p { color: var(--text-light-muted); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin: 0.8rem 0 1.2rem;
  color: var(--cream);
}
.contact-info p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}
.contact-detail {
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--navy-3);
}
.contact-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-detail-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
}
.contact-form {
  background: var(--navy-2);
  padding: 2.5rem;
  border: 1px solid var(--navy-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--navy-3);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.audience-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.audience-radio { position: relative; }
.audience-radio input { position: absolute; opacity: 0; }
.audience-radio label {
  display: block;
  padding: 0.85rem 0.7rem;
  background: var(--navy);
  border: 1px solid var(--navy-3);
  color: var(--text-light-muted);
  text-align: center;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s;
  margin-bottom: 0;
  line-height: 1.3;
}
.audience-radio input:checked + label {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.submit-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.submit-btn:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
  background: #050B16;
  color: var(--text-light-muted);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--navy-3);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-tagline {
  color: var(--text-light-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid var(--navy-3);
  color: var(--text-light-muted);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.scroll-target { scroll-margin-top: 80px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  nav .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-top: 1px solid var(--navy-3);
  }
  .hero { padding: 9rem 1.5rem 5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-meta { border-left: none; border-top: 1px solid rgba(201,169,97,0.2); padding: 1.5rem 0 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pillars { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-left { position: static; }
  .approach-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr; gap: 1rem; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.7rem 0.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .audience-radio-group { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  section { padding: 4.5rem 1.5rem; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2.2rem; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-button.outlined { margin-left: 0; margin-top: 0.8rem; }
}
