:root {
  --bg: #091009;
  --panel: #0f1711;
  --panel-soft: #141d16;
  --border: #233024;
  --text: #edf3ed;
  --muted: #94a293;
  --accent: #b8ff17;
  --accent-soft: rgba(184, 255, 23, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
  --font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth; /* disable default */
}

#home,
#features,
#about,
#pricing,
#booking,
#contact {
  scroll-margin-top: 94px;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(rgba(9, 16, 9, 0.95), rgba(9, 16, 9, 0.98)), var(--bg);
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.topbar,
.hero,
.section {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(12, 18, 12, 0.92);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.nav-link,
.nav-cta {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 6px;
  transition: color 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: translateY(4px) scaleX(0.42);
  transform-origin: center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-cta:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.nav-link.nav-press {
  animation: navPulse 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes navPulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta,
.btn-primary {
  color: #091009;
  background: var(--accent);
  transition: all 0.3s ease;

}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(184,255,23,0.35);
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 28px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 700;
}

h1 {
  max-width: 11ch;
  font-size: clamp(36px, 5vw, 62px);
}

.hero-text,
.feature-card p,
.step-card p,
.plan-list,
.field-row label,
.request-meta,
.request-notes,
.section-note,
.about-card p,
.contact-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.stat,
.feature-card,
.step-card,
.price-card,
.booking-form,
.request-board,
.hero-card,
.about-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.stat {
  padding: 14px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(184,255,23,0.5);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  display: grid;
  position: relative;
  transition: all 0.4s ease;
  will-change: transform;
  align-content: center;
  justify-items: center;
  gap: 16px;
  min-height: 340px;
  padding: 24px;
  background: radial-gradient(circle at top, rgba(184, 255, 23, 0.12), transparent 56%), var(--panel);
}

/* HOVER EFFECT */
.hero-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(184,255,23,0.2);
}

.hero-mark {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

.hero-card:hover .hero-mark {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(184,255,23,0.5));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(184,255,23,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card-copy {
  max-width: 32ch;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.section {
  margin-top: 24px;
  padding: 30px 40px;   /* reduce vertical space */
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* 🔥 THIS FIXES IT */
  text-align: left;          /* 🔥 important */
  gap: 8px;
  margin-bottom: 18px;
}

.section-head h2 {
  max-width: 600px;  /* prevents it from stretching too wide */
}

.feature-grid,
.pricing-grid,
.steps,
.about-grid,
.contact-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid,
.steps,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.price-card,
.step-card,
.about-card,
.contact-card {
  padding: 20px;
}

.feature-card h3,
.price-card .plan-name,
.step-card h3,
.about-card h3,
.contact-card h3,
.request-board-head h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.feature-card p,
.step-card p,
.request-notes,
.about-card p,
.contact-card p {
  font-size: 14px;
  line-height: 1.6;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.featured {
  border-color: rgba(184, 255, 23, 0.38);
  background: linear-gradient(180deg, rgba(184, 255, 23, 0.08), rgba(15, 23, 17, 0.96));
}

.plan-price {
  margin-bottom: 14px;
  font-size: 34px;
  font-weight: 700;
}

.plan-price span {
  font-size: 14px;
  color: var(--muted);
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.booking-head {
  align-items: flex-start;  /* ✅ FIX */
  text-align: left;
}

.section-note {
  text-align: left;
  max-width: 500px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 12px;
}

.booking-form,
.request-board {
  padding: 20px;
}

.field-row {
  margin-bottom: 14px;
}

.field-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel-soft);
  color: var(--text);
  font: inherit;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.request-board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.request-board-head span {
  font-size: 12px;
  color: var(--muted);
}

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

.request-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel-soft);
}

.request-card h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.request-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 10px;
  font-size: 12px;
}

.request-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.contact-label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
}

.empty-state {
  padding: 28px 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .section-split,
  .feature-grid,
  .pricing-grid,
  .steps,
  .about-grid,
  .contact-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1120px);
  }

  .topbar,
  .hero,
  .section {
    padding: 18px;
    border-radius: 20px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }
}


.btn-primary {
  background: linear-gradient(135deg, #b8ff17, #8ce600);
  box-shadow: 0 10px 30px rgba(184,255,23,0.3);
}

.booking-cta {
  text-align: center;
  padding: 60px 20px;
  background: radial-gradient(circle at top, rgba(184,255,23,0.08), transparent 60%);
}

.booking-cta-content {
  max-width: 600px;
  margin: auto;
}

.booking-cta h2 {
  font-size: 2.4rem;
  margin: 10px 0 15px;
}

.cta-text {
  color: var(--muted);
  margin-bottom: 25px;
}

.cta-big {
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
}

.cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.price-card {
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* LIFT + GLOW */
.price-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(184,255,23,0.6);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.5),
    0 0 25px rgba(184,255,23,0.15);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(184,255,23,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.price-card:hover::before {
  opacity: 1;
}

.featured {
  box-shadow: 0 0 20px rgba(184,255,23,0.2);
}

.featured:hover {
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.6),
    0 0 40px rgba(184,255,23,0.3);
}

.step-card {
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
  will-change: transform;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(184,255,23,0.6);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.5),
    0 0 25px rgba(184,255,23,0.15);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(184,255,23,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.step-card:hover::before {
  opacity: 1;
}

.feature-card,
.about-card,
.contact-card {
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
  will-change: transform;
}

.feature-card:hover,
.about-card:hover,
.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(184,255,23,0.6);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.5),
    0 0 25px rgba(184,255,23,0.15);
}

.feature-card::before,
.about-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(184,255,23,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before,
.about-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.feature-card h3,
.about-card h3,
.contact-card h3 {
  transition: color 0.3s ease;
}

.feature-card:hover h3,
.about-card:hover h3,
.contact-card:hover h3 {
  color: var(--accent);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 14px;

  background: rgba(184,255,23,0.08);
  border: 1px solid rgba(184,255,23,0.2);

  color: var(--accent);
  transition: all 0.3s ease;
}

/* ICON SIZE */
.feature-icon svg {
  width: 20px;
  height: 20px;
}

/* HOVER EFFECT */
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(184,255,23,0.2);
  box-shadow: 0 0 15px rgba(184,255,23,0.3);
}

/* INITIAL STATE (hidden) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* VISIBLE STATE */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  transition-delay: 0.1s;
}
.feature-card:nth-child(2) {
  transition-delay: 0.2s;
}
.feature-card:nth-child(3) {
  transition-delay: 0.3s;
}
.feature-card:nth-child(4) {
  transition-delay: 0.4s;
}

.topbar {
  position: sticky;
  backdrop-filter: blur(10px);
  top: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 100;
}

/* HIDDEN STATE */
.topbar.hide {
  transform: translateY(-120%);
  opacity: 0;
}

.dashboard-mockup {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #0f1711, #0b120d);
  border: 1px solid var(--border);
}

/* TOP BAR */
.mock-top {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a3a2a;
}

/* STATS */
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.mock-box {
  background: var(--panel-soft);
  padding: 12px;
  border-radius: 10px;
  font-size: 12px;
}

.mock-box strong {
  font-size: 16px;
}

/* CHART */
.mock-chart {
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(184,255,23,0.2), transparent);
  margin-bottom: 15px;
}

/* LIST */
.mock-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-row {
  background: var(--panel-soft);
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
}

.dashboard-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6),
              0 0 30px rgba(184,255,23,0.2);
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: #0c140e;
  border: 1px solid var(--border);
}

/* SIDEBAR */
.mock-sidebar {
  background: #0a110c;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 10px;
  font-size: 11px;
  color: var(--muted);
}

.mock-sidebar .logo {
  font-weight: bold;
  color: var(--accent);
}

/* MAIN */
.mock-main {
  padding: 20px;
}

/* HEADER */
.mock-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.status {
  color: #6cff6c;
  font-size: 12px;
}

/* STATS */
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.mock-card {
  background: #121a14;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
}

.mock-card strong {
  font-size: 16px;
}

/* CHART */
.mock-chart {
  height: 90px;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    rgba(184,255,23,0.2),
    transparent
  );
  margin-bottom: 15px;
  position: relative;
}

/* fake line */
.chart-line {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(184,255,23,0.5);
}

/* TABLE */
.mock-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.row {
  display: flex;
  justify-content: space-between;
  background: #121a14;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
}

/* STATUS COLORS */
.active { color: #6cff6c; }
.idle { color: #aaa; }
.booked { color: #ffc857; }

.dashboard-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6),
              0 0 30px rgba(184,255,23,0.2);
}

.chart-line {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(184,255,23,0.5);

  animation: chartMove 3s ease-in-out infinite;
}

@keyframes chartMove {
  0% {
    transform: scaleX(0.3);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.3);
  }
}

.mock-main {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: #0c140e;
  border: 1px solid var(--border);
}

/* SIDEBAR */
.mock-sidebar {
  background: #0a110c;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
}

.logo {
  font-weight: bold;
  color: var(--accent);
}

/* MAIN */
.mock-main {
  padding: 20px;
}

/* HEADER */
.mock-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

/* STATUS */
.status {
  color: #6cff6c;
  font-size: 12px;
  position: relative;
}

.status::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #6cff6c;
  border-radius: 50%;
  margin-left: 6px;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* STATS */
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.mock-card {
  background: #121a14;
  padding: 10px;
  border-radius: 10px;
}

/* CHART */
.mock-chart svg {
  width: 100%;
  height: 80px;
}

.chart-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* TABLE */
.mock-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.row {
  display: flex;
  justify-content: space-between;
  background: #121a14;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  transition: 0.25s;
}

.row:hover {
  transform: translateX(6px);
}

/* STATUS COLORS */
.active { color: #6cff6c; }
.idle { color: #aaa; }
.booked { color: #ffc857; }

/* ACTIVITY */
.mock-activity {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

.dashboard-mockup {
  position: relative;
  transition: all 0.35s ease;
  will-change: transform;
}

.dashboard-mockup:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 30px 70px rgba(0,0,0,0.7),
    0 0 40px rgba(184,255,23,0.2);
}

.footer-section {
  padding: 40px;   /* same as other sections */
}

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

.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: var(--accent);
}

.footer-col p,
.footer-col a {
  color: var(--muted);
  font-size: 14px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid var(--border);
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.section + .section {
  margin-top: 24px;
}

.contact-grid {
  margin-bottom: 0;   /* remove extra bottom gap */
}

.section {
  margin-bottom: 20px;
}

