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

:root {
  --yellow: #F5C518;
  --yellow-deep: #D4A017;
  --yellow-pale: #FFF8DC;
  --yellow-light: #FFFAEB;
  --black: #111010;
  --charcoal: #222221;
  --mid: #555553;
  --muted: #888885;
  --border: #E8E5D8;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .nav-cta { font-family: 'Syne', sans-serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 6vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

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


.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--mid); text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--yellow);
  color: var(--black);
  font-size: 14px; font-weight: 700;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}

.nav-cta:hover { background: var(--yellow-deep); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 140px 6vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FFF3B0 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: 'BUZZ';
  position: absolute; bottom: -30px; right: -10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 220px; color: rgba(245,197,24,0.06);
  letter-spacing: -10px; user-select: none; z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-pale);
  border: 1px solid #E8D96A;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 500;
  color: #7A6200;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow-deep);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--yellow-deep);
  position: relative;
}

.hero h1 .accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 5px; background: var(--yellow);
  z-index: -1; border-radius: 2px;
}

.hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.65;
  color: var(--mid); margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-primary:hover { background: var(--yellow-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-outline:hover { border-color: var(--charcoal); transform: translateY(-2px); }

/* Hero stats */
.hero-stats {
  display: flex; gap: 32px; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px; font-weight: 800;
  color: var(--black); line-height: 1;
}

.stat-num sup { font-size: 14px; vertical-align: super; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 400; }

/* Hero visual */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
}

/* ── HERO PHOTO ── */
.hero-photo-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-photo-container:hover .hero-photo-img {
  transform: scale(1.04);
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 60%);
  padding: 24px 28px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mini cards row */
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mini-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 18px;
}

.mini-card-icon {
  width: 36px; height: 36px;
  background: var(--yellow-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 12px;
}

.mini-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--black); margin-bottom: 4px;
}

.mini-card p { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── LOGO BAR ── */
.logo-bar {
  background: var(--yellow);
  padding: 18px 6vw;
  overflow: hidden;
}

.logo-bar-inner {
  display: flex; gap: 60px; align-items: center;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.niche-tag {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(17,16,16,0.6);
  letter-spacing: 1px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}

.niche-tag::before { content: '◆'; font-size: 8px; color: rgba(17,16,16,0.4); }

/* ── SECTIONS ── */
section { padding: 100px 6vw; }

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow-deep); margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--black);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px; line-height: 1.65;
  color: var(--mid); font-weight: 300;
  max-width: 580px; margin-bottom: 56px;
}

/* ── SOLUTIONS ── */
.solutions { background: var(--off-white); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.solution-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.solution-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.solution-card:hover::before { transform: scaleX(1); }

.sol-icon {
  width: 56px; height: 56px;
  background: var(--yellow-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
}

.solution-card h3 {
  font-size: 20px; font-weight: 700;
  color: var(--black); margin-bottom: 12px;
}

.solution-card p {
  font-size: 14px; line-height: 1.65;
  color: var(--mid); font-weight: 300;
}

/* ── NICHES ── */
.niches-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 60px;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.niche-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 20px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}

.niche-card:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.niche-emoji { font-size: 30px; margin-bottom: 12px; }
.niche-card span {
  font-size: 13px; font-weight: 500;
  color: var(--charcoal); display: block;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  padding: 0 6vw 100px;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  height: 340px;
}

.photo-strip-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.06);
}

.photo-strip-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ── RATES ── */
.rates { background: var(--black); color: white; position: relative; overflow: hidden; }

.rates::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
}

.rates::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
}

.rates .section-title { color: white; }
.rates .section-sub { color: rgba(255,255,255,0.55); }
.rates .section-label { color: var(--yellow); }

.rates-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.rates-factors {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rate-factor {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.rate-factor:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,197,24,0.25);
}

.rate-factor-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.rate-factor strong {
  display: block;
  font-size: 14px; font-weight: 600;
  color: white; margin-bottom: 4px;
}

.rate-factor p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.rates-cta-card {
  background: var(--yellow);
  border-radius: 24px;
  padding: 44px 40px;
  position: sticky;
  top: 88px;
}

.rates-cta-badge {
  display: inline-block;
  background: rgba(0,0,0,0.1);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.rates-cta-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.8px; color: var(--black);
  margin-bottom: 14px; line-height: 1.15;
}

.rates-cta-card > p {
  font-size: 15px;
  color: rgba(0,0,0,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

.rates-savings-stat {
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.rates-savings-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px; font-weight: 800;
  color: var(--black); letter-spacing: -2px; line-height: 1;
}

.rates-savings-label {
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  margin-top: 6px;
}

.rates-cta-note {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}

/* ── HUBSPOT FORM ── */
.hubspot-form-wrap {
  /* HubSpot injects its own wrapper; this keeps it layout-consistent */
}

.hubspot-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.hubspot-placeholder-icon { font-size: 36px; margin-bottom: 16px; }

.hubspot-placeholder p {
  font-size: 15px; font-weight: 500;
  color: var(--mid); margin-bottom: 8px;
}

.hubspot-placeholder-note {
  font-size: 13px !important;
  color: var(--muted) !important;
  line-height: 1.6;
}

.hubspot-placeholder code {
  background: var(--border);
  padding: 2px 6px; border-radius: 4px;
  font-size: 12px; font-family: monospace;
}

/* ── WHY US ── */
.why { background: var(--off-white); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.why-points { margin-top: 40px; }

.why-point {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.why-point:last-child { border-bottom: none; }

.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800;
  color: var(--yellow-deep);
  width: 32px; flex-shrink: 0; padding-top: 2px;
}

.why-point h4 {
  font-size: 16px; font-weight: 700;
  color: var(--black); margin-bottom: 6px;
}

.why-point p { font-size: 14px; color: var(--mid); line-height: 1.6; font-weight: 300; }

.why-visual {
  background: var(--black);
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.2) 0%, transparent 70%);
}

.location-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
  margin-bottom: 16px; position: relative; z-index: 1;
}

.location-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: white; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}

.loc-icon {
  width: 28px; height: 28px;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

.location-card p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.career-card {
  background: var(--yellow);
  border-radius: 16px; padding: 28px;
  position: relative; z-index: 1;
}

.career-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--black); margin-bottom: 8px;
}

.career-card p {
  font-size: 13px; color: rgba(0,0,0,0.6); line-height: 1.6;
  margin-bottom: 16px;
}

.career-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--black); text-decoration: none;
  border-bottom: 2px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.career-link:hover { border-color: var(--black); }

/* ── CONTACT / CTA ── */
.cta {
  background: var(--yellow);
  text-align: center;
  padding: 100px 6vw;
}

.cta .section-label { color: rgba(0,0,0,0.45); }

.cta h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800; letter-spacing: -2px;
  color: var(--black); margin-bottom: 20px;
  line-height: 1.05;
}

.cta p {
  font-size: 18px; font-weight: 300;
  color: rgba(0,0,0,0.6); margin-bottom: 44px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-dark {
  background: var(--black); color: white;
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(0,0,0,0.1); color: var(--black);
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s;
}

.btn-ghost:hover { background: rgba(0,0,0,0.18); }

/* ── CONTACT FORM ── */
.contact {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}


.contact-info h3 {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.8px; color: var(--black);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px; font-weight: 300;
  color: var(--mid); line-height: 1.65;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}

.detail-icon {
  width: 40px; height: 40px;
  background: var(--yellow-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.detail-text strong {
  display: block; font-size: 14px;
  font-weight: 600; color: var(--black); margin-bottom: 2px;
}

.detail-text span { font-size: 14px; color: var(--mid); }

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.5);
  padding: 48px 6vw 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 13px;
}

.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 16px; color: white;
  display: flex; align-items: center; gap: 10px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── TERMINAL STATUS (reused in hero photo overlay) ── */
.terminal-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.85);
}

.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
}

.terminal-type {
  font-size: 12px; color: rgba(255,255,255,0.6);
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100dvh;
  background: white;
  z-index: 200;
  padding: 88px 28px 40px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-links {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.mobile-nav-links li { border-bottom: 1px solid var(--border); }

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-links a:hover { color: var(--yellow-deep); }

.mobile-nav .nav-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 24px;
  font-size: 15px;
  box-sizing: border-box;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .niches-header { grid-template-columns: 1fr; }
  .rates-custom-grid { grid-template-columns: 1fr; }
  .rates-cta-card { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .photo-strip-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .photo-strip-item {
    height: 200px;
  }

  .photo-strip-item.wide {
    grid-column: 1 / -1;
    height: 240px;
  }
}

/* ── RESPONSIVE: small phones ── */
@media (max-width: 480px) {
  section { padding: 72px 5vw; }

  .hero { padding: 108px 5vw 56px; gap: 32px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; }

  .solutions-grid { grid-template-columns: 1fr; gap: 14px; }
  .solution-card { padding: 28px 22px; }

  .niches-grid { grid-template-columns: 1fr 1fr; }

  .photo-strip { padding: 0 5vw 60px; }
  .photo-strip-grid { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 200px; }
  .photo-strip-item.wide { grid-column: auto; height: 220px; }

  .rates-cta-card { padding: 28px 20px; }
  .rates-savings-num { font-size: 34px; }

  .why-visual { padding: 24px 20px; }

  .cta { padding: 72px 5vw; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-dark, .btn-ghost { text-align: center; justify-content: center; }

  .contact { padding: 72px 5vw; gap: 48px; }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
