/* Modern CSS Reset & Base Styles */
:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #fecaca;
  --secondary: #1e293b;
  --secondary-light: #334155;
  --accent: #ea580c;
  --light: #f8fafc;
  --light-gray: #e2e8f0;
  --medium-gray: #94a3b8;
  --dark-gray: #475569;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--secondary);
  background-color: var(--light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
  position: relative;
}

/* Brand/Logo Styling */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary);
  gap: 8px;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

/* Hide the text if you want only the logo */
.brand-text {
  display: none;
}

/* If you want both logo and text */
.brand .logo {
  margin-right: 10px;
}

.brand .brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav a:hover {
  color: var(--primary);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
  margin-left: 1rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.nav-cta::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .container > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.highlight-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Form Styling */
form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  opacity: 0.1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-grid label:nth-child(1),
.form-grid label:nth-child(2),
.form-grid label:nth-child(3) {
  grid-column: span 1;
}

.form-grid label:nth-child(4),
.form-grid label:nth-child(5),
.form-grid label:nth-child(6),
.form-grid label:nth-child(7),
.form-grid label:nth-child(8),
.form-grid label:nth-child(9) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid label {
    grid-column: span 1 !important;
  }
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--secondary);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

button[type="submit"] {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* FIXED: Changed from '?' to right arrow */
button[type="submit"]::after {
  content: ' ';
  font-size: 1.25rem;
  transition: var(--transition);
}

button[type="submit"]:hover::after {
  transform: translateX(4px);
}

.note {
  font-size: .875rem;
  color: var(--medium-gray);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* Result Message */
.result {
  background: linear-gradient(135deg, var(--success), #10b981);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  display: none;
  box-shadow: var(--shadow-md);
}

.result.show {
  display: block;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* How It Works Section */
.step-icon img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.how {
  padding: 6rem 0;
  background-color: var(--white);
}

.how h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.how h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step-counter;
}

.step {
  background: var(--light);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.step h3 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.step p {
  color: var(--dark-gray);
  font-size: 1rem;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: var(--light);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--white);
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.25rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  transition: var(--transition);
  margin-top: 1rem;
}

.contact-email:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: var(--light-gray);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-links {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--medium-gray);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom small {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.footer-links-bottom {
  display: flex;
  gap: 1.5rem;
}

.footer-links-bottom a {
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.footer-links-bottom a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-column: span 1;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-cta {
    margin-left: 0;
    text-align: center;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .how-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  form {
    padding: 1.5rem;
  }
  
  .step {
    padding: 2rem 1.5rem;
  }
}
/* Ensure form success messages are visible */
form .result {
  position: relative;
  z-index: 5;
}
.assessor-benefits ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.assessor-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}
/* ================================
   Guides / Resources Page Tweaks
   ================================ */

.guides .guide-item h2 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  font-weight: 600;
  display: block;
}

.guides .guide-item h2::after {
  display: none; /* remove decorative underline */
}

.guides .guide-item h2 a {
  color: var(--primary-dark);
  text-decoration: none;
}

.guides .guide-item h2 a:hover {
  text-decoration: underline;
}
/* ===== Guides section ===== */

.guides {
  padding: 3rem 0;
  background: #f9fafb;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Individual guide card */
.guide-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.guide-item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Headings */
.guide-item h2 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.guide-item h2 a {
  color: #111827;
  text-decoration: none;
}

.guide-item h2 a:hover {
  text-decoration: underline;
}

/* Descriptions */
.guide-item p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0.25rem 0 0;
}

/* Notes inside cards */
.guide-item p strong {
  color: #111827;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .guides {
    padding: 2rem 0;
  }
}
/* ================================
   Assessor Sign-Up Page Enhancements
   ================================ */

/* Assessor Hero / Header */
.assessor-header {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  border-bottom: 1px solid var(--light-gray);
}

.assessor-header h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.assessor-header p {
  max-width: 760px;
  font-size: 1.125rem;
  color: var(--dark-gray);
}

/* Top Feature Cards */
.assessor-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.assessor-feature {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.assessor-feature h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.assessor-feature svg {
  color: var(--primary);
}

/* Stats Section */
.assessor-stats {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

/* Main Two Column Layout */
.assessor-content {
  padding: 5rem 0;
  background: var(--light);
}

.assessor-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .assessor-inner {
    grid-template-columns: 1fr;
  }
}

/* Benefits List Refinement */
.assessor-benefits ul {
  margin-top: 2rem;
}

.assessor-benefits li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.assessor-benefits li:last-child {
  border-bottom: none;
}

.benefit-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

/* Process Steps (Professional Timeline Look) */
.process-steps-section {
  margin-top: 3.5rem;
}

.process-steps-container {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.process-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Assessor Form Card */
.assessor-form-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem;
  position: sticky;
  top: 2rem;
}

.assessor-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Form Note */
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

.form-note a {
  color: var(--primary);
  font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .assessor-header {
    padding: 3.5rem 0 3rem;
  }

  .assessor-header h1 {
    font-size: 2.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .assessor-form-container {
    position: static;
  }
}
@media (prefers-color-scheme: dark) {

  /* Core colours */
  body {
    background-color: #0f172a;
    color: #e5e7eb;
  }

  /* Headings — THIS fixes the visibility issue */
  h1, h2, h3, h4 {
    color: #ffffff;
  }

  /* Paragraphs & general text */
  p,
  li,
  label,
  small,
  .note {
    color: #d1d5db;
  }

  /* Sections that were white */
  .how,
  .faq,
  .contact,
  .assessor-content,
  .guides {
    background-color: #020617;
  }

  /* Cards */
  .step,
  .faq-item,
  .guide-item,
  .assessor-feature,
  .process-step,
  .assessor-form-container {
    background-color: #020617;
    border-color: #1e293b;
  }

  /* Header / nav */
  .site-header {
    background-color: rgba(2, 6, 23, 0.95);
    box-shadow: none;
  }

  .nav a {
    color: #e5e7eb;
  }

  /* Forms */
  form {
    background-color: #020617;
  }

  input,
  select,
  textarea {
    background-color: #020617;
    color: #e5e7eb;
    border-color: #1e293b;
  }

  input::placeholder,
  textarea::placeholder {
    color: #94a3b8;
  }

  /* Footer already dark — just polish */
  .site-footer {
    background: #020617;
  }

}
