:root {
  --primary: #7cb933;
  --primary-dark: #5a8c25;
  --primary-soft: rgba(124, 185, 51, 0.12);
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --radius: 14px;
  --content: 1140px;
  --shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 36px, var(--content));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.topbar {
  background: #0f172a;
  color: #dbe4f2;
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 54px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.logo-text span {
  font-size: 1.16rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  color: #1f2937;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-soft);
  color: #0f172a;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(124, 185, 51, 0.3);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-weight: 700;
  transition: all 0.18s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(124, 185, 51, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #70ad2f;
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
}

.btn-ghost:hover {
  background: #f8fafc;
}

.hero {
  padding: 70px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  align-items: center;
}

.hero h1 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.list-card,
.timeline-item,
.quote-card,
.faq-item,
.legal-nav,
.reviews-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-card {
  border-radius: var(--radius);
  padding: 22px;
}

.section {
  padding: 58px 0;
}

.section-alt {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
}

.legal-subtitle {
  margin: 1.25em 0 0.5em;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius);
  padding: 20px;
}

.card-accent {
  border-left: 4px solid var(--primary);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: center;
}

.split-goettker {
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 32px;
}

@media (max-width: 520px) {
  .split-goettker {
    grid-template-columns: 1fr;
  }
  .goettker-portrait {
    justify-self: start;
  }
}

.goettker-portrait {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  width: 180px;
  max-width: 100%;
  flex-shrink: 0;
}

.goettker-portrait img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
}

.facts-strip {
  padding: 20px 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.fact-item {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(124, 185, 51, 0.22);
  background: linear-gradient(145deg, rgba(124, 185, 51, 0.14), rgba(124, 185, 51, 0.06));
}

.fact-item strong {
  display: block;
  font-size: 1.12rem;
}

.feature-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 800;
}

.steps-grid,
.review-cards,
.service-columns,
.contact-grid,
.image-row {
  display: grid;
  gap: 14px;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  background: #fff;
  border: 1px solid rgba(124, 185, 51, 0.24);
  border-radius: 12px;
  padding: 16px;
}

.step-number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 8px;
  background: rgba(124, 185, 51, 0.18);
  color: var(--primary-dark);
  font-weight: 800;
}

.media-panel {
  min-height: 240px;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, rgba(124, 185, 51, 0.18), rgba(15, 23, 42, 0.1));
  border: 1px solid rgba(124, 185, 51, 0.2);
}

.media-panel.image-panel {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.media-panel.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.media-panel.image-panel .overlay-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.64));
}

.service-columns {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.list-card {
  border-radius: 12px;
  padding: 16px;
}

.list-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.image-row {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-tile {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.image-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.image-tile .caption {
  padding: 10px 12px;
  font-size: 0.94rem;
  font-weight: 700;
}

.timeline {
  border-left: 3px solid rgba(124, 185, 51, 0.45);
  padding-left: 16px;
  display: grid;
  gap: 12px;
}

.timeline-item {
  border-radius: 12px;
  padding: 14px 16px;
}

.page-hero {
  padding: 40px 0 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.table th,
.table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.table th {
  background: rgba(124, 185, 51, 0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.contact-map {
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.review-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote-card {
  border-radius: 12px;
  padding: 16px;
}

.reviews-widget {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-placeholder {
  border-radius: var(--radius);
  padding: 38px 22px;
  max-width: 560px;
  text-align: center;
}

.reviews-placeholder a:not(.btn) {
  color: var(--primary-dark);
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(124, 185, 51, 0.28);
  padding: 14px 16px;
}

details.faq-item {
  padding: 0;
  overflow: hidden;
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  padding-right: 44px;
  font-weight: 700;
  position: relative;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.16rem;
  color: var(--primary-dark);
}

details.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  padding: 0 16px 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
}

.legal-nav {
  border-radius: 12px;
  padding: 14px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: #334155;
}

.cta-strip {
  background: #111827;
  color: #fff;
  padding: 44px 0;
}

.cta-strip .btn-ghost {
  background: rgba(124, 185, 51, 0.2);
  border-color: rgba(124, 185, 51, 0.5);
  color: #edfbe2;
}

footer {
  margin-top: 28px;
  background: #0b1737;
  color: #dce4f2;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.footer-grid a {
  color: #dce4f2;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 228, 242, 0.12);
  padding: 14px 0;
  margin-top: 24px;
  width: 100%;
}

.footer-bottom .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.footer-powered {
  font-size: 0.9rem;
  color: rgba(220, 228, 242, 0.75);
  padding-right: 35px;
}

.footer-powered .wowobot-link {
  color: #22b8e0 !important;
  text-decoration: none;
  font-weight: 600;
}

.footer-powered .wowobot-link:hover {
  color: #4dd4f7 !important;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-bottom .container {
    justify-content: center;
  }
  .footer-powered {
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

/* Premium cleanup override */
:root {
  --text: #111827;
  --muted: #6b7280;
  --bg: #f8fafc;
  --surface: #ffffff;
  --border: #e5e7eb;
  --radius: 10px;
  --shadow: none;
  --shadow-sm: none;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
}

.topbar {
  background: #0f172a;
}

.nav-links a {
  background: transparent;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  padding: 8px 6px;
}

.nav-links a:hover,
.nav-links a.active {
  background: transparent;
  border-bottom-color: var(--primary);
}

.pill {
  background: transparent;
  border: 1px solid var(--border);
  color: #374151;
}

.hero,
.section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.section-alt {
  background: #ffffff;
}

.facts-strip {
  display: none;
}

.hero-card,
.card,
.list-card,
.timeline-item,
.quote-card,
.faq-item,
.legal-nav,
.reviews-placeholder,
.image-tile,
.table,
.contact-map {
  border: 1px solid var(--border);
  box-shadow: none;
  border-radius: var(--radius);
}

.card-accent {
  border-left: 3px solid var(--primary);
}

.btn {
  border-radius: 8px;
  font-size: 0.94rem;
}

.btn-primary {
  background: var(--primary);
  box-shadow: none;
}

.btn-primary:hover {
  background: #6eaa30;
  transform: none;
}

.btn-ghost {
  background: #fff;
  border-color: #d1d5db;
}

.hero-photo,
.media-panel.image-panel img {
  border-radius: var(--radius);
}

.media-panel {
  background: #f3f4f6;
  border: 1px solid var(--border);
}

.media-panel.image-panel .overlay-text {
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.62));
}

.step-card {
  border: 1px solid var(--border);
  background: #fff;
}

.step-number {
  background: #eef6e2;
}

.faq-item {
  border-color: #d1d5db;
}

details.faq-item summary::after {
  color: #374151;
}

.cta-strip {
  background: #111827;
  color: #f9fafb;
}

.cta-strip .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #f9fafb;
}

footer {
  background: #0f172a;
  margin-top: 0;
}

/* Direction B: modern-premium */
:root {
  --radius: 16px;
  --border: rgba(15, 23, 42, 0.09);
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
  --shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

body {
  background:
    radial-gradient(circle at 85% -10%, rgba(124, 185, 51, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #f6f8fb 45%, #f8fafc 100%);
}

.topbar {
  background: linear-gradient(90deg, #0f172a, #1f2937);
}

header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.nav-links a {
  border-bottom: 2px solid transparent;
  transition: border-color 0.16s ease, color 0.16s ease;
}

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

.hero,
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-title {
  letter-spacing: -0.02em;
}

.facts-strip {
  display: block;
  padding: 22px 0;
}

.hero-card,
.card,
.list-card,
.timeline-item,
.quote-card,
.faq-item,
.legal-nav,
.reviews-placeholder,
.image-tile,
.table,
.contact-map {
  box-shadow: var(--shadow-sm);
}

.card:hover,
.list-card:hover,
.quote-card:hover,
.image-tile:hover {
  transform: translateY(-2px);
  transition: transform 0.18s ease;
}

.btn {
  border-radius: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #7cb933 0%, #6da52f 100%);
  box-shadow: 0 12px 24px rgba(124, 185, 51, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #73ad31 0%, #64992b 100%);
}

.hero-photo {
  height: 320px;
  box-shadow: var(--shadow);
}

.media-panel {
  box-shadow: var(--shadow-sm);
}

.media-panel.image-panel img {
  min-height: 300px;
  filter: saturate(1.05) contrast(1.03);
}

.media-panel.image-panel .overlay-text {
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.74));
}

.image-tile img {
  height: 220px;
}

.step-card {
  box-shadow: var(--shadow-sm);
}

.cta-strip {
  background: linear-gradient(120deg, #0f172a, #111827 48%, #1b2b4a);
}

footer {
  background: linear-gradient(180deg, #0b1737 0%, #0a142e 100%);
}

/* Header with background image only on start page */
.home-page .topbar {
  display: none;
}

.home-page header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  z-index: 30;
  padding-top: 16px;
}

.home-page .nav {
  background: transparent;
  border: none;
  box-shadow: none;
}

.home-page .logo-text small,
.home-page .logo-text span,
.home-page .nav-links a {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-page .nav-links a {
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 8px 6px;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  background: transparent;
  border-bottom-color: #ffffff;
}

.home-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 170px 0 100px;
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.6)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.72));
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(2px);
}

.home-hero-content .pill {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #f8fafc;
}

.home-hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.07;
  margin: 14px 0;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}

.home-hero-content p {
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.96);
  max-width: 640px;
  font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.home-page .home-hero .btn-primary {
  background: #ffffff;
  color: #0f172a;
}

.home-page .home-hero .btn-primary:hover {
  background: #f3f4f6;
}

.home-page .home-hero .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

@media (max-width: 900px) {
  .home-page header {
    padding-top: 8px;
  }

  .home-page .nav {
    padding: 8px 0;
  }

  .home-page .nav-links a {
    padding: 7px 6px;
  }
}

/* Whole-site theme: match header style + color scheme */
:root {
  --text: #e5e7eb;
  --muted: #b8c0cc;
  --bg: #0b1220;
  --surface: #111a2e;
  --border: rgba(148, 163, 184, 0.28);
  --primary: #7cb933;
  --primary-dark: #9ad65a;
  --primary-soft: rgba(124, 185, 51, 0.16);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 90% -10%, rgba(124, 185, 51, 0.16), transparent 36%),
    radial-gradient(circle at 0% 30%, rgba(56, 189, 248, 0.09), transparent 34%),
    #0b1220;
}

.muted {
  color: var(--muted);
}

.topbar {
  background: linear-gradient(90deg, #0a1020, #121c35);
  color: #dbe4f2;
}

header {
  background: rgba(11, 18, 32, 0.84);
  border-bottom: 1px solid rgba(124, 185, 51, 0.28);
  backdrop-filter: blur(12px);
}

.nav {
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo-text small {
  color: #9ca3af;
}

.logo-text span {
  color: #ffffff;
}

.nav-links a {
  color: #d1d5db;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: transparent;
  border-bottom-color: var(--primary);
}

.section-alt {
  background: rgba(17, 26, 46, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-card,
.card,
.list-card,
.timeline-item,
.quote-card,
.faq-item,
.legal-nav,
.reviews-placeholder,
.image-tile,
.table,
.contact-map,
.step-card {
  background: rgba(17, 26, 46, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.card-accent {
  border-left: 3px solid var(--primary);
}

.pill {
  color: #eef7e5;
  border-color: rgba(124, 185, 51, 0.46);
  background: rgba(124, 185, 51, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #7cb933, #6ba42d);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(124, 185, 51, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #72ad31, #62972a);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(229, 231, 235, 0.38);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fact-item {
  background: linear-gradient(145deg, rgba(124, 185, 51, 0.18), rgba(124, 185, 51, 0.08));
  border: 1px solid rgba(124, 185, 51, 0.34);
}

.fact-item strong {
  color: #ffffff;
}

.feature-list li::before {
  color: #a3e06a;
}

.step-number {
  color: #0f172a;
  background: #b4e17f;
}

.media-panel {
  background: linear-gradient(145deg, rgba(124, 185, 51, 0.22), rgba(15, 23, 42, 0.45));
  border-color: rgba(124, 185, 51, 0.28);
}

.image-tile .caption {
  color: #e5e7eb;
}

.table th {
  background: rgba(124, 185, 51, 0.24);
}

.table th,
.table td {
  border-bottom: 1px solid var(--border);
}

.legal-nav a {
  color: #d1d5db;
}

details.faq-item summary::after {
  color: #b9df86;
}

.home-page .topbar {
  display: block;
}

.home-page header {
  position: sticky;
  background: rgba(11, 18, 32, 0.84);
  border-bottom: 1px solid rgba(124, 185, 51, 0.28);
  backdrop-filter: blur(12px);
  padding-top: 0;
}

.home-page .logo-text small,
.home-page .logo-text span,
.home-page .nav-links a {
  color: #d1d5db;
  text-shadow: none;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  color: #ffffff;
  border-bottom-color: var(--primary);
}

.home-hero {
  min-height: 76vh;
  padding-top: 120px;
}

.home-hero::before {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.76));
}

.home-hero-content {
  background: rgba(11, 18, 32, 0.52);
  border-color: rgba(124, 185, 51, 0.34);
}

.home-hero-content .pill {
  background: rgba(124, 185, 51, 0.22);
  border-color: rgba(124, 185, 51, 0.55);
}

.home-page .home-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
}

.cta-strip,
footer {
  background: linear-gradient(120deg, #0b1220, #101a31 50%, #15223f);
}

/* Global menu behavior for all pages and variants in this file */
header,
.home-page header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
  backdrop-filter: none !important;
  padding-top: 0 !important;
}

.nav,
.home-page .nav {
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  padding: 12px 0 !important;
}

.logo-text small,
.home-page .logo-text small {
  color: #64748b !important;
  text-shadow: none !important;
}

.logo-text span,
.home-page .logo-text span {
  color: #5a8c25 !important;
  text-shadow: none !important;
}

.nav-links a,
.home-page .nav-links a {
  color: #1f2937 !important;
  text-shadow: none !important;
  background: transparent !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 8px 6px !important;
}

.nav-links a:hover,
.nav-links a.active,
.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  color: #0f172a !important;
  border-bottom-color: #7cb933 !important;
}

/* Dark version readability fixes */
.media-panel strong,
.media-panel p,
.media-panel .muted {
  color: #f3f4f6 !important;
}

.card .muted,
.list-card .muted,
.quote-card .muted,
.timeline-item .muted,
.faq-item .muted,
.step-card .muted {
  color: #dbe3ee;
}

.table td,
.table th {
  color: #f1f5f9;
}
