/* ---------- Design tokens ---------- */
:root {
  --dark-bg: rgb(33, 36, 40);
  --dark-bg-2: rgb(24, 26, 30);
  --cream-bg: rgb(245, 241, 232);
  --text-light: rgb(241, 239, 232);
  --text-dark: rgb(30, 32, 35);
  --text-muted-light: rgba(241, 239, 232, 0.65);
  --text-muted-dark: rgba(30, 32, 35, 0.65);
  --accent-gold: rgb(245, 185, 66);
  --accent-blue: rgb(99, 122, 245);
  --accent-green: rgb(88, 200, 130);
  --border-light: rgba(241, 239, 232, 0.12);
  --border-dark: rgba(30, 32, 35, 0.12);
  --radius: 2px;
  --font-body: "Inter", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
  --container-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent-gold); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted-light);
  margin: 0 0 12px;
}
.eyebrow-dark { color: var(--text-muted-dark); }

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 720px;
  margin-bottom: 16px;
}

.section-sub {
  max-width: 620px;
  color: var(--text-muted-light);
  margin-bottom: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn-accent { background: var(--accent-gold); color: rgb(14, 17, 22); }
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border-light);
}
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-light);
  text-decoration: none;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a.active { color: var(--text-light); }
.header-actions { display: flex; align-items: center; gap: 20px; }

/* Nav dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0;
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle { color: var(--text-light); }
.nav-dropdown-toggle .caret { font-size: 0.7rem; transition: transform 0.15s ease; }
.nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-bg-2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 110;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(241,239,232,0.06); }
.phone-link { color: var(--text-light); text-decoration: none; font-weight: 500; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-light);
}

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  margin-bottom: 20px;
  color: var(--text-muted-light);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: var(--accent-green); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 16px 0 20px;
}
.lead {
  color: var(--text-muted-light);
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-photo-frame.img-missing {
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-bg-2);
  border: 1px solid var(--border-light);
}
/* Subtle brand-colour glow behind the cutout photo (photo itself is a
   transparent PNG with the background already removed) */
.hero-photo-frame:not(.img-missing)::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(245,185,66,0.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

/* Radar-style decorative rings behind the photo, echoing the site accent colours */
.hero-decor {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 145%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.img-missing img,
.hero-photo-frame.img-missing img { display: none; }
.img-placeholder-label {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}
.img-missing .img-placeholder-label,
.hero-photo-frame.img-missing .img-placeholder-label { display: flex; }

.hero-tickers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 40px;
}
.ticker-card {
  background: var(--dark-bg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ticker-title { margin: 0; font-weight: 600; }
.ticker-sub { margin: 4px 0 0; font-size: 0.85rem; color: var(--text-muted-light); }
.ticker-trend { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.ticker-gold { color: var(--accent-gold); }
.ticker-blue { color: var(--accent-blue); }

/* ---------- About ---------- */
.about {
  background: var(--cream-bg);
  color: var(--text-dark);
  padding: 96px 0;
}
.about .section-heading { color: var(--text-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 32px;
}
.about-copy p { color: rgba(30, 32, 35, 0.8); margin-bottom: 18px; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-bg);
  color: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
}
.compare-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted-light);
  background: var(--dark-bg-2);
}
.compare-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  font-size: 0.95rem;
}
.compare-table td:first-child { color: var(--text-muted-light); border-right: 1px solid var(--border-light); }

/* ---------- Services ---------- */
.services { padding: 96px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
  background: var(--dark-bg-2);
}
.service-num {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.service-card h3 { margin: 12px 0 10px; font-size: 1.25rem; }
.service-card p { color: var(--text-muted-light); font-size: 0.92rem; margin-bottom: 18px; }

.tag-list, .tag-list-single {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.tag-list li, .tag-list-single {
  font-size: 0.78rem;
  padding: 5px 12px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  color: var(--text-muted-light);
}
.tag-list-single { display: inline-block; margin-bottom: 14px; }

/* ---------- Work ---------- */
.work { padding: 96px 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.work-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-bg-2);
  border: 1px solid var(--border-light);
  margin-bottom: 18px;
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.work-card p { color: var(--text-muted-light); font-size: 0.92rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 96px 0; background: var(--dark-bg-2); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  margin: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
}
.stars { color: var(--accent-gold); margin: 0 0 12px; letter-spacing: 2px; }
.quote { font-size: 1.05rem; margin-bottom: 24px; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: rgb(14,17,22);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-name { display: block; font-weight: 600; }
.testimonial-role { display: block; font-size: 0.85rem; color: var(--text-muted-light); }

/* ---------- Pricing ---------- */
.pricing { padding: 96px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--dark-bg-2);
}
.price-card-featured {
  background: var(--dark-bg);
  border-color: var(--accent-gold);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--accent-gold);
  color: rgb(14,17,22);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
  margin: 0 0 12px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--text-muted-light); }
.price-desc { color: var(--text-muted-light); font-size: 0.9rem; margin-bottom: 22px; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.price-features li {
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.price-features li:first-child { border-top: none; }

.pricing-footnote {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted-light);
  font-size: 0.9rem;
}
.pricing-footnote a { color: var(--accent-gold); }

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; background: var(--dark-bg-2); }
.faq-list { margin-top: 32px; max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon { font-size: 1.3rem; color: var(--accent-gold); transition: transform 0.2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { margin: 0 0 22px; color: var(--text-muted-light); }
.faq-item.open .faq-answer { max-height: 200px; }

/* ---------- Contact ---------- */
.contact { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-details {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-details dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted-light);
  margin-bottom: 6px;
}
.contact-details dd { margin: 0; font-weight: 500; }
.contact-details a { color: var(--text-light); text-decoration: none; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--dark-bg-2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
}
.contact-form label {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  margin-top: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--dark-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-light);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form button { margin-top: 20px; border: none; }
.form-note { font-size: 0.78rem; color: var(--text-muted-light); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-light); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p:last-child { color: var(--text-muted-light); font-size: 0.92rem; max-width: 340px; }
.footer-nav h4 { font-size: 0.95rem; margin-bottom: 16px; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--text-muted-light); text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--text-light); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted-light);
}

/* ---------- Inner page hero + breadcrumb ---------- */
.page-hero { padding: 56px 0 72px; background: var(--dark-bg); }
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--border-light); }
.breadcrumb a { color: var(--text-muted-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--text-light); }
.breadcrumb li:last-child { color: var(--text-light); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 18px; max-width: 780px; }
.page-hero .lead { max-width: 640px; margin-bottom: 0; }
.page-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Feature / included grid (service pages) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  gap: 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px 22px;
  background: var(--dark-bg-2);
}
.feature-check {
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-item p { margin: 0; font-size: 0.88rem; color: var(--text-muted-light); }

/* ---------- Location grid ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.location-card {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  background: var(--dark-bg-2);
  text-decoration: none;
  color: var(--text-light);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.location-card:hover { border-color: var(--accent-gold); transform: translateY(-2px); }
.location-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.location-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted-light); }
.location-card .arrow { color: var(--accent-gold); font-weight: 600; font-size: 0.85rem; margin-top: 14px; display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--cream-bg);
  color: var(--text-dark);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--text-dark); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(30,32,35,0.75); max-width: 560px; margin: 0 auto 28px; }
.cta-banner .btn-accent { color: rgb(14,17,22); }

/* ---------- Mini pricing (service/location pages) ---------- */
.pricing-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.price-mini-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 22px;
  background: var(--dark-bg-2);
  text-align: center;
}
.price-mini-card .price-tier { margin-bottom: 8px; }
.price-mini-card .price-amount { font-size: 1.6rem; margin-bottom: 4px; }

/* ---------- Related links list ---------- */
.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.related-list a {
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  color: var(--text-muted-light);
  text-decoration: none;
}
.related-list a:hover { color: var(--text-light); border-color: var(--accent-gold); }

/* ---------- Blog ---------- */
.blog-content { max-width: 760px; margin: 0 auto; }
.blog-content p { color: var(--text-muted-light); margin-bottom: 20px; font-size: 1rem; }
.blog-content h2 { font-size: 1.5rem; margin: 44px 0 16px; color: var(--text-light); }
.blog-content h3 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--text-light); }
.blog-content ul, .blog-content ol { color: var(--text-muted-light); margin: 0 0 20px; padding-left: 22px; }
.blog-content li { margin-bottom: 8px; }
.blog-content strong { color: var(--text-light); }
.blog-content .lead-answer {
  font-size: 1.1rem;
  color: var(--text-light);
  background: var(--dark-bg-2);
  border-left: 3px solid var(--accent-gold);
  padding: 18px 22px;
  border-radius: 4px;
  margin-bottom: 32px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted-light);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

/* ---------- Process steps (about page) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.process-step { text-align: left; }
.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: rgb(14,17,22);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { margin: 0; font-size: 0.88rem; color: var(--text-muted-light); }

/* ---------- Floating actions ---------- */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.float-btn {
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.float-btn-dark { background: var(--dark-bg-2); color: var(--text-light); border: 1px solid var(--border-light); }
.float-btn-accent { background: var(--accent-gold); color: rgb(14,17,22); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid, .work-grid, .pricing-grid, .pricing-mini,
  .location-grid, .feature-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .contact-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 8px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 10px 0; }
  .nav-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0 0 0 12px;
    min-width: 0;
    width: 100%;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .main-nav > a { padding: 10px 0; width: 100%; }
  .service-grid, .work-grid, .pricing-grid, .pricing-mini,
  .location-grid, .feature-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-tickers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-actions { right: 16px; bottom: 16px; }
}
