/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #080b0f;
  --dark:    #0e1218;
  --dark2:   #161c24;
  --cyan:    #00d4ff;
  --white:   #ffffff;
  --gray:    #8a9099;
  --border:  rgba(255,255,255,0.08);
  --radius:  6px;
  --red:     #DA1E32;
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: #33ddff; transform: translateY(-1px); }
.btn-primary.btn-full { width: 100%; text-align: center; font-size: 1rem; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,11,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-brand { display: flex; align-items: center; }
.nav-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: rgba(0,212,255,0.1) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,11,15,0.55) 0%,
    rgba(8,11,15,0.35) 50%,
    rgba(8,11,15,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px 24px;
  max-width: 860px;
}
.hero-logo {
  width: clamp(260px, 32vw, 420px);
  height: auto;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.6));
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.hero-headline .line1 { color: var(--white); }
.hero-headline .line2 { color: var(--white); }
.hero-headline .line2 em { font-style: normal; color: var(--cyan); }
.hero-headline .line3 { color: transparent; -webkit-text-stroke: 2px var(--white); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--cyan);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-track .dot { color: rgba(0,0,0,0.35); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HEADINGS ── */
.section-header { margin-bottom: 36px; }
.section-header h2,
.slideshow-header h2,
.areas-inner h2,
.about-text h2,
.about-header h2,
.contact-top h2,
.reviews-title,
.areas-title,
.faq-title,
.cta-text h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
}

/* ── SERVICES ── */
.services {
  padding: 72px 0;
  background: var(--dark);
}
.section-sub {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin-top: 10px;
}
.clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.clean-item {
  background: var(--dark2);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
}
.clean-item:hover { background: rgba(0,212,255,0.08); box-shadow: inset 0 0 0 1px rgba(0,212,255,0.25); cursor: pointer; }
.clean-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
}
.clean-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.clean-toggle { display: none; }
.clean-photo { position: absolute; bottom: 12px; right: 14px; opacity: 0.3; transition: opacity 0.2s; pointer-events: none; }
.clean-item:hover .clean-photo { opacity: 0.9; }
.clean-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}
.clean-item:hover .clean-link { opacity: 1; }
.clean-cta {
  margin-top: 40px;
  text-align: center;
}

/* ── GALLERY SLIDESHOW ── */
.gallery {
  padding: 72px 0 0;
  background: #000;
}
.slideshow-header {
  margin-bottom: 32px;
}
.slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.slideshow-track {
  position: relative;
  width: 100%;
}
.slide {
  display: none;
  width: 100%;
  height: 75vh;
}
.slide.active { display: flex; align-items: center; justify-content: center; }
.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: var(--white);
  font-size: 2.8rem;
  line-height: 1;
  padding: 12px 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  user-select: none;
}
.slide-btn:hover { background: rgba(0,212,255,0.35); }
.slide-prev { left: 0; }
.slide-next { right: 0; }
.slide-pause {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.slide-pause:hover { background: rgba(0,212,255,0.35); }
.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.slide-dot.active { background: var(--cyan); }

/* ── PRICING ── */
.pricing {
  padding: 72px 0;
  background: var(--dark2);
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.pricing-card {
  background: var(--dark);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: 0.01em;
}
.pricing-from {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.pricing-service {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.pricing-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pricing { padding: 44px 0; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 20px 16px; }
  .pricing-price { font-size: 2.6rem; }
}

/* ── AREAS ── */
.areas {
  padding: 72px 0;
  background: var(--dark);
}
.areas-title {
  margin-bottom: 36px;
}
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: stretch;
}
.area-map {
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.area-map .leaflet-tile-pane {
  filter: brightness(1.8) contrast(0.85);
}
.area-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.area-list-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.area-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  cursor: default;
}
.area-item:hover {
  color: var(--cyan);
  border-color: rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.05);
}

/* ── ABOUT ── */
.about {
  padding: 72px 0;
  background: var(--black);
}
.about-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-header h2 { margin-bottom: 12px; }
.about-intro {
  font-size: 1rem !important;
  color: rgba(255,255,255,0.8) !important;
  font-style: italic;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.why-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}
.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--cyan);
}
.why-icon svg {
  width: 100%;
  height: 100%;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: left;
}
.promise-block {
  margin-top: 72px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  padding: 24px 32px;
  text-align: center;
  display: inline-block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.promise-shield {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 4px;
}
.promise-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #d4af37;
  margin-bottom: 24px;
}
.badges {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.badge {
  background: none;
  border: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
}
.badge::before {
  content: '✓ ';
  color: #d4af37;
  font-weight: 700;
}
.fine-print { font-size: 0.75rem; color: rgba(255,255,255,0.2) !important; }

/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.faq-mascot {
  position: sticky;
  top: 90px;
  text-align: center;
}
.faq-mascot img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.faq {
  padding: 72px 0;
  background: var(--dark2);
}
.faq-title {
  margin-bottom: 36px;
}
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}
.faq-question:hover { color: var(--cyan); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 20px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.fb-seen-block {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}
.fb-seen-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 12px;
}
.fb-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 1;
}
.fb-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fb-group {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 10px;
}
.fb-group a {
  color: inherit;
  text-decoration: none;
}
.fb-group a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ── REVIEWS ── */
.reviews {
  padding: 72px 0;
  background: var(--dark);
}

.reviews-title {
  margin-bottom: 36px;
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 72px 0;
  background: var(--cyan);
  background-image: url('assets/goodlifeconstruction-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-strip .btn-primary {
  background: var(--cyan);
  color: var(--black);
}
.cta-strip .btn-primary:hover { background: #33ddff; }
.cta-strip .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.cta-strip .btn-secondary:hover { border-color: var(--white); }
.cta-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-hours {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.btn-portal {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(0,0,0,0.35);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.btn-portal:hover { background: rgba(0,0,0,0.08); border-color: var(--black); }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-cowboy {
  height: 80px;
  width: auto;
  opacity: 1;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-insurance { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-top: 2px; }

/* ── MAP LABELS ── */
.map-label {
  background: rgba(8,11,15,0.85) !important;
  border: 1px solid rgba(0,212,255,0.3) !important;
  color: #fff !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  white-space: nowrap;
}
.map-label::before { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-mascot { display: none; }
  .clean-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { max-width: 240px; }
  .areas { padding: 48px 0; }
  .areas-title { margin-bottom: 24px; }
  .areas-layout { grid-template-columns: 1fr; gap: 20px; }
  .area-map { height: 240px; }
  .area-list { flex-direction: row; flex-wrap: wrap; gap: 2px; }
  .area-list-label { width: 100%; text-align: center; }
  .area-list { justify-content: center; }
  .area-item { padding: 5px 12px; font-size: 0.9rem; }
  .nav-links a:not(.btn-nav) { display: none; }
  .nav { display: none; }
  .hamburger {
    display: flex;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    background: rgba(8,11,15,0.6);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 10px;
    margin: 0;
  }
  .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }

  /* sections */
  .services { padding: 44px 0; }
  .gallery { padding: 44px 0 0; }
  .about { padding: 44px 0; }
  .cta-strip { padding: 44px 0; }

  /* section headers */
  .section-header { margin-bottom: 24px; }
  .slideshow-header { margin-bottom: 20px; }

  /* services grid */
  .clean-grid { grid-template-columns: 1fr; gap: 10px; }
  .clean-item { padding: 14px 16px; cursor: pointer; }
  .clean-item-header { display: flex; justify-content: space-between; align-items: center; }
  .clean-toggle { display: block; font-size: 1.4rem; line-height: 1; color: var(--cyan); transition: transform 0.25s; flex-shrink: 0; margin-left: 12px; }
  .clean-item.open .clean-toggle { transform: rotate(45deg); }
  .clean-desc { display: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; margin-top: 0; }
  .clean-item.open .clean-desc { display: block; max-height: 200px; margin-top: 10px; }
  .clean-photo { display: none; }
  .clean-item.open { padding-bottom: 44px; }
  .clean-item.open .clean-photo { display: block; opacity: 0.9; }
  .clean-cta { margin-top: 28px; }

  /* hero */
  .hero-content { padding: 80px 16px 32px; }

  /* about */
  .why-cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .why-card { padding: 24px 20px; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
  .why-icon { margin: 0 0 12px; }
  .badges { margin: 12px 0 8px; }
  .promise-block { margin-bottom: 4px; }

  /* cta */
  .cta-inner { gap: 16px; }
  .cta-text h2 { font-size: 1.6rem; margin-bottom: 4px; }
  .cta-text p { font-size: 0.9rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions a { width: 100%; text-align: center; }
  .cta-hours { font-size: 0.875rem; }

  .why-item .why-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 4px 0;
    user-select: none;
  }
  .why-item .why-title::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cyan);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s;
  }
  .why-item.open .why-title::after {
    transform: rotate(45deg);
  }
  .why-item p {
    display: none;
    margin-top: 8px;
  }
  .why-item.open p {
    display: block;
  }

}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}
@media (min-width: 901px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DROPDOWN MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0d1117;
  border-bottom: 1px solid rgba(0,212,255,0.15);
  z-index: 999;
  padding: 60px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 28px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--cyan); }
.mobile-cta {
  margin: 12px 28px 0;
  padding: 12px 20px;
  text-align: center;
  border: 1.5px solid var(--cyan);
  border-radius: 4px;
  color: var(--cyan);
  font-weight: 600;
  border-bottom: 1.5px solid var(--cyan);
}
